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
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 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
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
6e3f73442fc1005b37c1143cca31ddd46b89c7ba
d3e8594c73a23b723e328588cb8837cd22528431
/reLOC-0.x/src/core/multirobot.cpp
403bb134e528f8dd20d5a01819fde909f69a1292
[]
no_license
zuxichen/reLOC
9609e629f4456f5c41c6db264e6b0480643f17b7
4faa7e0ba21d25025234aa5fbae52cc984b5c4f8
refs/heads/master
2020-12-14T12:17:19.515513
2019-11-17T15:30:30
2019-11-17T15:30:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
176,762
cpp
/*============================================================================*/ /* */ /* */ /* reLOC 0.21-robik */ /* */ /* (C) Copyright 2019 Pavel Surynek */ /* http://www.surynek.com | <pavel@surynek.com> */ /* */ /* */ /*============================================================================*/ /* multirobot.cpp / 0.21-robik_020 */ /*----------------------------------------------------------------------------*/ // // Multirobot coordinated path-finding solving package. // /*----------------------------------------------------------------------------*/ #include <stdio.h> #include <stdlib.h> #include <limits.h> #include <map> #include "config.h" #include "compile.h" #include "version.h" #include "defs.h" #include "types.h" #include "result.h" #include "cnf.h" #include "multirobot.h" #include "compress.h" #include "statistics.h" using namespace std; using namespace sReloc; /*----------------------------------------------------------------------------*/ namespace sReloc { /*----------------------------------------------------------------------------*/ // sRobotArrangement sRobotArrangement::sRobotArrangement() { // nothing } sRobotArrangement::sRobotArrangement(int N_Vertices, int N_Robots, bool random) : m_robot_Locs(N_Robots + 1), m_vertex_Occups(N_Vertices) { for (int i = 0; i < N_Vertices; ++i) { m_vertex_Occups[i] = VACANT_VERTEX; } if (random) { Vertices_vector Vertices; for (int i = 0; i < N_Vertices; ++i) { Vertices.push_back(i); } int remain = N_Vertices; for (int r = N_Robots; r >= 1;) { if (remain <= 0) { break; } int rnd = rand() % remain; place_Robot(r--, Vertices[rnd]); Vertices[rnd] = Vertices[--remain]; } } else { for (int i = 0; i <= N_Robots; ++i) { m_robot_Locs[i] = UNDEFINED_LOCATION; } } } sRobotArrangement::sRobotArrangement(const sRobotArrangement &initial_arrangement, int N_Vertices, int N_Robots, bool random) : m_robot_Locs(N_Robots + 1), m_vertex_Occups(N_Vertices) { for (int i = 0; i < N_Vertices; ++i) { m_vertex_Occups[i] = VACANT_VERTEX; } if (random) { Vertices_vector Vertices; int remain = 0; for (int i = 0; i < N_Vertices; ++i) { if (initial_arrangement.get_VertexOccupancy(i) == 0) { Vertices.push_back(i); ++remain; } } for (int r = N_Robots; r >= 1;) { if (remain <= 0) { break; } int rnd = rand() % remain; place_Robot(r--, Vertices[rnd]); Vertices[rnd] = Vertices[--remain]; } } else { for (int i = 0; i <= N_Robots; ++i) { m_robot_Locs[i] = UNDEFINED_LOCATION; } } } sRobotArrangement::sRobotArrangement(const sRobotArrangement &initial_arrangement, int N_Vertices, int N_Robots, int N_fixed, bool random) : m_robot_Locs(N_Robots + 1), m_vertex_Occups(N_Vertices) { for (int i = 0; i < N_Vertices; ++i) { m_vertex_Occups[i] = VACANT_VERTEX; } if (random) { Vertices_vector Vertices; int remain = 0; for (int i = 0; i < N_Vertices; ++i) { if (initial_arrangement.get_VertexOccupancy(i) == 0) { Vertices.push_back(i); ++remain; } } int r = N_Robots; for (int f = 0; f < N_fixed; ++f) { place_Robot(r, initial_arrangement.get_RobotLocation(r)); --r; } while (r >= 1) { if (remain <= 0) { break; } int rnd = rand() % remain; place_Robot(r--, Vertices[rnd]); Vertices[rnd] = Vertices[--remain]; } } else { for (int i = 0; i <= N_Robots; ++i) { m_robot_Locs[i] = UNDEFINED_LOCATION; } } } bool sRobotArrangement::operator==(const sRobotArrangement &robot_arrangement) const { sASSERT(m_robot_Locs.size() == robot_arrangement.m_robot_Locs.size()); Robots_vector::const_iterator robot_A, robot_B; for (robot_A = m_robot_Locs.begin(), robot_B = robot_arrangement.m_robot_Locs.begin(); robot_A != m_robot_Locs.end(); ++robot_A, ++robot_B) { if (*robot_A != *robot_B) { return false; } } return true; } bool sRobotArrangement::operator<(const sRobotArrangement &robot_arrangement) const { sASSERT(m_robot_Locs.size() == robot_arrangement.m_robot_Locs.size()); Robots_vector::const_iterator robot_A, robot_B; for (robot_A = m_robot_Locs.begin(), robot_B = robot_arrangement.m_robot_Locs.begin(); robot_A != m_robot_Locs.end(); ++robot_A, ++robot_B) { if (*robot_A < *robot_B) { return true; } else { if (*robot_A > *robot_B) { return false; } } } return false; } int sRobotArrangement::get_RobotCount(void) const { return (m_robot_Locs.size() - 1); } int sRobotArrangement::get_VertexCount(void) const { return m_vertex_Occups.size(); } int sRobotArrangement::get_RobotLocation(int robot_id) const { sASSERT(robot_id > 0 && robot_id < m_robot_Locs.size()); return m_robot_Locs[robot_id]; } int sRobotArrangement::get_VertexOccupancy(int vertex_id) const { sASSERT(vertex_id < m_vertex_Occups.size()); return m_vertex_Occups[vertex_id]; } void sRobotArrangement::place_Robot(int robot_id, int vertex_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Locs.size()); sASSERT(vertex_id < m_vertex_Occups.size()); sASSERT(m_vertex_Occups[vertex_id] == VACANT_VERTEX); m_robot_Locs[robot_id] = vertex_id; m_vertex_Occups[vertex_id] = robot_id; } void sRobotArrangement::place_CapacityRobot(int robot_id, int vertex_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Locs.size()); sASSERT(vertex_id < m_vertex_Occups.size()); m_robot_Locs[robot_id] = vertex_id; // m_vertex_Occups[vertex_id] = robot_id; } void sRobotArrangement::remove_Robot(int robot_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Locs.size()); m_vertex_Occups[m_robot_Locs[robot_id]] = VACANT_VERTEX; m_robot_Locs[robot_id] = UNDEFINED_LOCATION; } void sRobotArrangement::clean_Vertex(int vertex_id) { sASSERT(vertex_id < m_vertex_Occups.size()); m_robot_Locs[m_vertex_Occups[vertex_id]] = UNDEFINED_LOCATION; m_vertex_Occups[vertex_id] = VACANT_VERTEX; } void sRobotArrangement::move_Robot(int robot_id, int dest_vertex_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Locs.size()); sASSERT(dest_vertex_id < m_vertex_Occups.size()); // printf("%d # %d -> %d\n", robot_id, m_robot_Locs[robot_id], dest_vertex_id); #ifdef sDEBUG { /* if (m_vertex_Occups[dest_vertex_id] != VACANT_VERTEX) { printf("--> %d # %d -> %d\n", robot_id, m_robot_Locs[robot_id], dest_vertex_id); printf("Target occupied by: %d\n", m_vertex_Occups[dest_vertex_id]); } */ //sASSERT(m_vertex_Occups[dest_vertex_id] == VACANT_VERTEX); } #endif m_vertex_Occups[m_robot_Locs[robot_id]] = VACANT_VERTEX; m_robot_Locs[robot_id] = dest_vertex_id; m_vertex_Occups[dest_vertex_id] = robot_id; #ifdef sSTATISTICS { ++s_GlobalPhaseStatistics.get_CurrentPhase().m_move_Executions; } #endif } bool sRobotArrangement::is_VertexForced(int vertex_id) const { for (int r = 1; r < m_robot_Locs.size(); ++r) { if (m_robot_Locs[r] == vertex_id) { return true; } } return false; } bool sRobotArrangement::is_VertexUnforced(int vertex_id) const { return !is_VertexForced(vertex_id); } void sRobotArrangement::force_Robot(int robot_id, int dest_vertex_id) { m_robot_Locs[robot_id] = dest_vertex_id; } bool sRobotArrangement::verify_Move(int robot_id, int dest_vertex_id, const sUndirectedGraph &graph) const { if ( (robot_id > 0 && robot_id < m_robot_Locs.size()) && (dest_vertex_id < m_vertex_Occups.size()) && (m_vertex_Occups[dest_vertex_id] == VACANT_VERTEX) && (m_vertex_Occups[m_robot_Locs[robot_id]] == robot_id) && graph.is_Adjacent(m_robot_Locs[robot_id], dest_vertex_id)) { return true; } #ifdef sDEBUG { printf("%d # %d -> %d (adjacent:%d)\n", robot_id, m_robot_Locs[robot_id], dest_vertex_id, graph.is_Adjacent(m_robot_Locs[robot_id], dest_vertex_id) ? 1 : 0); } #endif return false; } bool sRobotArrangement::verify_Move(int robot_id, int dest_vertex_id) const { if ( (robot_id > 0 && robot_id < m_robot_Locs.size()) && (dest_vertex_id < m_vertex_Occups.size()) && (m_vertex_Occups[dest_vertex_id] == VACANT_VERTEX) && (m_vertex_Occups[m_robot_Locs[robot_id]] == robot_id)) { return true; } #ifdef sDEBUG { printf("%d # %d -> %d\n", robot_id, m_robot_Locs[robot_id], dest_vertex_id); } #endif return false; } bool sRobotArrangement::check_Move( #ifdef sDEBUG int robot_id, #else int, #endif int dest_vertex_id) const { if ( (dest_vertex_id < m_vertex_Occups.size()) && (m_vertex_Occups[dest_vertex_id] == VACANT_VERTEX)) { return true; } #ifdef sDEBUG { printf("%d -> %d\n", robot_id, dest_vertex_id); } #endif return false; } void sRobotArrangement::generate_Walk(const sRobotArrangement &initial_arrangement, const sUndirectedGraph &environment) { for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { const sVertex *vertex = environment.get_Vertex(initial_arrangement.get_RobotLocation(robot_id)); for (int i = 0; i < RANDOM_WALK_LENGTH; ++i) { if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { break; } } for (int i = 0; i < RANDOM_WALK_LENGTH; ++i) { if (get_VertexOccupancy(vertex->m_id) == VACANT_VERTEX) { place_Robot(robot_id, vertex->m_id); break; } if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { sASSERT(false); break; } } } } void sRobotArrangement::generate_DisjointWalk(const sRobotArrangement &initial_arrangement, const sUndirectedGraph &environment) { for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { const sVertex *vertex = environment.get_Vertex(initial_arrangement.get_RobotLocation(robot_id)); for (int i = 0; i < RANDOM_WALK_LENGTH; ++i) { if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { break; } } bool stand_in = true; for (int i = 0; i < RANDOM_WALK_LENGTH || stand_in; ++i) { if (get_VertexOccupancy(vertex->m_id) == VACANT_VERTEX) { place_Robot(robot_id, vertex->m_id); break; } if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { sASSERT(false); break; } stand_in = false; if (initial_arrangement.get_RobotLocation(robot_id) == get_RobotLocation(robot_id)) { stand_in = true; } } } } void sRobotArrangement::generate_NovelWalk(const sRobotArrangement &initial_arrangement, const sUndirectedGraph &environment) { sRobotArrangement robot_arrangement = initial_arrangement; bool stand_in = false; for (int i = 0; i < RANDOM_WALK_LENGTH || stand_in; ++i) { for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { const sVertex *vertex = environment.get_Vertex(robot_arrangement.get_RobotLocation(robot_id)); if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; if (robot_arrangement.get_VertexOccupancy(vertex->m_id) == VACANT_VERTEX) { robot_arrangement.move_Robot(robot_id, vertex->m_id); } } } /* stand_in = false; for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { if (initial_arrangement.get_RobotLocation(robot_id) == robot_arrangement.get_RobotLocation(robot_id)) { stand_in = true; break; } } */ } *this = robot_arrangement; } sResult sRobotArrangement::generate_Nonconflicting(int N_Vertices, int N_Robots, const sUndirectedGraph &environment) { m_robot_Locs.resize(N_Robots + 1); m_vertex_Occups.resize(N_Vertices); for (int i = 0; i < N_Vertices; ++i) { m_vertex_Occups[i] = VACANT_VERTEX; } Vertices_vector Vertices; int remain = 0; for (int i = 0; i < N_Vertices; ++i) { Vertices.push_back(i); ++remain; } int r = N_Robots; while (r >= 1) { if (remain <= 0) { return -1; } int rnd = rand() % remain; int pos = Vertices[rnd]; place_Robot(r, Vertices[rnd]); Vertices[rnd] = Vertices[--remain]; sVertex::VertexIDs_vector Conflicts = environment.m_Vertices[pos].m_Conflicts; for (sVertex::VertexIDs_vector::const_iterator conflict = Conflicts.begin(); conflict != Conflicts.end(); ++conflict) { for (int i = 0; i < remain; ++i) { if (Vertices[i] == *conflict) { Vertices[i] = Vertices[--remain]; break; } } } --r; } return sRESULT_SUCCESS; } void sRobotArrangement::generate_NovelNonconflictingWalk(const sRobotArrangement &initial_arrangement, const sUndirectedGraph &environment) { sRobotArrangement robot_arrangement = initial_arrangement; bool stand_in = false; for (int i = 0; i < RANDOM_WALK_LENGTH || stand_in; ++i) { for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { const sVertex *vertex = environment.get_Vertex(robot_arrangement.get_RobotLocation(robot_id)); if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; if (robot_arrangement.get_VertexOccupancy(vertex->m_id) == VACANT_VERTEX) { bool non_conflict = true; sVertex::VertexIDs_vector Conflicts = environment.m_Vertices[vertex->m_id].m_Conflicts; for (sVertex::VertexIDs_vector::const_iterator conflict = Conflicts.begin(); conflict != Conflicts.end(); ++conflict) { if (robot_arrangement.get_VertexOccupancy(*conflict) != VACANT_VERTEX && robot_arrangement.get_VertexOccupancy(*conflict) != robot_id) { non_conflict = false; break; } } if (non_conflict) { robot_arrangement.move_Robot(robot_id, vertex->m_id); } } } } /* stand_in = false; for (int robot_id = 1; robot_id < m_robot_Locs.size(); ++robot_id) { if (initial_arrangement.get_RobotLocation(robot_id) == robot_arrangement.get_RobotLocation(robot_id)) { stand_in = true; break; } } */ } *this = robot_arrangement; } void sRobotArrangement::generate_Walk(const sRobotArrangement &initial_arrangement, const sUndirectedGraph &environment, int N_fixed) { for (int robot_id = 1; robot_id < N_fixed; ++robot_id) { place_Robot(robot_id, initial_arrangement.get_RobotLocation(robot_id)); } for (int robot_id = N_fixed; robot_id < m_robot_Locs.size(); ++robot_id) { const sVertex *vertex = environment.get_Vertex(initial_arrangement.get_RobotLocation(robot_id)); for (int i = 0; i < RANDOM_WALK_LENGTH; ++i) { if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { break; } } for (int i = 0; i < RANDOM_WALK_LENGTH; ++i) { if (get_VertexOccupancy(vertex->m_id) == VACANT_VERTEX) { place_Robot(robot_id, vertex->m_id); break; } if (!vertex->m_Neighbors.empty()) { int rn = rand() % vertex->m_Neighbors.size(); sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); for (int n = 0; n < rn; ++n) { ++neighbor; } vertex = (*neighbor)->m_target; } else { sASSERT(false); break; } } } } void sRobotArrangement::generate_Equidistant(const sRobotArrangement &initial_arrangement, sUndirectedGraph &environment, int distance) { int N_Robots = initial_arrangement.get_RobotCount(); int N_Vertices = environment.get_VertexCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int s_id = initial_arrangement.get_RobotLocation(robot_id); VertexIDs_vector equidistant_IDs, free_equidistant_IDs; environment.collect_EquidistantVertices(s_id, distance, equidistant_IDs); for (VertexIDs_vector::const_iterator equidistant = equidistant_IDs.begin(); equidistant != equidistant_IDs.end(); ++equidistant) { if (get_VertexOccupancy(*equidistant) == VACANT_VERTEX) { free_equidistant_IDs.push_back(*equidistant); } } if (free_equidistant_IDs.empty()) { VertexIDs_vector free_vertex_IDs; for (int i = 0; i < N_Vertices; ++i) { if (get_VertexOccupancy(i) == VACANT_VERTEX) { free_vertex_IDs.push_back(i); } } int rnd = rand() % free_vertex_IDs.size(); place_Robot(robot_id, free_vertex_IDs[rnd]); } else { int rnd = rand() % free_equidistant_IDs.size(); place_Robot(robot_id, free_equidistant_IDs[rnd]); } } } /*----------------------------------------------------------------------------*/ void sRobotArrangement::to_Screen(const sString &indent) const { to_Stream(stdout, indent); } void sRobotArrangement::to_Stream(FILE *fw, const sString &indent) const { fprintf(fw, "%sRobot arrangement: (|R| = %ld, |V| = %ld) [\n", indent.c_str(), m_robot_Locs.size() - 1, m_vertex_Occups.size()); fprintf(fw, "%s%s robot locations: {", indent.c_str(), sRELOC_INDENT.c_str()); int N_Robots_1 = m_robot_Locs.size(); for (int i = 1; i < N_Robots_1; ++i) { fprintf(fw, "%d#%d ", i, m_robot_Locs[i]); } fprintf(fw, "}\n"); fprintf(fw, "%s%s vertex occupancy: {", indent.c_str(), sRELOC_INDENT.c_str()); int N_Vertices = m_vertex_Occups.size(); for (int i = 0; i < N_Vertices; ++i) { fprintf(fw, "%d#%d ", m_vertex_Occups[i], i); } fprintf(fw, "}\n"); if (!m_robot_Sizes.empty()) { fprintf(fw, "%s%s robot sizes: {", indent.c_str(), sRELOC_INDENT.c_str()); for (int i = 1; i < N_Robots_1; ++i) { fprintf(fw, "%d(%d) ", i, m_robot_Sizes[i]); } fprintf(fw, "}\n"); } fprintf(fw, "%s]\n", indent.c_str()); } void sRobotArrangement::to_Screen_brief(const sString &indent) const { to_Stream_brief(stdout, indent); } void sRobotArrangement::to_Stream_brief(FILE *fw, const sString &indent) const { fprintf(fw, "%sRobot arrangement (brief): (|R| = %ld, |V| = %ld) [\n", indent.c_str(), m_robot_Locs.size() - 1, m_vertex_Occups.size()); fprintf(fw, "%s%s robot locations: {", indent.c_str(), sRELOC_INDENT.c_str()); int N_Robots_1 = m_robot_Locs.size(); for (int i = 1; i < N_Robots_1; ++i) { fprintf(fw, "%d#%d ", i, m_robot_Locs[i]); } fprintf(fw, "}\n"); fprintf(fw, "%s]\n", indent.c_str()); } sResult sRobotArrangement::to_File_multirobot(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sROBOT_ARRANGEMENT_OPEN_ERROR; } to_Stream_multirobot(fw, indent); fclose(fw); return sRESULT_SUCCESS; } void sRobotArrangement::to_Stream_multirobot(FILE *fw, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); int N_Vertices = m_vertex_Occups.size(); for (int i = 0; i < N_Vertices; ++i) { fprintf(fw, "(%d:-1)[%d:-1:-1]\n", i, m_vertex_Occups[i]); } } sResult sRobotArrangement::from_File_multirobot(const sString &filename, int component) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sROBOT_ARRANGEMENT_OPEN_ERROR; } result = from_Stream_multirobot(fr, component); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sRobotArrangement::from_Stream_multirobot(FILE *fr, int component) { m_robot_Locs.clear(); m_vertex_Occups.clear(); int N_Robots = 0; int N_Vertices = 0; int c = fgetc(fr); while (c != 'V') { if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } fscanf(fr, " =\n"); long position = ftell(fr); c = fgetc(fr); while (c == '(') { int vertex_id, cycle_id, robot_id; switch (component) { case 0: { fscanf(fr, "%d:%d)[%d", &vertex_id, &cycle_id, &robot_id); break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d)[%d:%d", &vertex_id, &cycle_id, &dummy_robot_1_id, &robot_id); break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d)[%d:%d:%d", &vertex_id, &cycle_id, &dummy_robot_1_id, &dummy_robot_2_id, &robot_id); break; } default: { sASSERT(false); break; } } if (robot_id > 0) { ++N_Robots; } ++N_Vertices; if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); // printf("read: %d,%d,%d\n", vertex_id, cycle_id, robot_id); } if (fseek(fr, position, SEEK_SET) != 0) { return sROBOT_ARRANGEMENT_SEEK_ERROR; } c = fgetc(fr); m_robot_Locs.resize(N_Robots + 1, (const int)UNDEFINED_LOCATION); m_vertex_Occups.resize(N_Vertices, (const int)VACANT_VERTEX); while (c == '(') { int vertex_id, cycle_id, robot_id; switch (component) { case 0: { fscanf(fr, "%d:%d)[%d", &vertex_id, &cycle_id, &robot_id); break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d)[%d:%d", &vertex_id, &cycle_id, &dummy_robot_1_id, &robot_id); break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d)[%d:%d:%d", &vertex_id, &cycle_id, &dummy_robot_1_id, &dummy_robot_2_id, &robot_id); break; } default: { sASSERT(false); break; } } if (robot_id > 0) { m_robot_Locs[robot_id] = vertex_id; m_vertex_Occups[vertex_id] = robot_id; } if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } return sRESULT_SUCCESS; } sResult sRobotArrangement::to_File_capacitated_multirobot(const sString &filename, const sUndirectedGraph &environment, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sROBOT_ARRANGEMENT_OPEN_ERROR; } to_Stream_capacitated_multirobot(fw, environment, indent); fclose(fw); return sRESULT_SUCCESS; } void sRobotArrangement::to_Stream_capacitated_multirobot(FILE *fw, const sUndirectedGraph &environment, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); int N_Vertices = m_vertex_Occups.size(); for (int i = 0; i < N_Vertices; ++i) { fprintf(fw, "(%d:-1:%d)[%d:-1:-1]\n", i, environment.m_Vertices[i].m_capacity, m_vertex_Occups[i]); } } sResult sRobotArrangement::from_File_capacitated_multirobot(const sString &filename, sUndirectedGraph &environment, int component) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sROBOT_ARRANGEMENT_OPEN_ERROR; } result = from_Stream_capacitated_multirobot(fr, environment, component); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sRobotArrangement::from_Stream_capacitated_multirobot(FILE *fr, sUndirectedGraph &environment, int component) { m_robot_Locs.clear(); m_vertex_Occups.clear(); int N_Robots = 0; int N_Vertices = 0; int c = fgetc(fr); while (c != 'V') { if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } fscanf(fr, " =\n"); long position = ftell(fr); c = fgetc(fr); while (c == '(') { int vertex_id, cycle_id, robot_id, capacity; switch (component) { case 0: { fscanf(fr, "%d:%d:%d)[%d", &vertex_id, &cycle_id, &capacity, &robot_id); break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d:%d)[%d:%d", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &robot_id); break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d:%d)[%d:%d:%d", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &dummy_robot_2_id, &robot_id); break; } default: { sASSERT(false); break; } } if (robot_id > 0) { ++N_Robots; } ++N_Vertices; if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); // printf("read: %d,%d,%d\n", vertex_id, cycle_id, robot_id); } if (fseek(fr, position, SEEK_SET) != 0) { return sROBOT_ARRANGEMENT_SEEK_ERROR; } c = fgetc(fr); m_robot_Locs.resize(N_Robots + 1, (const int)UNDEFINED_LOCATION); m_vertex_Occups.resize(N_Vertices, (const int)VACANT_VERTEX); while (c == '(') { int vertex_id, cycle_id, robot_id, capacity; switch (component) { case 0: { fscanf(fr, "%d:%d:%d)[%d", &vertex_id, &cycle_id, &capacity, &robot_id); break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d:%d)[%d:%d", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &robot_id); break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d:%d)[%d:%d:%d", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &dummy_robot_2_id, &robot_id); break; } default: { sASSERT(false); break; } } if (robot_id > 0) { m_robot_Locs[robot_id] = vertex_id; m_vertex_Occups[vertex_id] = robot_id; } if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); environment.m_Vertices[vertex_id].m_capacity = capacity; } return sRESULT_SUCCESS; } /*----------------------------------------------------------------------------*/ // sRobotGoal sRobotGoal::sRobotGoal() { // nothing } sRobotGoal::sRobotGoal(int N_Vertices, int N_Robots) : m_robot_Goals(N_Robots + 1) , m_goal_Compats(N_Vertices) { // nothing } sRobotGoal::sRobotGoal(int N_Vertices, int N_Robots, int N_Goals) : m_robot_Goals(N_Robots + 1) , m_goal_Compats(N_Vertices) { for (int i = 1; i <= N_Robots; ++i) { int rnd_N_goals = 1 + rand() % N_Goals; sRobotArrangement::Vertices_vector vertex_IDs; for (int j = 0; j < N_Vertices; ++j) { vertex_IDs.push_back(j); } for (int j = 0; j < rnd_N_goals; ++j) { int rnd_vertex_ID = rand() % vertex_IDs.size(); charge_Robot(i, rnd_vertex_ID); vertex_IDs[rnd_vertex_ID] = *vertex_IDs.rbegin(); vertex_IDs.pop_back(); } } } sRobotGoal::sRobotGoal(const sRobotArrangement &sUNUSED(initial_arrangement), int N_Vertices, int N_Robots, int sUNUSED(N_Goals)) : m_robot_Goals(N_Robots + 1) , m_goal_Compats(N_Vertices) { sASSERT(false); } sRobotGoal::sRobotGoal(const sRobotArrangement &robot_arrangement) : m_robot_Goals(robot_arrangement.get_RobotCount() + 1) , m_goal_Compats(robot_arrangement.get_VertexCount()) { int N_Vertices = robot_arrangement.get_VertexCount(); for (int i = 0; i < N_Vertices; ++i) { int robot_id = robot_arrangement.get_VertexOccupancy(i); if (robot_id > 0) { assign_Goal(i, robot_id); } } } int sRobotGoal::get_RobotCount(void) const { return (m_robot_Goals.size() - 1); } int sRobotGoal::get_VertexCount(void) const { return m_goal_Compats.size(); } const sRobotGoal::Vertices_set& sRobotGoal::get_RobotGoal(int robot_id) const { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); return m_robot_Goals[robot_id]; } sRobotGoal::Vertices_set& sRobotGoal::provide_RobotGoal(int robot_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); return m_robot_Goals[robot_id]; } const sRobotGoal::Robots_set& sRobotGoal::get_GoalCompatibility(int goal_id) const { sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); return m_goal_Compats[goal_id]; } sRobotGoal::Robots_set& sRobotGoal::provide_GoalCompatibility(int goal_id) { sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); return m_goal_Compats[goal_id]; } void sRobotGoal::charge_Robot(int robot_id, int goal_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); m_robot_Goals[robot_id].insert(goal_id); m_goal_Compats[goal_id].insert(robot_id); } void sRobotGoal::charge_Robot(int robot_id, const Vertices_set &goal_IDs) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); m_robot_Goals[robot_id].insert(goal_IDs.begin(), goal_IDs.end()); for (Vertices_set::const_iterator goal_id = goal_IDs.begin(); goal_id != goal_IDs.end(); ++goal_id) { sASSERT(*goal_id >= 0 && *goal_id < m_goal_Compats.size()); m_goal_Compats[*goal_id].insert(robot_id); } } void sRobotGoal::assign_Goal(int goal_id, int robot_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); m_goal_Compats[goal_id].insert(robot_id); m_robot_Goals[robot_id].insert(goal_id); } void sRobotGoal::assign_Goal(int goal_id, const Robots_set &robot_IDs) { sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); m_goal_Compats[goal_id].insert(robot_IDs.begin(), robot_IDs.end()); for (Robots_set::const_iterator robot_id = robot_IDs.begin(); robot_id != robot_IDs.end(); ++robot_id) { sASSERT(*robot_id > 0 && *robot_id < m_robot_Goals.size()); m_robot_Goals[*robot_id].insert(goal_id); } } void sRobotGoal::discharge_Robot(int robot_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); const Vertices_set &goal_IDs = m_robot_Goals[robot_id]; for (Vertices_set::const_iterator goal_id = goal_IDs.begin(); goal_id != goal_IDs.end(); ++goal_id) { m_goal_Compats[*goal_id].erase(robot_id); } m_robot_Goals[robot_id].clear(); } void sRobotGoal::discharge_Robot(int robot_id, int goal_id) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); sASSERT(goal_id >= 0 && goal_id < m_goal_Compats.size()); m_robot_Goals[robot_id].erase(goal_id); m_goal_Compats[goal_id].erase(robot_id); } void sRobotGoal::discharge_Robot(int robot_id, const Vertices_set &goal_IDs) { sASSERT(robot_id > 0 && robot_id < m_robot_Goals.size()); for (Vertices_set::const_iterator goal_id = goal_IDs.begin(); goal_id != goal_IDs.end(); ++goal_id) { m_goal_Compats[*goal_id].erase(robot_id); } m_robot_Goals[robot_id].erase(goal_IDs.begin(), goal_IDs.end()); } bool sRobotGoal::is_Satisfied(const sRobotArrangement &robot_arrangement) const { int N_Robots = robot_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { const Vertices_set &robot_goal = get_RobotGoal(robot_id); if (robot_goal.find(robot_arrangement.get_RobotLocation(robot_id)) == robot_goal.end()) { return false; } } return true; } /*----------------------------------------------------------------------------*/ void sRobotGoal::to_Screen(const sString &indent) const { to_Stream(stdout, indent); } void sRobotGoal::to_Stream(FILE *fw, const sString &indent) const { fprintf(fw, "%sRobot goal: (|R| = %ld, |V| = %ld) [\n", indent.c_str(), m_robot_Goals.size() - 1, m_goal_Compats.size()); fprintf(fw, "%s%srobot goals: {\n", indent.c_str(), sRELOC_INDENT.c_str()); int N_Robots_1 = m_robot_Goals.size(); for (int i = 1; i < N_Robots_1; ++i) { const Vertices_set &goal_IDs = m_robot_Goals[i]; fprintf(fw, "%s%s%s%d#{", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), i); if (!goal_IDs.empty()) { Vertices_set::const_iterator goal_id = goal_IDs.begin(); fprintf(fw, "%d", *goal_id); while (++goal_id != goal_IDs.end()) { fprintf(fw, ",%d", *goal_id); } } fprintf(fw, "}\n"); } fprintf(fw, "%s%s}\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%svertex compatibilities: {\n", indent.c_str(), sRELOC_INDENT.c_str()); int N_Vertices = m_goal_Compats.size(); for (int i = 0; i < N_Vertices; ++i) { const Robots_set &robot_IDs = m_goal_Compats[i]; fprintf(fw, "%s%s%s%d@{", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), i); if (!robot_IDs.empty()) { Robots_set::const_iterator robot_id = robot_IDs.begin(); fprintf(fw, "%d", *robot_id); while (++robot_id != robot_IDs.end()) { fprintf(fw, ",%d", *robot_id); } } fprintf(fw, "}\n"); } fprintf(fw, "%s%s}\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s]\n", indent.c_str()); } void sRobotGoal::to_Screen_brief(const sString &indent) const { to_Stream_brief(stdout, indent); } void sRobotGoal::to_Stream_brief(FILE *fw, const sString &indent) const { fprintf(fw, "%sRobot goal (brief): (|R| = %ld, |V| = %ld) [\n", indent.c_str(), m_robot_Goals.size() - 1, m_goal_Compats.size()); fprintf(fw, "%s%srobot goals: {\n", indent.c_str(), sRELOC_INDENT.c_str()); int N_Robots_1 = m_robot_Goals.size(); for (int i = 1; i < N_Robots_1; ++i) { const Vertices_set &goal_IDs = m_robot_Goals[i]; fprintf(fw, "%s%s%s%d#{", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), i); if (!goal_IDs.empty()) { Vertices_set::const_iterator goal_id = goal_IDs.begin(); fprintf(fw, "%d", *goal_id); while (++goal_id != goal_IDs.end()) { fprintf(fw, ",%d", *goal_id); } } fprintf(fw, "}\n"); } fprintf(fw, "%s%s}\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s]\n", indent.c_str()); } sResult sRobotGoal::to_File_multirobot(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sROBOT_GOAL_OPEN_ERROR; } to_Stream_multirobot(fw, indent); fclose(fw); return sRESULT_SUCCESS; } void sRobotGoal::to_Stream_multirobot(FILE *fw, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); int N_Compats = m_goal_Compats.size(); for (int i = 0; i < N_Compats; ++i) { const Robots_set &robot_IDs = m_goal_Compats[i]; fprintf(fw, "(%d:-1)[", i); to_Stream_multirobot(fw, robot_IDs, indent); fprintf(fw, ":-1:-1]\n"); } } void sRobotGoal::to_Stream_multirobot(FILE *fw, const Robots_set &robot_IDs, const sString &sUNUSED(indent)) const { fprintf(fw, "{"); if (!robot_IDs.empty()) { Robots_set::const_iterator robot_id = robot_IDs.begin(); fprintf(fw, "%d", *robot_id); while (++robot_id != robot_IDs.end()) { fprintf(fw, ",%d", *robot_id); } } fprintf(fw, "}"); } sResult sRobotGoal::from_File_multirobot(const sString &filename, int component) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sROBOT_GOAL_OPEN_ERROR; } result = from_Stream_multirobot(fr, component); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sRobotGoal::from_Stream_multirobot(FILE *fr, int component) { Robots_set all_robot_IDs; m_robot_Goals.clear(); m_goal_Compats.clear(); int N_Robots = 0; int N_Vertices = 0; int c = fgetc(fr); while (c != 'V') { if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } fscanf(fr, " =\n"); long position = ftell(fr); c = fgetc(fr); while (c == '(') { int vertex_id, cycle_id, robot_id = 0; switch (component) { case 0: { fscanf(fr, "%d:%d)[", &vertex_id, &cycle_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d)[%d:", &vertex_id, &cycle_id, &dummy_robot_1_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d)[%d:%d:", &vertex_id, &cycle_id, &dummy_robot_1_id, &dummy_robot_2_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } default: { sASSERT(false); break; } } ++N_Vertices; if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } N_Robots = all_robot_IDs.size(); if (fseek(fr, position, SEEK_SET) != 0) { return sROBOT_GOAL_SEEK_ERROR; } c = fgetc(fr); m_robot_Goals.resize(N_Robots + 1); m_goal_Compats.resize(N_Vertices); while (c == '(') { int vertex_id, cycle_id, robot_id; switch (component) { case 0: { fscanf(fr, "%d:%d)[", &vertex_id, &cycle_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d)[%d:", &vertex_id, &cycle_id, &dummy_robot_1_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d)[%d:%d:", &vertex_id, &cycle_id, &dummy_robot_1_id, &dummy_robot_2_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } default: { sASSERT(false); break; } } if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } return sRESULT_SUCCESS; } sResult sRobotGoal::from_Stream_multirobot(FILE *fr, Robots_set &robot_IDs) { fscanf(fr, "{"); int robot_ID; int c = fgetc(fr); while (c != '}') { if (c != ',') { ungetc(c, fr); } fscanf(fr, "%d", &robot_ID); robot_IDs.insert(robot_ID); c = fgetc(fr); } fscanf(fr, "}"); return sRESULT_SUCCESS; } sResult sRobotGoal::to_File_capacitated_multirobot(const sString &filename, const sUndirectedGraph &environment, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sROBOT_GOAL_OPEN_ERROR; } to_Stream_capacitated_multirobot(fw, environment, indent); fclose(fw); return sRESULT_SUCCESS; } void sRobotGoal::to_Stream_capacitated_multirobot(FILE *fw, const sUndirectedGraph &environment, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); int N_Compats = m_goal_Compats.size(); for (int i = 0; i < N_Compats; ++i) { const Robots_set &robot_IDs = m_goal_Compats[i]; fprintf(fw, "(%d:-1:%d)[", i, environment.m_Vertices[i].m_capacity); to_Stream_multirobot(fw, robot_IDs, indent); fprintf(fw, ":-1:-1]\n"); } } sResult sRobotGoal::from_File_capacitated_multirobot(const sString &filename, sUndirectedGraph &environment, int component) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sROBOT_GOAL_OPEN_ERROR; } result = from_Stream_capacitated_multirobot(fr, environment, component); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sRobotGoal::from_Stream_capacitated_multirobot(FILE *fr, sUndirectedGraph &environment, int component) { Robots_set all_robot_IDs; m_robot_Goals.clear(); m_goal_Compats.clear(); int N_Robots = 0; int N_Vertices = 0; int c = fgetc(fr); while (c != 'V') { if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } fscanf(fr, " =\n"); long position = ftell(fr); c = fgetc(fr); while (c == '(') { int vertex_id, cycle_id, robot_id = 0, capacity = 1; switch (component) { case 0: { fscanf(fr, "%d:%d:%d)[", &vertex_id, &cycle_id, &capacity); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d:%d)[%d:", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d:%d)[%d:%d:", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &dummy_robot_2_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); all_robot_IDs.insert(robot_IDs.begin(), robot_IDs.end()); } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { all_robot_IDs.insert(robot_id); } } break; } default: { sASSERT(false); break; } } ++N_Vertices; if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } N_Robots = all_robot_IDs.size(); if (fseek(fr, position, SEEK_SET) != 0) { return sROBOT_GOAL_SEEK_ERROR; } c = fgetc(fr); m_robot_Goals.resize(N_Robots + 1); m_goal_Compats.resize(N_Vertices); while (c == '(') { int vertex_id, cycle_id, robot_id, capacity; switch (component) { case 0: { fscanf(fr, "%d:%d:%d)[", &vertex_id, &cycle_id, &capacity); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } case 1: { int dummy_robot_1_id; fscanf(fr, "%d:%d:%d)[%d:", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } case 2: { int dummy_robot_1_id, dummy_robot_2_id; fscanf(fr, "%d:%d:%d)[%d:%d:", &vertex_id, &cycle_id, &capacity, &dummy_robot_1_id, &dummy_robot_2_id); c = fgetc(fr); ungetc(c, fr); if (c == '{') { Robots_set robot_IDs; from_Stream_multirobot(fr, robot_IDs); if (!robot_IDs.empty()) { assign_Goal(vertex_id, robot_IDs); } } else { fscanf(fr, "%d", &robot_id); if (robot_id > 0) { assign_Goal(vertex_id, robot_id); } } break; } default: { sASSERT(false); break; } } environment.m_Vertices[vertex_id].m_capacity = capacity; if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } return sRESULT_SUCCESS; } /*----------------------------------------------------------------------------*/ // sMultirobotEncodingContext_CNFsat const int sMultirobotEncodingContext_CNFsat::UNDEFINED_LAYER_COUNT = -1; /*----------------------------------------------------------------------------*/ sMultirobotEncodingContext_CNFsat::sMultirobotEncodingContext_CNFsat() : m_N_Layers(UNDEFINED_LAYER_COUNT) , m_max_total_cost(0) , m_extra_cost(-1) , m_max_total_fuel(0) , m_extra_fuel(-1) , m_fuel_makespan(-1) , m_state_clause_generator(NULL) , m_advanced_clause_generator(NULL) , m_bitwise_clause_generator(NULL) , m_bit_clause_generator(NULL) { m_state_Identifiers[sINT_32_MAX] = NULL; m_bit_Identifiers[sINT_32_MAX] = NULL; switchTo_StandardGeneratingMode(); } sMultirobotEncodingContext_CNFsat::sMultirobotEncodingContext_CNFsat(int N_Layers) : m_N_Layers(N_Layers) , m_max_total_cost(0) , m_extra_cost(-1) , m_max_total_fuel(0) , m_extra_fuel(-1) , m_fuel_makespan(-1) , m_state_clause_generator(&m_variable_store) , m_advanced_clause_generator(&m_variable_store) , m_bitwise_clause_generator(&m_variable_store) , m_bit_clause_generator(&m_variable_store) { m_state_Identifiers[sINT_32_MAX] = NULL; m_bit_Identifiers[sINT_32_MAX] = NULL; switchTo_StandardGeneratingMode(); } sMultirobotEncodingContext_CNFsat::sMultirobotEncodingContext_CNFsat(const sMultirobotEncodingContext_CNFsat &encoding_context) : m_N_Layers(encoding_context.m_N_Layers) , m_max_total_cost(encoding_context.m_max_total_cost) , m_extra_cost(encoding_context.m_extra_cost) , m_max_total_fuel(encoding_context.m_max_total_fuel) , m_extra_fuel(encoding_context.m_extra_fuel) , m_fuel_makespan(encoding_context.m_fuel_makespan) , m_variable_store(encoding_context.m_variable_store) , m_state_clause_generator(encoding_context.m_state_clause_generator) , m_advanced_clause_generator(encoding_context.m_advanced_clause_generator) , m_bitwise_clause_generator(encoding_context.m_bitwise_clause_generator) , m_bit_clause_generator(encoding_context.m_bit_clause_generator) , m_vertex_occupancy(encoding_context.m_vertex_occupancy) , m_robot_location(encoding_context.m_robot_location) , m_transition_action(encoding_context.m_transition_action) , m_vertex_occupancy_by_water(encoding_context.m_vertex_occupancy_by_water) , m_vertex_occupancy_by_water_(encoding_context.m_vertex_occupancy_by_water_) , m_vertex_occupancy_by_gas_(encoding_context.m_vertex_occupancy_by_gas_) , m_unified_vertex_occupancy_by_water_(encoding_context.m_unified_vertex_occupancy_by_water_) , m_wet_vertex_occupancy_by_water_(encoding_context.m_wet_vertex_occupancy_by_water_) , m_vertex_water_cardinality_(encoding_context.m_vertex_water_cardinality_) , m_vertex_occupancy_by_robot(encoding_context.m_vertex_occupancy_by_robot) , m_robot_location_in_vertex(encoding_context.m_robot_location_in_vertex) , m_edge_occupancy_by_water(encoding_context.m_edge_occupancy_by_water) , m_edge_occupancy_by_water_(encoding_context.m_edge_occupancy_by_water_) , m_edge_occupancy_by_water__(encoding_context.m_edge_occupancy_by_water__) , m_unified_edge_occupancy_by_water__(encoding_context.m_unified_edge_occupancy_by_water__) , m_wet_edge_occupancy_by_water__(encoding_context.m_wet_edge_occupancy_by_water__) , m_transition_Actions(encoding_context.m_transition_Actions) { register_InternalIdentifiers(); switch_GeneratingMode(encoding_context.get_GeneratingMode()); } const sMultirobotEncodingContext_CNFsat& sMultirobotEncodingContext_CNFsat::operator=(const sMultirobotEncodingContext_CNFsat &encoding_context) { m_N_Layers = encoding_context.m_N_Layers; m_max_total_cost = encoding_context.m_max_total_cost; m_extra_cost = encoding_context.m_extra_cost; m_max_total_fuel = encoding_context.m_max_total_fuel; m_extra_fuel = encoding_context.m_extra_fuel; m_fuel_makespan = encoding_context.m_fuel_makespan; m_variable_store = encoding_context.m_variable_store; m_clause_generator = encoding_context.m_clause_generator; m_bit_generator = encoding_context.m_bit_generator; m_state_clause_generator = encoding_context.m_state_clause_generator; m_advanced_clause_generator = encoding_context.m_advanced_clause_generator; m_bitwise_clause_generator = encoding_context.m_bitwise_clause_generator; m_bit_clause_generator = encoding_context.m_bit_clause_generator; m_vertex_occupancy = encoding_context.m_vertex_occupancy; m_robot_location = encoding_context.m_robot_location; m_robot_location_in_vertex = encoding_context.m_robot_location_in_vertex; m_edge_occupancy_by_water = encoding_context.m_edge_occupancy_by_water; m_edge_occupancy_by_water_ = encoding_context.m_edge_occupancy_by_water_; m_edge_occupancy_by_water__ = encoding_context.m_edge_occupancy_by_water__; m_unified_edge_occupancy_by_water__ = encoding_context.m_unified_edge_occupancy_by_water__; m_wet_edge_occupancy_by_water__ = encoding_context.m_wet_edge_occupancy_by_water__; m_transition_action = encoding_context.m_transition_action; m_vertex_occupancy_by_water = encoding_context.m_vertex_occupancy_by_water; m_vertex_occupancy_by_water_ = encoding_context.m_vertex_occupancy_by_water_; m_vertex_occupancy_by_gas_ = encoding_context.m_vertex_occupancy_by_gas_; m_unified_vertex_occupancy_by_water_ = encoding_context.m_unified_vertex_occupancy_by_water_; m_wet_vertex_occupancy_by_water_ = encoding_context.m_wet_vertex_occupancy_by_water_; m_vertex_water_cardinality_ = encoding_context.m_vertex_water_cardinality_; m_vertex_occupancy_by_robot = encoding_context.m_vertex_occupancy_by_robot; m_transition_Actions = encoding_context.m_transition_Actions; switch_GeneratingMode(encoding_context.get_GeneratingMode()); register_InternalIdentifiers(); return *this; } sMultirobotEncodingContext_CNFsat::GeneratingMode sMultirobotEncodingContext_CNFsat::get_GeneratingMode(void) const { return m_generating_mode; } void sMultirobotEncodingContext_CNFsat::switch_GeneratingMode(GeneratingMode generating_mode) { m_generating_mode = generating_mode; switch (generating_mode) { case GENERATING_STANDARD: { m_clause_generator = &m_state_clause_generator; break; } case GENERATING_ADVANCED: { m_clause_generator = &m_advanced_clause_generator; break; } case GENERATING_BITWISE: { m_clause_generator = &m_bitwise_clause_generator; break; } default: { sASSERT(false); break; } } m_bit_generator = &m_bit_clause_generator; } void sMultirobotEncodingContext_CNFsat::switchTo_StandardGeneratingMode(void) { m_clause_generator = &m_state_clause_generator; m_bit_generator = &m_bit_clause_generator; m_generating_mode = GENERATING_STANDARD; } void sMultirobotEncodingContext_CNFsat::switchTo_AdvancedGeneratingMode(void) { m_clause_generator = &m_advanced_clause_generator; m_bit_generator = &m_bit_clause_generator; m_generating_mode = GENERATING_ADVANCED; } void sMultirobotEncodingContext_CNFsat::switchTo_BitwiseGeneratingMode(void) { m_clause_generator = &m_bitwise_clause_generator; m_bit_generator = &m_bit_clause_generator; m_generating_mode = GENERATING_BITWISE; } void sMultirobotEncodingContext_CNFsat::register_InternalIdentifiers(void) { m_state_Identifiers.clear(); m_state_Identifiers[sINT_32_MAX] = NULL; m_bit_Identifiers.clear(); m_bit_Identifiers[sINT_32_MAX] = NULL; if (!m_vertex_occupancy.is_Anonymous()) { register_TranslateIdentifier(m_vertex_occupancy); } if (!m_robot_location.is_Anonymous()) { register_TranslateIdentifier(m_robot_location); } if (!m_robot_location_in_vertex.is_Anonymous()) { register_TranslateIdentifier(m_robot_location_in_vertex); } if (!m_vertex_occupancy_by_robot.is_Anonymous()) { register_TranslateIdentifier(m_vertex_occupancy_by_robot); } for (StateIdentifiers_vector::iterator transition_action = m_transition_Actions.begin(); transition_action != m_transition_Actions.end(); ++transition_action) { if (!transition_action->is_Anonymous()) { register_TranslateIdentifier(*transition_action); } } for (BitIdentifiers_vector::iterator edge_occupancy = m_edge_occupancy_by_water.begin(); edge_occupancy != m_edge_occupancy_by_water.end(); ++edge_occupancy) { if (!edge_occupancy->is_Anonymous()) { register_TranslateIdentifier(*edge_occupancy); } } for (BitIdentifiers_2d_vector::iterator edge_occupancy_ = m_edge_occupancy_by_water_.begin(); edge_occupancy_ != m_edge_occupancy_by_water_.end(); ++edge_occupancy_) { for (BitIdentifiers_vector::iterator edge_occupancy = edge_occupancy_->begin(); edge_occupancy != edge_occupancy_->end(); ++edge_occupancy) { if (!edge_occupancy->is_Anonymous()) { register_TranslateIdentifier(*edge_occupancy); } } } for (BitIdentifiers_2d_vector::iterator wet_edge_occupancy__ = m_wet_edge_occupancy_by_water__.begin(); wet_edge_occupancy__ != m_wet_edge_occupancy_by_water__.end(); ++wet_edge_occupancy__) { for (BitIdentifiers_vector::iterator wet_edge_occupancy = wet_edge_occupancy__->begin(); wet_edge_occupancy != wet_edge_occupancy__->end(); ++wet_edge_occupancy) { if (!wet_edge_occupancy->is_Anonymous()) { register_TranslateIdentifier(*wet_edge_occupancy); } } } for (BitIdentifiers_2d_vector::iterator vertex_occupancy_ = m_vertex_occupancy_by_water_.begin(); vertex_occupancy_ != m_vertex_occupancy_by_water_.end(); ++vertex_occupancy_) { for (BitIdentifiers_vector::iterator vertex_occupancy = vertex_occupancy_->begin(); vertex_occupancy != vertex_occupancy_->end(); ++vertex_occupancy) { if (!vertex_occupancy->is_Anonymous()) { register_TranslateIdentifier(*vertex_occupancy); } } } for (BitIdentifiers_2d_vector::iterator vertex_occupancy_ = m_vertex_occupancy_by_gas_.begin(); vertex_occupancy_ != m_vertex_occupancy_by_gas_.end(); ++vertex_occupancy_) { for (BitIdentifiers_vector::iterator vertex_occupancy = vertex_occupancy_->begin(); vertex_occupancy != vertex_occupancy_->end(); ++vertex_occupancy) { if (!vertex_occupancy->is_Anonymous()) { register_TranslateIdentifier(*vertex_occupancy); } } } for (BitIdentifiers_vector::iterator unified_vertex_occupancy = m_unified_vertex_occupancy_by_water_.begin(); unified_vertex_occupancy != m_unified_vertex_occupancy_by_water_.end(); ++unified_vertex_occupancy) { if (!unified_vertex_occupancy->is_Anonymous()) { register_TranslateIdentifier(*unified_vertex_occupancy); } } for (BitIdentifiers_vector::iterator wet_vertex_occupancy = m_wet_vertex_occupancy_by_water_.begin(); wet_vertex_occupancy != m_wet_vertex_occupancy_by_water_.end(); ++wet_vertex_occupancy) { if (!wet_vertex_occupancy->is_Anonymous()) { register_TranslateIdentifier(*wet_vertex_occupancy); } } for (BitIdentifiers_2d_vector::iterator vertex_cardinality_ = m_vertex_water_cardinality_.begin(); vertex_cardinality_ != m_vertex_water_cardinality_.end(); ++vertex_cardinality_) { for (BitIdentifiers_vector::iterator vertex_cardinality = vertex_cardinality_->begin(); vertex_cardinality != vertex_cardinality_->end(); ++vertex_cardinality) { if (!vertex_cardinality->is_Anonymous()) { register_TranslateIdentifier(*vertex_cardinality); } } } for (BitIdentifiers_3d_vector::iterator edge_occupancy__ = m_edge_occupancy_by_water__.begin(); edge_occupancy__ != m_edge_occupancy_by_water__.end(); ++edge_occupancy__) { for (BitIdentifiers_2d_vector::iterator edge_occupancy_ = edge_occupancy__->begin(); edge_occupancy_ != edge_occupancy__->end(); ++edge_occupancy_) { for (BitIdentifiers_vector::iterator edge_occupancy = edge_occupancy_->begin(); edge_occupancy != edge_occupancy_->end(); ++edge_occupancy) { if (!edge_occupancy->is_Anonymous()) { register_TranslateIdentifier(*edge_occupancy); } } } } for (BitIdentifiers_2d_vector::iterator unified_edge_occupancy_ = m_unified_edge_occupancy_by_water__.begin(); unified_edge_occupancy_ != m_unified_edge_occupancy_by_water__.end(); ++unified_edge_occupancy_) { for (BitIdentifiers_vector::iterator unified_edge_occupancy = unified_edge_occupancy_->begin(); unified_edge_occupancy != unified_edge_occupancy_->end(); ++unified_edge_occupancy) { if (!unified_edge_occupancy->is_Anonymous()) { register_TranslateIdentifier(*unified_edge_occupancy); } } } } void sMultirobotEncodingContext_CNFsat::register_TranslateIdentifier(sIndexableStateIdentifier &state_identifier) { if (state_identifier.get_First_CNFVariable() >= 1) { m_state_Identifiers[state_identifier.get_First_CNFVariable()] = &state_identifier; } } void sMultirobotEncodingContext_CNFsat::register_TranslateIdentifier(sIndexableBitIdentifier &bit_identifier) { if (bit_identifier.get_First_CNFVariable() >= 1) { m_bit_Identifiers[bit_identifier.get_First_CNFVariable()] = &bit_identifier; } } sSpecifiedIdentifier sMultirobotEncodingContext_CNFsat::translate_CNF_Variable(int cnf_variable) const { sSpecifiedIdentifier state_translation; StateIdentifiers_map::const_iterator state_identifier = m_state_Identifiers.upper_bound(cnf_variable); if (state_identifier != m_state_Identifiers.end()) { if (state_identifier->first > cnf_variable) { --state_identifier; } if (state_identifier != m_state_Identifiers.end() && state_identifier->second != NULL) { state_translation = state_identifier->second->translate_CNFVariable(cnf_variable); } } if (!state_translation.is_Null()) { return state_translation; } else { sSpecifiedIdentifier bit_translation; BitIdentifiers_map::const_iterator bit_identifier = m_bit_Identifiers.upper_bound(cnf_variable); /* printf("bit_var:%d,%ld\n", cnf_variable, m_bit_Identifiers.size()); for (BitIdentifiers_map::const_iterator identifier = m_bit_Identifiers.begin(); identifier != m_bit_Identifiers.end(); ++identifier) { if (identifier->second != NULL) { // identifier->second->to_Screen(); printf("%d\n", identifier->first); } } */ if (bit_identifier != m_bit_Identifiers.end()) { if (bit_identifier->first > cnf_variable) { --bit_identifier; } if (bit_identifier != m_bit_Identifiers.end() && bit_identifier->second != NULL) { bit_translation = bit_identifier->second->translate_CNFVariable(cnf_variable); } } if (!bit_translation.is_Null()) { return bit_translation; } else { return m_clause_generator->translate_AuxiliaryCNFVariable(cnf_variable); } } return sSpecifiedIdentifier(); } void sMultirobotEncodingContext_CNFsat::to_Screen_identifiers(const sString &indent) const { printf("%sEncoding identifiers {\n", indent.c_str()); printf("%s%sState identifiers (%ld) [\n", indent.c_str(), sRELOC_INDENT.c_str(), m_state_Identifiers.size()); for (StateIdentifiers_map::const_iterator state_identifier = m_state_Identifiers.begin(); state_identifier != m_state_Identifiers.end(); ++state_identifier) { if (state_identifier->first < sINT_32_MAX) { printf("%s%s%d --->\n", indent.c_str(), sRELOC_2_INDENT.c_str(), state_identifier->first); state_identifier->second->to_Screen(indent + sRELOC_3_INDENT); } } printf("%s%s]\n", indent.c_str(), sRELOC_INDENT.c_str()); printf("%s%sBit identifiers (%ld) [\n", indent.c_str(), sRELOC_INDENT.c_str(), m_bit_Identifiers.size()); for (BitIdentifiers_map::const_iterator bit_identifier = m_bit_Identifiers.begin(); bit_identifier != m_bit_Identifiers.end(); ++bit_identifier) { if (bit_identifier->first < sINT_32_MAX) { printf("%s%s%d --->\n", indent.c_str(), sRELOC_2_INDENT.c_str(), bit_identifier->first); bit_identifier->second->to_Screen(indent + sRELOC_3_INDENT); } } printf("%s%s]\n", indent.c_str(), sRELOC_INDENT.c_str()); printf("%s}\n", indent.c_str()); } /*----------------------------------------------------------------------------*/ // sMultirobotInstance sMultirobotInstance::sMultirobotInstance() { // nothing } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sRobotArrangement &initial_arrangement, const sRobotArrangement &goal_arrangement) : m_goal_type(GOAL_TYPE_ARRANGEMENT) , m_environment(environment) , m_initial_arrangement(initial_arrangement) , m_goal_arrangement(goal_arrangement) , m_ratio(-1.0) , m_robustness(1) , m_range(0) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_arrangement.get_VertexCount()); m_environment.build_SpanningTree(initial_arrangement.get_RobotLocation(1), m_sparse_environment); sUndirectedGraph::VertexPairs_vector vertex_Pairs; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot = 1; robot <= N_Robots; ++robot) { vertex_Pairs.push_back(sUndirectedGraph::Vertex_pair(initial_arrangement.get_RobotLocation(robot), goal_arrangement.get_RobotLocation(robot))); } m_environment.build_SparseGraph(vertex_Pairs, m_sparse_environment); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sUndirectedGraph &sparse_environment, const sRobotArrangement &initial_arrangement, const sRobotArrangement &goal_arrangement) : m_goal_type(GOAL_TYPE_ARRANGEMENT) , m_environment(environment) , m_sparse_environment(sparse_environment) , m_initial_arrangement(initial_arrangement) , m_goal_arrangement(goal_arrangement) , m_ratio(-1.0) , m_robustness(1) , m_range(0) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_arrangement.get_VertexCount()); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sRobotArrangement &initial_arrangement, const sRobotArrangement &goal_arrangement, double ratio, int robustness, int range) : m_goal_type(GOAL_TYPE_ARRANGEMENT) , m_environment(environment) , m_initial_arrangement(initial_arrangement) , m_goal_arrangement(goal_arrangement) , m_ratio(ratio) , m_robustness(robustness) , m_range(range) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_arrangement.get_VertexCount()); m_environment.build_SpanningTree(initial_arrangement.get_RobotLocation(1), m_sparse_environment); sUndirectedGraph::VertexPairs_vector vertex_Pairs; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot = 1; robot <= N_Robots; ++robot) { vertex_Pairs.push_back(sUndirectedGraph::Vertex_pair(initial_arrangement.get_RobotLocation(robot), goal_arrangement.get_RobotLocation(robot))); } m_environment.build_SparseGraph(vertex_Pairs, m_sparse_environment); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sUndirectedGraph &sparse_environment, const sRobotArrangement &initial_arrangement, const sRobotArrangement &goal_arrangement, double ratio, int robustness, int range) : m_goal_type(GOAL_TYPE_ARRANGEMENT) , m_environment(environment) , m_sparse_environment(sparse_environment) , m_initial_arrangement(initial_arrangement) , m_goal_arrangement(goal_arrangement) , m_ratio(ratio) , m_robustness(robustness) , m_range(range) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_arrangement.get_VertexCount()); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sRobotArrangement &initial_arrangement, const sRobotGoal &goal_specification) : m_goal_type(GOAL_TYPE_SPECIFICATION) , m_environment(environment) , m_initial_arrangement(initial_arrangement) , m_goal_specification(goal_specification) , m_ratio(-1.0) , m_robustness(1) , m_range(0) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_specification.get_VertexCount()); // m_environment.build_SpanningTree(initial_arrangement.get_RobotLocation(1), m_sparse_environment); sUndirectedGraph::VertexPairs_vector vertex_Pairs; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot = 1; robot <= N_Robots; ++robot) { double p = (double)rand() / RAND_MAX; // printf("%f\n", p); if (p <= 1.0) { const sRobotGoal::Vertices_set &robot_goal = goal_specification.get_RobotGoal(robot); if (robot_goal.size() == 1) { vertex_Pairs.push_back(sUndirectedGraph::Vertex_pair(initial_arrangement.get_RobotLocation(robot), *robot_goal.begin())); } else { sASSERT(false); } } } // m_environment.build_SparseGraph(vertex_Pairs, m_sparse_environment); // m_environment.build_SpanningTree(0, m_sparse_environment); // printf("%.3f\n", (double)m_sparse_environment.get_EdgeCount() / m_environment.get_EdgeCount()); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sUndirectedGraph &sparse_environment, const sRobotArrangement &initial_arrangement, const sRobotGoal &goal_specification) : m_goal_type(GOAL_TYPE_SPECIFICATION) , m_environment(environment) , m_sparse_environment(sparse_environment) , m_initial_arrangement(initial_arrangement) , m_goal_specification(goal_specification) , m_ratio(-1.0) , m_robustness(1) , m_range(0) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_specification.get_VertexCount()); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sRobotArrangement &initial_arrangement, const sRobotGoal &goal_specification, double ratio, int robustness, int range) : m_goal_type(GOAL_TYPE_SPECIFICATION) , m_environment(environment) , m_initial_arrangement(initial_arrangement) , m_goal_specification(goal_specification) , m_ratio(ratio) , m_robustness(robustness) , m_range(range) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_specification.get_VertexCount()); // m_environment.build_SpanningTree(initial_arrangement.get_RobotLocation(1), m_sparse_environment); sUndirectedGraph::VertexPairs_vector vertex_Pairs; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot = 1; robot <= N_Robots; ++robot) { double p = (double)rand() / RAND_MAX; // printf("%f\n", p); if (p <= 1.0) { const sRobotGoal::Vertices_set &robot_goal = goal_specification.get_RobotGoal(robot); if (robot_goal.size() == 1) { vertex_Pairs.push_back(sUndirectedGraph::Vertex_pair(initial_arrangement.get_RobotLocation(robot), *robot_goal.begin())); } else { sASSERT(false); } } } // m_environment.build_SparseGraph(vertex_Pairs, m_sparse_environment); // m_environment.build_SpanningTree(0, m_sparse_environment); // printf("%.3f\n", (double)m_sparse_environment.get_EdgeCount() / m_environment.get_EdgeCount()); } sMultirobotInstance::sMultirobotInstance(const sUndirectedGraph &environment, const sUndirectedGraph &sparse_environment, const sRobotArrangement &initial_arrangement, const sRobotGoal &goal_specification, double ratio, int robustness, int range) : m_goal_type(GOAL_TYPE_SPECIFICATION) , m_environment(environment) , m_sparse_environment(sparse_environment) , m_initial_arrangement(initial_arrangement) , m_goal_specification(goal_specification) , m_ratio(ratio) , m_robustness(robustness) , m_range(range) { sASSERT(environment.get_VertexCount() == initial_arrangement.get_VertexCount() && environment.get_VertexCount() == goal_specification.get_VertexCount()); } /*----------------------------------------------------------------------------*/ void sMultirobotInstance::collect_Endpoints(VertexIDs_vector &source_IDs, VertexIDs_vector &goal_IDs) { int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } source_IDs.push_back(robot_source_vertex_id); goal_IDs.push_back(robot_sink_vertex_id); } } int sMultirobotInstance::analyze_EdgeHeights(int max_total_cost) { int min_total_cost = INT_MAX; VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); m_environment.calc_AllPairsShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &all_pairs_Distances = m_environment.get_AllPairsShortestPaths(); for (sUndirectedGraph::Edges_list::const_iterator edge = m_environment.m_Edges.begin(); edge != m_environment.m_Edges.end(); ++edge) { int min_edge_robot_id = -1; int min_edge_cost = INT_MAX; int edge_vertex_u_id = edge->m_arc_uv.m_source->m_id; int edge_vertex_v_id = edge->m_arc_uv.m_target->m_id; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int edge_cost = sMIN(all_pairs_Distances[robot_source_vertex_id][edge_vertex_u_id] + all_pairs_Distances[edge_vertex_v_id][robot_sink_vertex_id], all_pairs_Distances[robot_source_vertex_id][edge_vertex_v_id] + all_pairs_Distances[edge_vertex_u_id][robot_sink_vertex_id]); if (edge_cost < min_edge_cost) { min_edge_cost = edge_cost; min_edge_robot_id = robot_id; } } int rest_cost = 0; for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { if (robot_id != min_edge_robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } rest_cost += all_pairs_Distances[robot_source_vertex_id][robot_sink_vertex_id]; } } int total_cost = min_edge_cost + rest_cost; int edge_height = max_total_cost - total_cost; printf("Edge height: %d\n", edge_height); if (min_total_cost > total_cost) { min_total_cost = total_cost; } } return min_total_cost; } int sMultirobotInstance::analyze_EdgeHeights_(int max_total_cost, int &max_vertex_height) { sUndirectedGraph::VertexIDs_set reachable_IDs; return analyze_EdgeHeights_(max_total_cost, max_vertex_height, reachable_IDs); } int sMultirobotInstance::analyze_EdgeHeights_(int max_total_cost, int &max_vertex_height, sUndirectedGraph::VertexIDs_set &reachable_IDs) { VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); m_environment.calc_AllPairsShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &all_pairs_Distances = m_environment.get_AllPairsShortestPaths(); max_vertex_height = 0; int min_total_cost = 0; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = all_pairs_Distances[robot_source_vertex_id][robot_sink_vertex_id]; min_total_cost += robot_cost; } for (sUndirectedGraph::Vertices_vector::const_iterator vertex = m_environment.m_Vertices.begin(); vertex != m_environment.m_Vertices.end(); ++vertex) { int min_robot_cost = INT_MAX; int min_robot_id = -1; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int cost = all_pairs_Distances[robot_source_vertex_id][vertex->m_id] + all_pairs_Distances[vertex->m_id][robot_sink_vertex_id]; if (cost < min_robot_cost) { min_robot_cost = cost; min_robot_id = robot_id; } } printf("Min robot:%d (cost:%d)\n", min_robot_id, min_robot_cost); int rest_cost = 0; int overlaps = 0; for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { if (robot_id != min_robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int cost = all_pairs_Distances[robot_source_vertex_id][robot_sink_vertex_id]; int overlap_cost = all_pairs_Distances[robot_source_vertex_id][vertex->m_id] + all_pairs_Distances[vertex->m_id][robot_sink_vertex_id]; if (cost == overlap_cost) { ++overlaps; } rest_cost += cost; } } int total_cost = min_robot_cost + rest_cost; int remaining_cost = max_total_cost - total_cost; printf("Tc: %d\n", total_cost); int vertex_height = -1; if (remaining_cost >= 0) { vertex_height = remaining_cost + overlaps; reachable_IDs.insert(vertex->m_id); } if (max_vertex_height < vertex_height) { max_vertex_height = vertex_height; } printf("Height: %d\n", vertex_height); } // printf("Total: %d (%d) Size: %d (%.3f)\n", min_total_cost, max_vertex_height, reachable_IDs.size(), (double)reachable_IDs.size() / m_environment.get_VertexCount()); return min_total_cost; } int sMultirobotInstance::build_HeightedEnvironments(int max_total_cost) { return build_HeightedEnvironments(max_total_cost, m_heighted_Environments); } int sMultirobotInstance::build_HeightedEnvironments(int max_total_cost, Environments_vector &heighted_Environments) { int min_total_cost = INT_MAX; heighted_Environments.clear(); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); m_environment.calc_AllPairsShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &all_pairs_Distances = m_environment.get_AllPairsShortestPaths(); for (sUndirectedGraph::Edges_list::const_iterator edge = m_environment.m_Edges.begin(); edge != m_environment.m_Edges.end(); ++edge) { int min_edge_robot_id = -1; int min_edge_cost = INT_MAX; int edge_vertex_u_id = edge->m_arc_uv.m_source->m_id; int edge_vertex_v_id = edge->m_arc_uv.m_target->m_id; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int edge_cost = sMIN(all_pairs_Distances[robot_source_vertex_id][edge_vertex_u_id] + all_pairs_Distances[edge_vertex_v_id][robot_sink_vertex_id], all_pairs_Distances[robot_source_vertex_id][edge_vertex_v_id] + all_pairs_Distances[edge_vertex_u_id][robot_sink_vertex_id]); if (edge_cost < min_edge_cost) { min_edge_cost = edge_cost; min_edge_robot_id = robot_id; } } int rest_cost = 0; for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { if (robot_id != min_edge_robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } rest_cost += all_pairs_Distances[robot_source_vertex_id][robot_sink_vertex_id]; } } int total_cost = min_edge_cost + rest_cost; int edge_height = max_total_cost - total_cost; printf("eh: %d\n", edge_height); if (edge_height >= 0) { int environment_height = heighted_Environments.size(); while (environment_height++ <= edge_height) { heighted_Environments.push_back(sUndirectedGraph()); heighted_Environments.back().add_Vertices(m_environment.get_VertexCount()); } for (int eh = 0; eh < edge_height; ++eh) { if (!heighted_Environments[eh].is_Adjacent(edge_vertex_u_id, edge_vertex_v_id)) { heighted_Environments[eh].add_Edge(edge_vertex_u_id, edge_vertex_v_id); } } } if (min_total_cost > total_cost) { min_total_cost = total_cost; } } printf("------>\n"); if (heighted_Environments.empty()) { heighted_Environments.push_back(sUndirectedGraph()); heighted_Environments.back().add_Vertices(m_environment.get_VertexCount()); } return min_total_cost; } int sMultirobotInstance::build_HeightedEnvironments_(int max_total_cost) { return build_HeightedEnvironments_(max_total_cost, m_heighted_Environments); } int sMultirobotInstance::build_HeightedEnvironments_(int max_total_cost, Environments_vector &heighted_Environments) { heighted_Environments.clear(); int max_vertex_height = 0; sUndirectedGraph::VertexIDs_set reachable_IDs; int min_total_cost = analyze_EdgeHeights_(max_total_cost, max_vertex_height, reachable_IDs); sUndirectedGraph heighted_environment; heighted_environment.add_Vertices(m_environment.get_VertexCount()); for (sUndirectedGraph::Edges_list::const_iterator edge = m_environment.m_Edges.begin(); edge != m_environment.m_Edges.end(); ++edge) { int edge_vertex_u_id = edge->m_arc_uv.m_source->m_id; int edge_vertex_v_id = edge->m_arc_uv.m_target->m_id; /* sUndirectedGraph::VertexIDs_set::const_iterator reachable_u = reachable_IDs.find(edge_vertex_u_id); sUndirectedGraph::VertexIDs_set::const_iterator reachable_v = reachable_IDs.find(edge_vertex_v_id); */ // if (reachable_u != reachable_IDs.end() && reachable_v != reachable_IDs.end()) { heighted_environment.add_Edge(edge_vertex_u_id, edge_vertex_v_id); } } for (int height = 0; height <= max_vertex_height; ++height) { heighted_Environments.push_back(heighted_environment); } return min_total_cost; } int sMultirobotInstance::estimate_TotalCost(int &max_individual_cost) { VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); m_environment.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &source_Distances = m_environment.get_SourceShortestPaths(); // const sUndirectedGraph::Distances_2d_vector &goal_Distances = m_environment.get_GoalShortestPaths(); int min_total_cost = 0; max_individual_cost = 0; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; min_total_cost += robot_cost; if (robot_cost > max_individual_cost) { max_individual_cost = robot_cost; } } return min_total_cost; } int sMultirobotInstance::estimate_TotalFuel(int &max_individual_fuel) { VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); m_environment.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &source_Distances = m_environment.get_SourceShortestPaths(); // const sUndirectedGraph::Distances_2d_vector &goal_Distances = m_environment.get_GoalShortestPaths(); int min_total_fuel = 0; max_individual_fuel = 0; int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_fuel = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; min_total_fuel += robot_fuel; if (robot_fuel > max_individual_fuel) { max_individual_fuel = robot_fuel; } } return min_total_fuel; } int sMultirobotInstance::construct_MDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphMDD(m_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMultirobotInstance::construct_FuelMDD(int max_total_fuel, int fuel_makespan, MDD_vector &MDD, int &extra_fuel, MDD_vector &extra_MDD) { return construct_GraphFuelMDD(m_environment, max_total_fuel, fuel_makespan, MDD, extra_fuel, extra_MDD); } int sMultirobotInstance::construct_DisplacementMDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphDisplacementMDD(m_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMultirobotInstance::construct_LimitedMDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphLimitedMDD(m_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMultirobotInstance::construct_SparseMDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphMDD(m_sparse_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMDD_Addition[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // int sMDD_Addition[] = { 2, 1, 1, 0, 0, 0, 0, 0, 0, 0 }; 36.94 // int sMDD_Addition[] = { 2, 1, 0, 0, 0, 0, 0, 0, 0, 0 }; // 33.97 // int sMDD_Addition[] = { 2, 2, 1, 1, 1, 0, 0, 0, 0, 0 }; 51.21 // int sMDD_Addition[] = { 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 }; 54.29 // int sMDD_Addition[] = { 4, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; 43.99 // int sMDD_Addition[] = { 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; //30.00 // int sMDD_Addition[] = { 4, 2, 1, 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 }; 45.0 // int sMDD_Addition[] = { 2, 1, 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, 0 }; 36.66 // int sMDD_Addition[] = { 3, 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, 0, 0 }; 49.0 // int sMDD_Addition[] = { 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // int sMDD_Addition[] = { 1, 1, 1, 1, 1, 1, 1, 0, 0, 0 }; // int sMDD_Addition[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }; typedef std::multimap<int, int> RobotIndices_mmap; int sMultirobotInstance::construct_GraphMDD(sUndirectedGraph &graph, int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { int max_individual_cost; int N_Vertices = graph.get_VertexCount(); MDD.clear(); extra_MDD.clear(); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); int min_total_cost = estimate_TotalCost(max_individual_cost); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); extra_cost = max_total_cost - min_total_cost; int mdd_depth = max_individual_cost + extra_cost; int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.resize(N_Robots + 1); extra_MDD.resize(N_Robots + 1); RobotIndices_mmap sorted_mdd_Robots; for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; sorted_mdd_Robots.insert(RobotIndices_mmap::value_type(robot_cost, mdd_robot_id)); } int sort_index = 0; for (RobotIndices_mmap::const_reverse_iterator sort_robot = sorted_mdd_Robots.rbegin(); sort_robot != sorted_mdd_Robots.rend(); ++sort_robot) { int add_index = (sort_index++ * (sizeof(sMDD_Addition) / sizeof(int))) / N_Robots; int extra_addition = sMDD_Addition[add_index]; int mdd_robot_id = sort_robot->second; MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; /* for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { if ( source_Distances[robot_source_vertex_id][vertex_id] <= mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= robot_cost + extra_cost - mdd_level) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); printf("mdd_level:%d\n", mdd_level); } } } */ for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { for (int mdd_level = source_Distances[robot_source_vertex_id][vertex_id]; mdd_level <= sMIN(robot_cost + (extra_cost + extra_addition) - goal_Distances[robot_sink_vertex_id][vertex_id], mdd_depth); ++mdd_level) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (MDD[mdd_robot_id][mdd_level].empty()) { MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } if ( mdd_level >= source_Distances[robot_source_vertex_id][robot_sink_vertex_id] && mdd_level < source_Distances[robot_source_vertex_id][robot_sink_vertex_id] + (extra_cost + extra_addition)) { extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } } } /* printf("Distance printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } printf("robot:%d (%d,%d)\n", mdd_robot, robot_source_vertex_id, robot_sink_vertex_id); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int source_dist = source_Distances[robot_source_vertex_id][vertex_id]; int goal_dist = goal_Distances[robot_sink_vertex_id][vertex_id]; printf(" %d:%d,%d\n", vertex_id, source_dist, goal_dist); } } printf("<----\n"); */ /* printf("MDD printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { printf("robot:%d\n", mdd_robot); for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (!extra_MDD[mdd_robot][mdd_level].empty()) { printf("* "); } for (int i = 0; i < MDD[mdd_robot][mdd_level].size(); ++i) { printf("%d ", MDD[mdd_robot][mdd_level][i]); } printf("\n"); } printf("\n"); } printf("<----\n"); getchar(); */ std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } return mdd_depth; } int sMultirobotInstance::construct_GraphFuelMDD(sUndirectedGraph &graph, int max_total_fuel, int fuel_makespan, MDD_vector &MDD, int &extra_fuel, MDD_vector &extra_MDD) { int max_individual_fuel; int N_Vertices = graph.get_VertexCount(); MDD.clear(); extra_MDD.clear(); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); int min_total_fuel = estimate_TotalFuel(max_individual_fuel); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); extra_fuel = max_total_fuel - min_total_fuel; int mdd_depth = fuel_makespan; int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.resize(N_Robots + 1); extra_MDD.resize(N_Robots + 1); RobotIndices_mmap sorted_mdd_Robots; for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_fuel = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; sorted_mdd_Robots.insert(RobotIndices_mmap::value_type(robot_fuel, mdd_robot_id)); } //int sort_index = 0; for (RobotIndices_mmap::const_reverse_iterator sort_robot = sorted_mdd_Robots.rbegin(); sort_robot != sorted_mdd_Robots.rend(); ++sort_robot) { //int add_index = (sort_index++ * (sizeof(sMDD_Addition) / sizeof(int))) / N_Robots; //int extra_addition = sMDD_Addition[add_index]; int mdd_robot_id = sort_robot->second; MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_fuel = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { if ( source_Distances[robot_source_vertex_id][vertex_id] <= mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= mdd_depth - mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= robot_fuel + extra_fuel - source_Distances[robot_source_vertex_id][vertex_id]) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); } } } /* for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { for (int mdd_level = source_Distances[robot_source_vertex_id][vertex_id]; mdd_level <= mdd_depth - goal_Distances[robot_sink_vertex_id][vertex_id]; ++mdd_level) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); } } */ for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (MDD[mdd_robot_id][mdd_level].empty()) { MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } /* if (mdd_level >= source_Distances[robot_source_vertex_id][robot_sink_vertex_id]) { extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } */ } } /* printf("Distance printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } printf("robot:%d (%d,%d)\n", mdd_robot, robot_source_vertex_id, robot_sink_vertex_id); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int source_dist = source_Distances[robot_source_vertex_id][vertex_id]; int goal_dist = goal_Distances[robot_sink_vertex_id][vertex_id]; printf(" %d:%d,%d\n", vertex_id, source_dist, goal_dist); } } printf("<----\n"); */ /* printf("MDD printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { printf("robot:%d\n", mdd_robot); for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (!extra_MDD[mdd_robot][mdd_level].empty()) { printf("* "); } for (int i = 0; i < MDD[mdd_robot][mdd_level].size(); ++i) { printf("%d ", MDD[mdd_robot][mdd_level][i]); } printf("\n"); } printf("\n"); } printf("<----\n"); getchar(); */ std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } return mdd_depth; } int sMultirobotInstance::construct_GraphDisplacementMDD(sUndirectedGraph &graph, int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { int max_individual_cost; int N_Vertices = graph.get_VertexCount(); MDD.clear(); extra_MDD.clear(); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); int min_total_cost = estimate_TotalCost(max_individual_cost); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); extra_cost = max_total_cost - min_total_cost; int mdd_depth = max_individual_cost + extra_cost; int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.resize(N_Robots + 1); extra_MDD.resize(N_Robots + 1); RobotIndices_mmap sorted_mdd_Robots; for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; sorted_mdd_Robots.insert(RobotIndices_mmap::value_type(robot_cost, mdd_robot_id)); } int sort_index = 0; for (RobotIndices_mmap::const_reverse_iterator sort_robot = sorted_mdd_Robots.rbegin(); sort_robot != sorted_mdd_Robots.rend(); ++sort_robot) { int add_index = (sort_index++ * (sizeof(sMDD_Addition) / sizeof(int))) / N_Robots; int extra_addition = sMDD_Addition[add_index]; int mdd_robot_id = sort_robot->second; MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; /* for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { if ( source_Distances[robot_source_vertex_id][vertex_id] <= mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= robot_cost + extra_cost - mdd_level) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); printf("mdd_level:%d\n", mdd_level); } } } */ RobotMDD_set robot_MDD; robot_MDD.resize(mdd_depth + 1); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { for (int mdd_level = source_Distances[robot_source_vertex_id][vertex_id]; mdd_level <= sMIN(robot_cost + (extra_cost + extra_addition) - goal_Distances[robot_sink_vertex_id][vertex_id], mdd_depth); ++mdd_level) { if (m_initial_arrangement.m_robot_Sizes[mdd_robot_id] > 1) { for (int dr = 0; dr < m_initial_arrangement.m_robot_Sizes[mdd_robot_id]; ++dr) { for (int dc = 0; dc < m_initial_arrangement.m_robot_Sizes[mdd_robot_id]; ++dc) { int grid_vertex_id = graph.get_GridNeighborVertexID(vertex_id, dr, dc); if (grid_vertex_id >= 0) { robot_MDD[mdd_level].insert(grid_vertex_id); } } } } else { robot_MDD[mdd_level].insert(vertex_id); } } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (robot_MDD[mdd_level].empty()) { if (m_initial_arrangement.m_robot_Sizes[mdd_robot_id] > 1) { for (int dr = 0; dr < m_initial_arrangement.m_robot_Sizes[mdd_robot_id]; ++dr) { for (int dc = 0; dc < m_initial_arrangement.m_robot_Sizes[mdd_robot_id]; ++dc) { int grid_vertex_id = graph.get_GridNeighborVertexID(robot_sink_vertex_id, dr, dc); if (grid_vertex_id >= 0) { robot_MDD[mdd_level].insert(grid_vertex_id); } } } } else { robot_MDD[mdd_level].insert(robot_sink_vertex_id); } } if ( mdd_level >= source_Distances[robot_source_vertex_id][robot_sink_vertex_id] && mdd_level < source_Distances[robot_source_vertex_id][robot_sink_vertex_id] + (extra_cost + extra_addition)) { extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (VertexIDs_set::const_iterator vertex_ID = robot_MDD[mdd_level].begin(); vertex_ID != robot_MDD[mdd_level].end(); ++vertex_ID) { MDD[mdd_robot_id][mdd_level].push_back(*vertex_ID); } } } /* printf("Distance printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } printf("robot:%d (%d,%d)\n", mdd_robot, robot_source_vertex_id, robot_sink_vertex_id); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int source_dist = source_Distances[robot_source_vertex_id][vertex_id]; int goal_dist = goal_Distances[robot_sink_vertex_id][vertex_id]; printf(" %d:%d,%d\n", vertex_id, source_dist, goal_dist); } } printf("<----\n"); printf("MDD printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { printf("robot:%d\n", mdd_robot); for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int i = 0; i < MDD[mdd_robot][mdd_level].size(); ++i) { printf("%d ", MDD[mdd_robot][mdd_level][i]); } printf("\n"); } printf("\n"); } printf("<----\n"); */ std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } return mdd_depth; } int sMultirobotInstance::construct_GraphLimitedMDD(sUndirectedGraph &graph, int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { int max_individual_cost; int N_Vertices = graph.get_VertexCount(); MDD.clear(); extra_MDD.clear(); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); int min_total_cost = estimate_TotalCost(max_individual_cost); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); extra_cost = max_total_cost - min_total_cost; int mdd_depth = max_individual_cost + extra_cost; int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.resize(N_Robots + 1); extra_MDD.resize(N_Robots + 1); RobotIndices_mmap sorted_mdd_Robots; for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; sorted_mdd_Robots.insert(RobotIndices_mmap::value_type(robot_cost, mdd_robot_id)); } int sort_index = 0; for (RobotIndices_mmap::const_reverse_iterator sort_robot = sorted_mdd_Robots.rbegin(); sort_robot != sorted_mdd_Robots.rend(); ++sort_robot) { int add_index = (sort_index++ * (sizeof(sMDD_Addition) / sizeof(int))) / N_Robots; int extra_addition = sMDD_Addition[add_index]; int mdd_robot_id = sort_robot->second; MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } int robot_cost = source_Distances[robot_source_vertex_id][robot_sink_vertex_id]; /* for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { if ( source_Distances[robot_source_vertex_id][vertex_id] <= mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= robot_cost + extra_cost - mdd_level) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); printf("mdd_level:%d\n", mdd_level); } } } */ RobotMDD_set robot_MDD; robot_MDD.resize(mdd_depth + 1); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { for (int mdd_level = source_Distances[robot_source_vertex_id][vertex_id]; mdd_level <= sMIN(robot_cost + (extra_cost + extra_addition) - goal_Distances[robot_sink_vertex_id][vertex_id], mdd_depth); ++mdd_level) { if (m_initial_arrangement.m_robot_Sizes[mdd_robot_id] > 1) { if (is_Fitting(graph, mdd_robot_id, m_initial_arrangement.m_robot_Sizes[mdd_robot_id], m_initial_arrangement.m_robot_Sizes[mdd_robot_id], vertex_id)) { robot_MDD[mdd_level].insert(vertex_id); } } else { robot_MDD[mdd_level].insert(vertex_id); } } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { if (robot_MDD[mdd_level].empty()) { if (m_initial_arrangement.m_robot_Sizes[mdd_robot_id] > 1) { if (is_Fitting(graph, mdd_robot_id, m_initial_arrangement.m_robot_Sizes[mdd_robot_id], m_initial_arrangement.m_robot_Sizes[mdd_robot_id], robot_sink_vertex_id)) { robot_MDD[mdd_level].insert(robot_sink_vertex_id); } } else { robot_MDD[mdd_level].insert(robot_sink_vertex_id); } } if ( mdd_level >= source_Distances[robot_source_vertex_id][robot_sink_vertex_id] && mdd_level < source_Distances[robot_source_vertex_id][robot_sink_vertex_id] + (extra_cost + extra_addition)) { extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (VertexIDs_set::const_iterator vertex_ID = robot_MDD[mdd_level].begin(); vertex_ID != robot_MDD[mdd_level].end(); ++vertex_ID) { MDD[mdd_robot_id][mdd_level].push_back(*vertex_ID); } } } /* printf("Distance printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } printf("robot:%d (%d,%d)\n", mdd_robot, robot_source_vertex_id, robot_sink_vertex_id); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int source_dist = source_Distances[robot_source_vertex_id][vertex_id]; int goal_dist = goal_Distances[robot_sink_vertex_id][vertex_id]; printf(" %d:%d,%d\n", vertex_id, source_dist, goal_dist); } } printf("<----\n"); printf("MDD printout\n"); for (int mdd_robot = 1; mdd_robot <= N_Robots; ++mdd_robot) { printf("robot:%d\n", mdd_robot); for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { for (int i = 0; i < MDD[mdd_robot][mdd_level].size(); ++i) { printf("%d ", MDD[mdd_robot][mdd_level][i]); } printf("\n"); } printf("\n"); } printf("<----\n"); */ std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } return mdd_depth; } bool sMultirobotInstance::is_Fitting(sUndirectedGraph &graph, int sUNUSED(robot_id), int robot_row_size, int robot_column_size, int vertex_id) { for (int dr = 0; dr < robot_row_size; ++dr) { for (int dc = 0; dc < robot_column_size; ++dc) { int grid_vertex_id = graph.get_GridNeighborVertexID(vertex_id, dr, dc); if (grid_vertex_id < 0) { return false; } } } return true; } void sMultirobotInstance::reduce_MDD(const Arrangements_vector &unfolded_solution, const MDD_vector &MDD, MDD_vector &reduced_MDD) { reduced_MDD.clear(); int N_Robots = MDD.size() - 1; sASSERT(!MDD.empty() && MDD.size() > 1); int mdd_depth = MDD[1].size() - 1; sASSERT(mdd_depth >= 1); reduced_MDD.resize(MDD.size()); Arrangements_vector addup_unfolded_solution = unfolded_solution; if (addup_unfolded_solution.size() <= mdd_depth) { int N_addups = mdd_depth - addup_unfolded_solution.size(); sRobotArrangement last_arrangement = addup_unfolded_solution[addup_unfolded_solution.size() - 1]; do { addup_unfolded_solution.push_back(last_arrangement); } while (N_addups-- > 0); } #ifdef sVERBOSE { printf("Reducing MDD\n"); } #endif for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { #ifdef sVERBOSE { printf("robot:%d (%ld)\n", mdd_robot_id, MDD[mdd_robot_id].size()); } #endif reduced_MDD[mdd_robot_id].resize(MDD[mdd_robot_id].size()); for (int u = 0; u < MDD[mdd_robot_id][0].size(); ++u) { if ( addup_unfolded_solution[0].is_VertexUnforced(MDD[mdd_robot_id][0][u]) && addup_unfolded_solution[1].is_VertexUnforced(MDD[mdd_robot_id][0][u])) { #ifdef sVERBOSE { printf("+%d ", MDD[mdd_robot_id][0][u]); } #endif reduced_MDD[mdd_robot_id][0].push_back(MDD[mdd_robot_id][0][u]); } else { #ifdef sVERBOSE { printf("-%d ", MDD[mdd_robot_id][0][u]); } #endif } } for (int mdd_level = 1; mdd_level < mdd_depth; ++mdd_level) { #ifdef sVERBOSE { printf("level:%d\n", mdd_level); } #endif for (int u = 0; u < MDD[mdd_robot_id][mdd_level].size(); ++u) { if ( addup_unfolded_solution[mdd_level + 1].is_VertexUnforced(MDD[mdd_robot_id][mdd_level][u]) && addup_unfolded_solution[mdd_level].is_VertexUnforced(MDD[mdd_robot_id][mdd_level][u]) && addup_unfolded_solution[mdd_level - 1].is_VertexUnforced(MDD[mdd_robot_id][mdd_level][u])) { #ifdef sVERBOSE { printf("+%d ", MDD[mdd_robot_id][mdd_level][u]); } #endif reduced_MDD[mdd_robot_id][mdd_level].push_back(MDD[mdd_robot_id][mdd_level][u]); } else { #ifdef sVERBOSE { printf("-%d ", MDD[mdd_robot_id][mdd_level][u]); } #endif } } } for (int u = 0; u < MDD[mdd_robot_id][mdd_depth].size(); ++u) { if ( addup_unfolded_solution[mdd_depth - 1].is_VertexUnforced(MDD[mdd_robot_id][mdd_depth][u]) && addup_unfolded_solution[mdd_depth].is_VertexUnforced(MDD[mdd_robot_id][mdd_depth][u])) { #ifdef sVERBOSE { printf("+%d ", MDD[mdd_robot_id][mdd_depth][u]); } #endif reduced_MDD[mdd_robot_id][mdd_depth].push_back(MDD[mdd_robot_id][mdd_depth][u]); } else { #ifdef sVERBOSE { printf("-%d ", MDD[mdd_robot_id][mdd_depth][u]); } #endif } } } } struct MDDPoint { MDDPoint(int level, int vertex_id) { m_level = level; m_vertex_id = vertex_id; } int m_level; int m_vertex_id; }; typedef std::list<MDDPoint> Queue_vector; bool sMultirobotInstance::check_Connectivity(const MDD_vector &MDD) const { int N_Robots = MDD.size() - 1; sASSERT(!MDD.empty() && MDD.size() > 1); int mdd_depth = MDD[1].size() - 1; sASSERT(mdd_depth >= 1); MDD_vector scheduled_MDD = MDD; #ifdef sVERBOSE { printf("Checking MDD connectivity ...\n"); } #endif for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { if (MDD[mdd_robot_id][0].empty() || MDD[mdd_robot_id][mdd_depth].empty()) { #ifdef sVERBOSE { printf(" Unaccessible source or destination\n"); } #endif return false; } #ifdef sVERBOSE { printf("Goal id: %d (at level %d)\n", MDD[mdd_robot_id][mdd_depth][0], mdd_depth); } #endif scheduled_MDD[mdd_robot_id][0][0] = -1; Queue_vector mdd_Queue; mdd_Queue.push_back(MDDPoint(0, MDD[mdd_robot_id][0][0])); while (!mdd_Queue.empty()) { MDDPoint mdd_point = mdd_Queue.front(); mdd_Queue.pop_front(); #ifdef sVERBOSE { printf("mdd point:%d,%d\n", mdd_point.m_level, mdd_point.m_vertex_id); } #endif if (mdd_point.m_level == mdd_depth && mdd_point.m_vertex_id == MDD[mdd_robot_id][mdd_depth][0]) { #ifdef sVERBOSE { printf(" Connected\n"); } #endif return true; } if (mdd_point.m_level < mdd_depth) { for (int v = 0; v < MDD[mdd_robot_id][mdd_point.m_level + 1].size(); ++v) { if (scheduled_MDD[mdd_robot_id][mdd_point.m_level + 1][v] >= 0) { if (mdd_point.m_vertex_id == MDD[mdd_robot_id][mdd_point.m_level + 1][v] || m_environment.is_Adjacent(mdd_point.m_vertex_id, MDD[mdd_robot_id][mdd_point.m_level + 1][v])) { mdd_Queue.push_back(MDDPoint(mdd_point.m_level + 1, MDD[mdd_robot_id][mdd_point.m_level + 1][v])); scheduled_MDD[mdd_robot_id][mdd_point.m_level + 1][v] = -1; } } } } } } #ifdef sVERBOSE { printf(" Classically disconnected\n"); } #endif return false; } void sMultirobotInstance::unify_MDD(const MDD_vector &MDD, RobotMDD_vector &unified_MDD) { int N_Robots = MDD.size() - 1; sASSERT(!MDD.empty()); int mdd_depth = MDD[1].size(); unified_MDD.resize(mdd_depth); #ifdef sVERBOSE { printf("Unifying... (%ld,%ld)\n", MDD.size(), MDD[1].size()); } #endif for (int mdd_level = 0; mdd_level < mdd_depth; ++mdd_level) { VertexIDs_set vertex_IDs; for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { const VertexIDs_vector &mdd_vertex_IDs = MDD[mdd_robot_id][mdd_level]; for (VertexIDs_vector::const_iterator vertex = mdd_vertex_IDs.begin(); vertex != mdd_vertex_IDs.end(); ++vertex) { vertex_IDs.insert(*vertex); } } #ifdef sVERBOSE { printf(" unify level: %d: ", mdd_level); } #endif for (VertexIDs_set::const_iterator vertex = vertex_IDs.begin(); vertex != vertex_IDs.end(); ++vertex) { #ifdef sVERBOSE { printf("%d ", *vertex); } #endif unified_MDD[mdd_level].push_back(*vertex); } #ifdef sVERBOSE { printf("\n"); } #endif } } void sMultirobotInstance::construct_InverseMDD(int N_Vertices, const MDD_vector &MDD, InverseMDD_vector &inverse_MDD) { inverse_MDD.clear(); int N_Robots = MDD.size() - 1; int mdd_depth = MDD[1].size(); inverse_MDD.resize(N_Robots + 1); for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { inverse_MDD[mdd_robot_id].resize(mdd_depth); for (int mdd_level = 0; mdd_level < mdd_depth; ++mdd_level) { inverse_MDD[mdd_robot_id][mdd_level].resize(N_Vertices, -1); for (int mdd_vertex_index = 0; mdd_vertex_index < MDD[mdd_robot_id][mdd_level].size(); ++mdd_vertex_index) { inverse_MDD[mdd_robot_id][mdd_level][MDD[mdd_robot_id][mdd_level][mdd_vertex_index]] = mdd_vertex_index; } } } } void sMultirobotInstance::construct_MDDIndices(const MDD_vector &MDD, MDDIndices_vector &MDD_Indices) { int N_Robots = MDD.size() - 1; int mdd_depth = MDD[1].size(); MDD_Indices.resize(N_Robots + 1); for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD_Indices[mdd_robot_id].resize(mdd_depth); for (int mdd_level = 0; mdd_level < mdd_depth; ++mdd_level) { for (int mdd_vertex_index = 0; mdd_vertex_index < MDD[mdd_robot_id][mdd_level].size(); ++mdd_vertex_index) { MDD_Indices[mdd_robot_id][mdd_level][MDD[mdd_robot_id][mdd_level][mdd_vertex_index]] = mdd_vertex_index; } } } } void sMultirobotInstance::construct_MDDIndices(const RobotMDD_vector &unified_MDD, RobotMDDIndices_vector &unified_MDD_Indices) { int mdd_depth = unified_MDD.size(); unified_MDD_Indices.resize(mdd_depth); for (int mdd_level = 0; mdd_level < mdd_depth; ++mdd_level) { for (int mdd_vertex_index = 0; mdd_vertex_index < unified_MDD[mdd_level].size(); ++mdd_vertex_index) { unified_MDD_Indices[mdd_level][unified_MDD[mdd_level][mdd_vertex_index]] = mdd_vertex_index; } } } int sMultirobotInstance::construct_NoMDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphMDD(m_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMultirobotInstance::construct_SparseNoMDD(int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { return construct_GraphMDD(m_sparse_environment, max_total_cost, MDD, extra_cost, extra_MDD); } int sMultirobotInstance::construct_GraphNoMDD(sUndirectedGraph &graph, int max_total_cost, MDD_vector &MDD, int &extra_cost, MDD_vector &extra_MDD) { int max_individual_cost; int min_total_cost = estimate_TotalCost(max_individual_cost); VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); // const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); extra_cost = max_total_cost - min_total_cost; int mdd_depth = max_individual_cost + extra_cost; /* printf("mdd_depth:%d\n", mdd_depth); printf("extra_cost:%d\n", extra_cost); */ int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.clear(); MDD.resize(N_Robots + 1); extra_MDD.resize(N_Robots + 1); for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { // printf("mdd_robot:%d\n", mdd_robot_id); MDD[mdd_robot_id].resize(mdd_depth + 1); extra_MDD[mdd_robot_id].resize(mdd_depth + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } for (int mdd_level = 0; mdd_level <= mdd_depth; ++mdd_level) { // printf("level %d (%d):", mdd_level, mdd_depth); int N_Vertices = graph.get_VertexCount(); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { MDD[mdd_robot_id][mdd_level].push_back(vertex_id); // printf("%d ", vertex_id); } if (mdd_level >= source_Distances[robot_source_vertex_id][robot_sink_vertex_id]) { extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); // printf(" * "); } // extra_MDD[mdd_robot_id][mdd_level].push_back(robot_sink_vertex_id); // printf("\n"); } } std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } return mdd_depth; } void sMultirobotInstance::construct_MakespanMDD(int max_makespan, MDD_vector &MDD) { construct_GraphMakespanMDD(m_environment, max_makespan, MDD); } void sMultirobotInstance::construct_SparseMakespanMDD(int max_makespan, MDD_vector &MDD) { construct_GraphMakespanMDD(m_sparse_environment, max_makespan, MDD); } void sMultirobotInstance::construct_GraphMakespanMDD(sUndirectedGraph &graph, int max_makespan, MDD_vector &MDD) { VertexIDs_vector source_IDs; VertexIDs_vector goal_IDs; MDD.clear(); collect_Endpoints(source_IDs, goal_IDs); graph.calc_SourceGoalShortestPaths(source_IDs, goal_IDs); const sUndirectedGraph::Distances_2d_vector &source_Distances = graph.get_SourceShortestPaths(); const sUndirectedGraph::Distances_2d_vector &goal_Distances = graph.get_GoalShortestPaths(); int N_Robots = m_initial_arrangement.get_RobotCount(); MDD.resize(N_Robots + 1); for (int mdd_robot_id = 1; mdd_robot_id <= N_Robots; ++mdd_robot_id) { MDD[mdd_robot_id].resize(max_makespan + 1); int robot_source_vertex_id = m_initial_arrangement.get_RobotLocation(mdd_robot_id); int robot_sink_vertex_id; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { robot_sink_vertex_id = m_goal_arrangement.get_RobotLocation(mdd_robot_id); break; } case GOAL_TYPE_SPECIFICATION: { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(mdd_robot_id); sASSERT(goal_IDs.size() == 1); robot_sink_vertex_id = *goal_IDs.begin(); break; } default: { break; } } #ifdef sVERBOSE printf("Robot:%d\n", mdd_robot_id); #endif for (int mdd_level = 0; mdd_level <= max_makespan; ++mdd_level) { #ifdef sVERBOSE printf("mdd level %d,%d: ", mdd_level, max_makespan); #endif int N_Vertices = graph.get_VertexCount(); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { if ( source_Distances[robot_source_vertex_id][vertex_id] <= mdd_level && goal_Distances[robot_sink_vertex_id][vertex_id] <= max_makespan - mdd_level) { #ifdef sVERBOSE printf("%d ", vertex_id); #endif MDD[mdd_robot_id][mdd_level].push_back(vertex_id); } } #ifdef sVERBOSE printf("\n"); #endif } #ifdef sVERBOSE printf("\n"); #endif } std::vector<int> distribution; distribution.resize(N_Robots + 1); for (int robot_id = 0; robot_id <= N_Robots; ++robot_id) { distribution[robot_id] = 0; } } /*----------------------------------------------------------------------------*/ void sMultirobotInstance::to_Screen(const sString &indent) const { to_Stream(stdout, indent); } void sMultirobotInstance::to_Screen_multirobot(const sString &indent) const { to_Stream_multirobot(stdout, indent); } void sMultirobotInstance::to_Screen_capacitated_multirobot(const sString &indent) const { to_Stream_capacitated_multirobot(stdout, indent); } void sMultirobotInstance::to_Screen_domainPDDL(const sString &indent) const { to_Stream_domainPDDL(stdout, indent); } void sMultirobotInstance::to_Screen_problemPDDL(const sString &indent) const { to_Stream_problemPDDL(stdout, indent); } void sMultirobotInstance::to_Screen_bgu(const sString &indent, int instance_id) const { to_Stream_bgu(stdout, indent, instance_id); } sResult sMultirobotInstance::to_File(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_OPEN_ERROR; } to_Stream(fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_multirobot(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_OPEN_ERROR; } to_Stream_multirobot(fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_capacitated_multirobot(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_OPEN_ERROR; } to_Stream_capacitated_multirobot(fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_domainPDDL(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_PDDL_OPEN_ERROR; } to_Stream_domainPDDL(fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_problemPDDL(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_PDDL_OPEN_ERROR; } to_Stream_problemPDDL(fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_bgu(const sString &filename, const sString &indent, int instance_id) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_BGU_OPEN_ERROR; } to_Stream_bgu(fw, indent, instance_id); fclose(fw); return sRESULT_SUCCESS; } void sMultirobotInstance::to_Stream(FILE *fw, const sString &indent) const { fprintf(fw, "%sMultirobot instance: [\n", indent.c_str()); fprintf(fw, "%s%sEnvironment:\n", indent.c_str(), sRELOC_INDENT.c_str()); m_environment.to_Stream_vertices(fw, indent + sRELOC_INDENT + sRELOC_INDENT); fprintf(fw, "%s%sInitial arrangement:\n", indent.c_str(), sRELOC_INDENT.c_str()); m_initial_arrangement.to_Stream(fw, indent + sRELOC_INDENT + sRELOC_INDENT); switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { fprintf(fw, "%s%sGoal arrangement:\n", indent.c_str(), sRELOC_INDENT.c_str()); m_goal_arrangement.to_Stream(fw, indent + sRELOC_INDENT + sRELOC_INDENT); break; } case GOAL_TYPE_SPECIFICATION: { fprintf(fw, "%s%sGoal specification:\n", indent.c_str(), sRELOC_INDENT.c_str()); m_goal_specification.to_Stream(fw, indent + sRELOC_INDENT + sRELOC_INDENT); break; } default: { sASSERT(false); break; } } fprintf(fw, "%s]\n", indent.c_str()); } void sMultirobotInstance::to_Stream_multirobot(FILE *fw, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); int N_Vertices; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { N_Vertices = m_initial_arrangement.m_vertex_Occups.size(); break; } case GOAL_TYPE_SPECIFICATION: { N_Vertices = m_goal_specification.m_goal_Compats.size(); break; } default: { sASSERT(false); break; } } for (int i = 0; i < N_Vertices; ++i) { switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { fprintf(fw, "(%d:-1)[%d:%d:%d]", i, m_initial_arrangement.m_vertex_Occups[i], m_goal_arrangement.m_vertex_Occups[i], m_goal_arrangement.m_vertex_Occups[i]); break; } case GOAL_TYPE_SPECIFICATION: { if (m_goal_specification.m_goal_Compats[i].empty()) { fprintf(fw, "(%d:-1)[%d:0:0]", i, m_initial_arrangement.m_vertex_Occups[i]); } else if (m_goal_specification.m_goal_Compats[i].size() == 1) { fprintf(fw, "(%d:-1)[%d:%d:%d]", i, m_initial_arrangement.m_vertex_Occups[i], *m_goal_specification.m_goal_Compats[i].begin(), *m_goal_specification.m_goal_Compats[i].begin()); } else { fprintf(fw, "(%d:-1)[%d:", i, m_initial_arrangement.m_vertex_Occups[i]); m_goal_specification.to_Stream_multirobot(fw, m_goal_specification.m_goal_Compats[i]); fprintf(fw, ":"); m_goal_specification.to_Stream_multirobot(fw, m_goal_specification.m_goal_Compats[i]); fprintf(fw, "]"); } break; } default: { break; } } if (m_environment.m_Vertices[i].m_Conflicts.empty()) { fprintf(fw, "\n"); } else { fprintf(fw, "< "); for (int c = 0; c < m_environment.m_Vertices[i].m_Conflicts.size(); ++c) { fprintf(fw, "%d ", m_environment.m_Vertices[i].m_Conflicts[c]); } fprintf(fw, ">\n"); } } m_environment.to_Stream_multirobot(fw, indent); } void sMultirobotInstance::to_Stream_capacitated_multirobot(FILE *fw, const sString &indent) const { fprintf(fw, "%sV =\n", indent.c_str()); // TODO int N_Vertices; switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { N_Vertices = m_initial_arrangement.m_vertex_Occups.size(); break; } case GOAL_TYPE_SPECIFICATION: { N_Vertices = m_goal_specification.m_goal_Compats.size(); break; } default: { sASSERT(false); break; } } for (int i = 0; i < N_Vertices; ++i) { switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { fprintf(fw, "(%d:-1:%d)[%d:%d:%d]", i, m_environment.m_Vertices[i].m_capacity, m_initial_arrangement.m_vertex_Occups[i], m_goal_arrangement.m_vertex_Occups[i], m_goal_arrangement.m_vertex_Occups[i]); break; } case GOAL_TYPE_SPECIFICATION: { if (m_goal_specification.m_goal_Compats[i].empty()) { fprintf(fw, "(%d:-1:%d)[%d:0:0]", i, m_environment.m_Vertices[i].m_capacity, m_initial_arrangement.m_vertex_Occups[i]); } else if (m_goal_specification.m_goal_Compats[i].size() == 1) { fprintf(fw, "(%d:-1:%d)[%d:%d:%d]", i, m_environment.m_Vertices[i].m_capacity, m_initial_arrangement.m_vertex_Occups[i], *m_goal_specification.m_goal_Compats[i].begin(), *m_goal_specification.m_goal_Compats[i].begin()); } else { fprintf(fw, "(%d:-1:%d)[%d:", i, m_environment.m_Vertices[i].m_capacity, m_initial_arrangement.m_vertex_Occups[i]); m_goal_specification.to_Stream_multirobot(fw, m_goal_specification.m_goal_Compats[i]); fprintf(fw, ":"); m_goal_specification.to_Stream_multirobot(fw, m_goal_specification.m_goal_Compats[i]); fprintf(fw, "]"); } break; } default: { break; } } if (m_environment.m_Vertices[i].m_Conflicts.empty()) { fprintf(fw, "\n"); } else { fprintf(fw, "< "); for (int c = 0; c < m_environment.m_Vertices[i].m_Conflicts.size(); ++c) { fprintf(fw, "%d ", m_environment.m_Vertices[i].m_Conflicts[c]); } fprintf(fw, ">\n"); } } m_environment.to_Stream_capacitated_multirobot(fw, indent); } void sMultirobotInstance::to_Stream_domainPDDL(FILE *fw, const sString &indent) const { fprintf(fw, "%s(define (domain multirobot)\n", indent.c_str()); fprintf(fw, "%s%s(:predicates\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s(adjacent ?u ?v)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s(robot_location ?r ?v)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s(no_robot ?v)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s(:action move\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s:parameters (?r ?u ?v)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s:precondition (and\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s%s(robot_location ?r ?u) (no_robot ?v) (adjacent ?u ?v)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s:effect (and\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s%s(robot_location ?r ?v) (no_robot ?u) (not (no_robot ?v))\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s)\n", indent.c_str()); } void sMultirobotInstance::to_Stream_problemPDDL(FILE *fw, const sString &indent) const { fprintf(fw, "%s(define (problem multirobot_instance)\n", indent.c_str()); fprintf(fw, "%s%s(:domain multirobot)\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s(:objects\n", indent.c_str(), sRELOC_INDENT.c_str()); int N_Vertices = m_environment.get_VertexCount(); for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { fprintf(fw, "%s%s%sv%d\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), vertex_id); } int N_Robots = m_initial_arrangement.get_RobotCount(); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { fprintf(fw, "%s%s%sr%d\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), robot_id); } fprintf(fw, "%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str()); fprintf(fw, "%s%s(:init\n", indent.c_str(), sRELOC_INDENT.c_str()); for (sUndirectedGraph::Edges_list::const_iterator edge = m_environment.m_Edges.begin(); edge != m_environment.m_Edges.end(); ++edge) { fprintf(fw, "%s%s%s(adjacent v%d v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), edge->m_arc_vu.m_target->m_id, edge->m_arc_uv.m_target->m_id); fprintf(fw, "%s%s%s(adjacent v%d v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), edge->m_arc_uv.m_target->m_id, edge->m_arc_vu.m_target->m_id); } for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { fprintf(fw, "%s%s%s(robot_location r%d v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), robot_id, m_initial_arrangement.get_RobotLocation(robot_id)); } for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int robot_id = m_initial_arrangement.get_VertexOccupancy(vertex_id); if (robot_id == sRobotArrangement::VACANT_VERTEX) { fprintf(fw, "%s%s%s(no_robot v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), vertex_id); } } fprintf(fw, "%s%s)\n", indent.c_str(), sRELOC_INDENT.c_str()); switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { fprintf(fw, "%s%s(:goal (and \n", indent.c_str(), sRELOC_INDENT.c_str()); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { fprintf(fw, "%s%s%s(robot_location r%d v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), robot_id, m_goal_arrangement.get_RobotLocation(robot_id)); } for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { int robot_id = m_goal_arrangement.get_VertexOccupancy(vertex_id); if (robot_id == sRobotArrangement::VACANT_VERTEX) { fprintf(fw, "%s%s%s(no_robot v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), vertex_id); } } fprintf(fw, "%s%s))\n", indent.c_str(), sRELOC_INDENT.c_str()); break; } case GOAL_TYPE_SPECIFICATION: { fprintf(fw, "%s%s(:goal (and \n", indent.c_str(), sRELOC_INDENT.c_str()); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { const sRobotGoal::Vertices_set &goal_IDs = m_goal_specification.get_RobotGoal(robot_id); fprintf(fw, "%s%s%s(or ", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str()); for (sRobotGoal::Vertices_set::const_iterator goal_id = goal_IDs.begin(); goal_id != goal_IDs.end(); ++goal_id) { fprintf(fw, "(robot_location r%d v%d) ", robot_id, *goal_id); } fprintf(fw, ")\n"); } for (int vertex_id = 0; vertex_id < N_Vertices; ++vertex_id) { const sRobotGoal::Robots_set &robot_IDs = m_goal_specification.get_GoalCompatibility(vertex_id); if (robot_IDs.empty()) { fprintf(fw, "%s%s%s(no_robot v%d)\n", indent.c_str(), sRELOC_INDENT.c_str(), sRELOC_INDENT.c_str(), vertex_id); } } fprintf(fw, "%s%s))\n", indent.c_str(), sRELOC_INDENT.c_str()); break; } default: { sASSERT(false); break; } } fprintf(fw, "%s)\n", indent.c_str()); } void sMultirobotInstance::to_Stream_bgu(FILE *fw, const sString &indent, int instance_id) const { sASSERT(m_environment.m_Matrix != NULL); fprintf(fw, "%s%d\n", indent.c_str(), instance_id); fprintf(fw, "%sGrid:\n", indent.c_str()); fprintf(fw, "%s%d,%d\n", indent.c_str(), m_environment.m_y_size, m_environment.m_x_size); for (int j = 0; j < m_environment.m_y_size; ++j) { for (int i = 0; i < m_environment.m_x_size; ++i) { if (m_environment.m_Matrix[j * m_environment.m_x_size + i] >= 0) { fprintf(fw, "."); } else { fprintf(fw, "@"); } } fprintf(fw, "\n"); } int N_Robots = m_initial_arrangement.get_RobotCount(); fprintf(fw, "%sAgents:\n", indent.c_str()); fprintf(fw, "%s%d\n", indent.c_str(), N_Robots); switch (m_goal_type) { case GOAL_TYPE_ARRANGEMENT: { for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { fprintf(fw, "%s%d,", indent.c_str(), robot_id - 1); int goal_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); fprintf(fw, "%d,%d,", m_environment.calc_GridRow(goal_vertex_id), m_environment.calc_GridColumn(goal_vertex_id)); int init_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); fprintf(fw, "%d,%d\n", m_environment.calc_GridRow(init_vertex_id), m_environment.calc_GridColumn(init_vertex_id)); } break; } case GOAL_TYPE_SPECIFICATION: { for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { fprintf(fw, "%s%d,", indent.c_str(), robot_id - 1); sASSERT(m_goal_specification.get_RobotGoal(robot_id).size() == 1); int goal_vertex_id = *m_goal_specification.get_RobotGoal(robot_id).begin(); fprintf(fw, "%d,%d,", m_environment.calc_GridRow(goal_vertex_id), m_environment.calc_GridColumn(goal_vertex_id)); int init_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); fprintf(fw, "%d,%d\n", m_environment.calc_GridRow(init_vertex_id), m_environment.calc_GridColumn(init_vertex_id)); } break; } default: { sASSERT(false); break; } } } sResult sMultirobotInstance::from_File_bgu(const sString &filename) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sMULTIROBOT_BGU_OPEN_ERROR; } result = from_Stream_bgu(fr); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_Stream_bgu(FILE *fr) { sResult result; int N_Robots; if (sFAILED(result = m_environment.from_Stream_bgu(fr))) { return result; } fscanf(fr, "Agents:\n"); fscanf(fr, "%d\n", &N_Robots); m_goal_type = GOAL_TYPE_ARRANGEMENT; m_initial_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_specification = sRobotGoal(m_environment.get_VertexCount(), N_Robots); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int r_id; fscanf(fr, "%d,", &r_id); int goal_row, goal_column; fscanf(fr, "%d,%d,", &goal_row, &goal_column); int goal_vertex_id = m_environment.calc_GridVertexID(goal_row, goal_column); int init_row, init_column; fscanf(fr, "%d,%d\n", &init_row, &init_column); int init_vertex_id = m_environment.calc_GridVertexID(init_row, init_column); m_initial_arrangement.place_Robot(robot_id, init_vertex_id); m_goal_arrangement.place_Robot(robot_id, goal_vertex_id); m_goal_specification.charge_Robot(robot_id, goal_vertex_id); } return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_File_usc(const sString &map_filename, const sString &agents_filename) { sResult result; FILE *fr_map, *fr_agents; if ((fr_map = fopen(map_filename.c_str(), "r")) == NULL) { return sMULTIROBOT_USC_MAP_OPEN_ERROR; } if ((fr_agents = fopen(agents_filename.c_str(), "r")) == NULL) { return sMULTIROBOT_USC_AGNT_OPEN_ERROR; } result = from_Stream_usc(fr_map, fr_agents); if (sFAILED(result)) { fclose(fr_map); fclose(fr_agents); return result; } fclose(fr_map); fclose(fr_agents); return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_Stream_usc(FILE *fr_map, FILE *fr_agents) { sResult result; int N_Robots; if (sFAILED(result = m_environment.from_Stream_usc(fr_map))) { return result; } fscanf(fr_agents, "%d\n", &N_Robots); m_goal_type = GOAL_TYPE_ARRANGEMENT; m_initial_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_specification = sRobotGoal(m_environment.get_VertexCount(), N_Robots); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int goal_row, goal_column; fscanf(fr_agents, "%d,%d,", &goal_row, &goal_column); int goal_vertex_id = m_environment.calc_GridVertexID(goal_row, goal_column); int init_row, init_column; fscanf(fr_agents, "%d,%d,", &init_row, &init_column); int init_vertex_id = m_environment.calc_GridVertexID(init_row, init_column); float delay_ignore; fscanf(fr_agents, "%f\n", &delay_ignore); m_initial_arrangement.place_Robot(robot_id, init_vertex_id); m_goal_arrangement.place_Robot(robot_id, goal_vertex_id); m_goal_specification.charge_Robot(robot_id, goal_vertex_id); } return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_File_lusc(const sString &map_filename, const sString &agents_filename) { sResult result; FILE *fr_map, *fr_agents; if ((fr_map = fopen(map_filename.c_str(), "r")) == NULL) { return sMULTIROBOT_USC_MAP_OPEN_ERROR; } if ((fr_agents = fopen(agents_filename.c_str(), "r")) == NULL) { return sMULTIROBOT_USC_AGNT_OPEN_ERROR; } result = from_Stream_lusc(fr_map, fr_agents); if (sFAILED(result)) { fclose(fr_map); fclose(fr_agents); return result; } fclose(fr_map); fclose(fr_agents); return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_Stream_lusc(FILE *fr_map, FILE *fr_agents) { sResult result; int N_Robots; if (sFAILED(result = m_environment.from_Stream_lusc(fr_map))) { return result; } fscanf(fr_agents, "%d\n", &N_Robots); m_goal_type = GOAL_TYPE_ARRANGEMENT; m_initial_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_specification = sRobotGoal(m_environment.get_VertexCount(), N_Robots); m_initial_arrangement.m_robot_Sizes.resize(N_Robots + 1); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int init_row, init_column; fscanf(fr_agents, "%d,%d,", &init_row, &init_column); int init_vertex_id = m_environment.calc_GridVertexID(init_row, init_column); int goal_row, goal_column; fscanf(fr_agents, "%d,%d,", &goal_row, &goal_column); int goal_vertex_id = m_environment.calc_GridVertexID(goal_row, goal_column); int robot_size; fscanf(fr_agents, "%d\n", &robot_size); m_initial_arrangement.m_robot_Sizes[robot_id] = robot_size; m_initial_arrangement.place_Robot(robot_id, init_vertex_id); m_goal_arrangement.place_Robot(robot_id, goal_vertex_id); m_goal_specification.charge_Robot(robot_id, goal_vertex_id); } return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_File_dibox(const sString &filename) { sResult result; FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_DIBOX_OPEN_ERROR; } result = to_Stream_dibox(fw); if (sFAILED(result)) { fclose(fw); return result; } fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotInstance::to_Stream_dibox(FILE *fw) { int N_Robots = m_initial_arrangement.get_RobotCount(); m_environment.to_Stream_dibox(fw); fprintf(fw, "LIST OF AGENTS:%d\n", N_Robots); m_goal_type = GOAL_TYPE_ARRANGEMENT; for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int init_vertex_id, goal_vertex_id; init_vertex_id = m_initial_arrangement.get_RobotLocation(robot_id); goal_vertex_id = m_goal_arrangement.get_RobotLocation(robot_id); fprintf(fw, "(q%d,%d,%d)\n", robot_id, init_vertex_id + 1, goal_vertex_id + 1); } return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_File_dibox(const sString &filename) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sMULTIROBOT_DIBOX_OPEN_ERROR; } result = from_Stream_dibox(fr); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sMultirobotInstance::from_Stream_dibox(FILE *fr) { sResult result; int N_Robots; if (sFAILED(result = m_environment.from_Stream_dibox(fr))) { return result; } fscanf(fr, "LIST OF AGENTS:%d\n", &N_Robots); m_goal_type = GOAL_TYPE_ARRANGEMENT; m_initial_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_arrangement = sRobotArrangement(m_environment.get_VertexCount(), N_Robots); m_goal_specification = sRobotGoal(m_environment.get_VertexCount(), N_Robots); for (int robot_id = 1; robot_id <= N_Robots; ++robot_id) { int init_vertex_id, goal_vertex_id; while(fgetc(fr) != ','); fscanf(fr, "%d,%d)\n", &init_vertex_id, &goal_vertex_id); m_initial_arrangement.place_Robot(robot_id, init_vertex_id - 1); m_goal_arrangement.place_Robot(robot_id, goal_vertex_id - 1); m_goal_specification.charge_Robot(robot_id, goal_vertex_id - 1); } return sRESULT_SUCCESS; } /*----------------------------------------------------------------------------*/ // sMultirobotSolution const sMultirobotSolution::Move sMultirobotSolution::UNDEFINED_MOVE = sMultirobotSolution::Move(0, 0, 0); /*----------------------------------------------------------------------------*/ sMultirobotSolution::Move::Move(int robot_id, int src_vrtx_id, int dest_vrtx_id) : m_robot_id(robot_id) , m_src_vrtx_id(src_vrtx_id) , m_dest_vrtx_id(dest_vrtx_id) , m_crt_time(0) { // nothing } sMultirobotSolution::Move::Move(int robot_id, int src_vrtx_id, int dest_vrtx_id, int crt_time) : m_robot_id(robot_id) , m_src_vrtx_id(src_vrtx_id) , m_dest_vrtx_id(dest_vrtx_id) , m_crt_time(crt_time) { // nothing } bool sMultirobotSolution::Move::is_Undefined(void) const { return (m_robot_id <= 0); } bool sMultirobotSolution::Move::is_Dependent(const Move &move) const { return ( m_src_vrtx_id == move.m_src_vrtx_id || m_src_vrtx_id == move.m_dest_vrtx_id || m_dest_vrtx_id == move.m_src_vrtx_id || m_dest_vrtx_id == move.m_dest_vrtx_id); } /*----------------------------------------------------------------------------*/ sMultirobotSolution::Step::Step(int time) : m_time(time) { // nothing } /*----------------------------------------------------------------------------*/ sMultirobotSolution::sMultirobotSolution() : m_Moves_cnt(0) , m_optimality_ratio(-1.0) { // nothing } sMultirobotSolution::sMultirobotSolution(int start_step, const sMultirobotSolution &sub_solution) : m_Moves_cnt(0) , m_optimality_ratio(-1.0) { int N_Steps = sub_solution.m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = sub_solution.m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { add_Move(i + start_step, *move); } } } sMultirobotSolution::sMultirobotSolution(const sMultirobotSolution &sub_solution_1, const sMultirobotSolution sub_solution_2) : m_Moves_cnt(0) , m_optimality_ratio(-1.0) { int N_Steps_1 = sub_solution_1.m_Steps.size(); for (int i = 0; i < N_Steps_1; ++i) { const Step &step = sub_solution_1.m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { add_Move(i, *move); } } int N_Steps_2 = sub_solution_2.m_Steps.size(); for (int i = 0; i < N_Steps_2; ++i) { const Step &step = sub_solution_2.m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { add_Move(i, *move); } } } bool sMultirobotSolution::is_Null(void) const { return (m_Steps.empty()); } int sMultirobotSolution::get_MoveCount(void) const { return m_Moves_cnt; } int sMultirobotSolution::get_StepCount(void) const { return m_Steps.size(); } void sMultirobotSolution::add_Move(int time, const Move &move) { int push_cnt = time - m_Steps.size(); while (push_cnt-- >= 0) { m_Steps.push_back(Step(m_Steps.size())); } m_Steps[time].m_Moves.push_back(move); ++m_Moves_cnt; } int sMultirobotSolution::calc_EmptySteps(void) const { int N_empty_Steps = 0; int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = m_Steps[i]; if (step.m_Moves.empty()) { ++N_empty_Steps; } } return N_empty_Steps; } void sMultirobotSolution::remove_EmptySteps(void) { int time = 0; Steps_vector clean_Steps; int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { Step &step = m_Steps[i]; if (!step.m_Moves.empty()) { step.m_time = time++; clean_Steps.push_back(step); } } m_Steps = clean_Steps; } sMultirobotSolution sMultirobotSolution::extract_Subsolution(int start_step, int final_step) const { sMultirobotSolution subsolution; for (int i = start_step; i <= final_step; ++i) { const Step &step = m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { subsolution.add_Move(i, *move); } } return subsolution; } void sMultirobotSolution::execute_Solution(const sRobotArrangement &initial_arrangement, sRobotArrangement &final_arrangement, int N_Steps) const { final_arrangement = initial_arrangement; if (N_Steps == N_STEPS_UNDEFINED) { for (sMultirobotSolution::Steps_vector::const_iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::const_iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { final_arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } } } else { for (sMultirobotSolution::Steps_vector::const_iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::const_iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { final_arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } if (--N_Steps <= 0) { return; } } } } void sMultirobotSolution::execute_Step(const sRobotArrangement &current_arrangement, sRobotArrangement &final_arrangement, int step_idx) const { final_arrangement = current_arrangement; const Step &step = m_Steps[step_idx]; for (sMultirobotSolution::Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { final_arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } } void sMultirobotSolution::execute_Solution(sRobotArrangement &arrangement, int N_Steps) const { if (N_Steps == N_STEPS_UNDEFINED) { for (sMultirobotSolution::Steps_vector::const_iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::const_iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } } } else { for (sMultirobotSolution::Steps_vector::const_iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::const_iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } if (--N_Steps <= 0) { return; } } } } void sMultirobotSolution::execute_Step(sRobotArrangement &arrangement, int step_idx) const { const Step &step = m_Steps[step_idx]; for (sMultirobotSolution::Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); } } bool sMultirobotSolution::verify_Step(const sRobotArrangement &arrangement, int step_idx) const { const Step &step = m_Steps[step_idx]; for (sMultirobotSolution::Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { if (!arrangement.verify_Move(move->m_robot_id, move->m_dest_vrtx_id)) { return false; } } return true; } bool sMultirobotSolution::check_Step(const sRobotArrangement &arrangement, int step_idx) const { const Step &step = m_Steps[step_idx]; for (sMultirobotSolution::Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { if (!arrangement.check_Move(move->m_robot_id, move->m_dest_vrtx_id)) { return false; } } return true; } void sMultirobotSolution::filter_Solution(const sRobotArrangement &initial_arrangement, const sRobotGoal &goal_arrangement, sMultirobotSolution &filter_solution) const { sRobotArrangement robot_arrangement = initial_arrangement; for (sMultirobotSolution::Steps_vector::const_iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::const_iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { robot_arrangement.move_Robot(move->m_robot_id, move->m_dest_vrtx_id); filter_solution.add_Move(step->m_time, *move); if (goal_arrangement.is_Satisfied(robot_arrangement)) { break; } } } } int sMultirobotSolution::calc_CriticalTimes(void) { int max_crt_time = 0; for (sMultirobotSolution::Steps_vector::iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { move->m_crt_time = 0; for (sMultirobotSolution::Steps_vector::const_iterator prev_step = m_Steps.begin(); prev_step != step; ++prev_step) { for (sMultirobotSolution::Moves_list::const_iterator prev_move = prev_step->m_Moves.begin(); prev_move != prev_step->m_Moves.end(); ++prev_move) { if (move->is_Dependent(*prev_move)) { if (prev_move->m_crt_time >= move->m_crt_time) { move->m_crt_time = prev_move->m_crt_time + 1; max_crt_time = sMAX(max_crt_time, move->m_crt_time); } } } } for (sMultirobotSolution::Moves_list::const_iterator prev_move = step->m_Moves.begin(); prev_move != move; ++prev_move) { if (move->is_Dependent(*prev_move)) { if (prev_move->m_crt_time >= move->m_crt_time) { move->m_crt_time = prev_move->m_crt_time + 1; max_crt_time = sMAX(max_crt_time, move->m_crt_time); } } } } } return max_crt_time; } void sMultirobotSolution::criticalize_Solution(sMultirobotSolution &critical_solution) { calc_CriticalTimes(); for (sMultirobotSolution::Steps_vector::iterator step = m_Steps.begin(); step != m_Steps.end(); ++step) { for (sMultirobotSolution::Moves_list::iterator move = step->m_Moves.begin(); move != step->m_Moves.end(); ++move) { critical_solution.add_Move(move->m_crt_time, *move); } } } /*----------------------------------------------------------------------------*/ void sMultirobotSolution::to_Screen(const sString &indent) const { to_Stream(stdout, indent); } void sMultirobotSolution::to_Stream(FILE *fw, const sString &indent) const { fprintf(fw, "%sMulirobot solution: (|moves| = %d, paralellism = %.3f) [\n", indent.c_str(), m_Moves_cnt, (double)m_Moves_cnt / m_Steps.size()); int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = m_Steps[i]; fprintf(fw, "%s%sStep %d: ", indent.c_str(), sRELOC_INDENT.c_str(), step.m_time); for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { fprintf(fw, "%d#%d->%d ", move->m_robot_id, move->m_src_vrtx_id, move->m_dest_vrtx_id); } fprintf(fw, "\n"); } fprintf(fw, "%s]\n", indent.c_str()); } void sMultirobotSolution::to_Screen(const sUndirectedGraph &grid, const sString &indent) const { to_Stream(grid, stdout, indent); } void sMultirobotSolution::to_Stream(const sUndirectedGraph &grid, FILE *fw, const sString &indent) const { fprintf(fw, "%sMulirobot solution: (|moves| = %d, paralellism = %.3f) [\n", indent.c_str(), m_Moves_cnt, (double)m_Moves_cnt / m_Steps.size()); int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = m_Steps[i]; fprintf(fw, "%s%sStep %d: ", indent.c_str(), sRELOC_INDENT.c_str(), step.m_time); for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { int src_row = grid.calc_GridRow(move->m_src_vrtx_id); int src_column = grid.calc_GridColumn(move->m_src_vrtx_id); int dest_row = grid.calc_GridRow(move->m_dest_vrtx_id); int dest_column = grid.calc_GridColumn(move->m_dest_vrtx_id); fprintf(fw, "%d#%d[%d,%d] --> %d[%d,%d] ", move->m_robot_id, move->m_src_vrtx_id, src_row, src_column, move->m_dest_vrtx_id, dest_row, dest_column); } fprintf(fw, "\n"); } fprintf(fw, "%s]\n", indent.c_str()); } sResult sMultirobotSolution::to_File(const sUndirectedGraph &grid, const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_OPEN_ERROR; } to_Stream(grid, fw, indent); fclose(fw); return sRESULT_SUCCESS; } sResult sMultirobotSolution::to_File_multirobot(const sString &filename, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_SOLUTION_OPEN_ERROR; } to_Stream_multirobot(fw, indent); fclose(fw); return sRESULT_SUCCESS; } void sMultirobotSolution::to_Stream_multirobot(FILE *fw, const sString &indent) const { fprintf(fw, "%sFine solution\n", indent.c_str()); fprintf(fw, "%sLength:%d\n", indent.c_str(), get_MoveCount()); int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { fprintf(fw, "%s%d # %d ---> %d (%d)\n", indent.c_str(), move->m_robot_id, move->m_src_vrtx_id, move->m_dest_vrtx_id, i); } } } sResult sMultirobotSolution::to_File_graphrec(const sString &filename, const sMultirobotInstance &instance, const sString &indent) const { FILE *fw; if ((fw = fopen(filename.c_str(), "w")) == NULL) { return sMULTIROBOT_SOLUTION_OPEN_ERROR; } to_Stream_graphrec(fw, instance, indent); fclose(fw); return sRESULT_SUCCESS; } void sMultirobotSolution::to_Stream_graphrec(FILE *fw, const sMultirobotInstance &instance, const sString &indent) const { fprintf(fw, "id:-\n"); instance.to_Stream_multirobot(fw, indent); fprintf(fw, "Solution\n"); int N_Steps = m_Steps.size(); for (int i = 0; i < N_Steps; ++i) { const Step &step = m_Steps[i]; for (Moves_list::const_iterator move = step.m_Moves.begin(); move != step.m_Moves.end(); ++move) { fprintf(fw, "%d ---> %d (%d)\n", move->m_src_vrtx_id, move->m_dest_vrtx_id, i); } } fprintf(fw, "%sLength:%d\n", indent.c_str(), get_MoveCount()); } sResult sMultirobotSolution::from_File_multirobot(const sString &filename) { sResult result; FILE *fr; if ((fr = fopen(filename.c_str(), "r")) == NULL) { return sMULTIROBOT_SOLUTION_OPEN_ERROR; } result = from_Stream_multirobot(fr); if (sFAILED(result)) { fclose(fr); return result; } fclose(fr); return sRESULT_SUCCESS; } sResult sMultirobotSolution::from_Stream_multirobot(FILE *fr) { int N_Moves; int c = fgetc(fr); while (c != 'F') { if (c != '\n') { while(fgetc(fr) != '\n'); } c = fgetc(fr); } fscanf(fr, "ine solution\nLength:%d\n", &N_Moves); #ifdef sDEBUG printf("Length:%d\n", N_Moves); #endif for (int i = 0; i < N_Moves; ++i) { int robot_id, src_vertex_id, dest_vertex_id, step; fscanf(fr, "%d # %d ---> %d (%d)\n", &robot_id, &src_vertex_id, &dest_vertex_id, &step); #ifdef sDEBUG printf("%d # %d ---> %d (%d)\n", robot_id, src_vertex_id, dest_vertex_id, step); #endif add_Move(step, Move(robot_id, src_vertex_id, dest_vertex_id)); } return sRESULT_SUCCESS; } /*----------------------------------------------------------------------------*/ // sMultirobotFlowModel sMultirobotFlowModel::sMultirobotFlowModel(const sMultirobotInstance &instance) : m_instance(instance) { // nothing } void sMultirobotFlowModel::build_Network(int N_steps) { for (int step = 0; step < N_steps; ++step) { sString step_label = sInt_32_to_String(step); for (sUndirectedGraph::Vertices_vector::const_iterator vertex = m_instance.m_environment.m_Vertices.begin(); vertex != m_instance.m_environment.m_Vertices.end(); ++vertex) { sString vertex_label = sInt_32_to_String(vertex->m_id); m_flow_network.add_Vertex(vertex_label + "_" + step_label); } } for (int step = 0; step < N_steps - 1; ++step) { sString step_label = sInt_32_to_String(step); sString next_step_label = sInt_32_to_String(step + 1); for (sUndirectedGraph::Vertices_vector::const_iterator vertex = m_instance.m_environment.m_Vertices.begin(); vertex != m_instance.m_environment.m_Vertices.end(); ++vertex) { sString vertex_label = sInt_32_to_String(vertex->m_id); for (sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); neighbor != vertex->m_Neighbors.end(); ++neighbor) { sString next_vertex_label = sInt_32_to_String((*neighbor)->m_target->m_id); m_flow_network.add_Arc(vertex_label + "_" + step_label, next_vertex_label + "_" + next_step_label, 1, 0); } m_flow_network.add_Arc(vertex_label + "_" + step_label, vertex_label + "_" + next_step_label, 1, 0); } } m_network_source = m_flow_network.add_Vertex("source"); m_network_sink = m_flow_network.add_Vertex("sink"); sString first_step_label = sInt_32_to_String(0); sString last_step_label = sInt_32_to_String(N_steps - 1); int N_robots = m_instance.m_initial_arrangement.get_RobotCount(); sASSERT(N_robots == m_instance.m_goal_arrangement.get_RobotCount()); for (int r = 1; r <= N_robots; ++r) { sString init_vertex_label = sInt_32_to_String(m_instance.m_initial_arrangement.get_RobotLocation(r)); sString goal_vertex_label = sInt_32_to_String(m_instance.m_goal_arrangement.get_RobotLocation(r)); m_flow_network.add_Arc("source", init_vertex_label + "_" + first_step_label, 1, 0); m_flow_network.add_Arc(goal_vertex_label + "_" + last_step_label, "sink", 1, 0); } } void sMultirobotFlowModel::build_Network(const Robots_vector &robot_selection, int N_steps) { for (int step = 0; step < N_steps; ++step) { sString step_label = sInt_32_to_String(step); for (sUndirectedGraph::Vertices_vector::const_iterator vertex = m_instance.m_environment.m_Vertices.begin(); vertex != m_instance.m_environment.m_Vertices.end(); ++vertex) { sString vertex_label = sInt_32_to_String(vertex->m_id); m_flow_network.add_Vertex(vertex_label + "_" + step_label); } } for (int step = 0; step < N_steps - 1; ++step) { sString step_label = sInt_32_to_String(step); sString next_step_label = sInt_32_to_String(step + 1); for (sUndirectedGraph::Vertices_vector::const_iterator vertex = m_instance.m_environment.m_Vertices.begin(); vertex != m_instance.m_environment.m_Vertices.end(); ++vertex) { sString vertex_label = sInt_32_to_String(vertex->m_id); for (sVertex::Neighbors_list::const_iterator neighbor = vertex->m_Neighbors.begin(); neighbor != vertex->m_Neighbors.end(); ++neighbor) { sString next_vertex_label = sInt_32_to_String((*neighbor)->m_target->m_id); m_flow_network.add_Arc(vertex_label + "_" + step_label, next_vertex_label + "_" + next_step_label, 1, 0); } m_flow_network.add_Arc(vertex_label + "_" + step_label, vertex_label + "_" + next_step_label, 1, 0); } } m_network_source = m_flow_network.add_Vertex("source"); m_network_sink = m_flow_network.add_Vertex("sink"); sString first_step_label = sInt_32_to_String(0); sString last_step_label = sInt_32_to_String(N_steps - 1); #ifdef sDEBUG { int N_robots = m_instance.m_initial_arrangement.get_RobotCount(); sASSERT(N_robots == m_instance.m_goal_arrangement.get_RobotCount()); } #endif for (Robots_vector::const_iterator r = robot_selection.begin(); r != robot_selection.end(); ++r) { sString init_vertex_label = sInt_32_to_String(m_instance.m_initial_arrangement.get_RobotLocation(*r)); sString goal_vertex_label = sInt_32_to_String(m_instance.m_goal_arrangement.get_RobotLocation(*r)); m_flow_network.add_Arc("source", init_vertex_label + "_" + first_step_label, 1, 0); m_flow_network.add_Arc(goal_vertex_label + "_" + last_step_label, "sink", 1, 0); } } void sMultirobotFlowModel::destroy_Network(void) { m_flow_network.clean_Graph(); } int sMultirobotFlowModel::compute_Relocation(void) { sGoldberg goldberg; return goldberg.compute_Flow(&m_flow_network, &m_network_source->second, &m_network_sink->second); } int sMultirobotFlowModel::compute_Distance(void) { int N_robots = m_instance.m_initial_arrangement.get_RobotCount(); sASSERT(N_robots == m_instance.m_goal_arrangement.get_RobotCount()); int N_steps = 1; while (true) { destroy_Network(); build_Network(N_steps); int relocation = compute_Relocation(); if (relocation == N_robots) { return N_steps; } ++N_steps; } return -1; } int sMultirobotFlowModel::compute_Distance(const Robots_vector &robot_selection) { int N_robots = robot_selection.size(); int N_steps = 1; while (true) { destroy_Network(); build_Network(robot_selection, N_steps); int relocation = compute_Relocation(); if (relocation == N_robots) { return N_steps; } ++N_steps; } return -1; } int sMultirobotFlowModel::compute_Distance(int *N_tries) { int N_robots = m_instance.m_initial_arrangement.get_RobotCount(); sASSERT(N_robots == m_instance.m_goal_arrangement.get_RobotCount()); int max_N_steps = 1; for (int N_r = 1; N_r <= N_robots; ++N_r) { for (int t = 0; t < N_tries[N_r-1]; ++t) { Robots_vector robot_selection; for (int r = 1; r <= N_robots; ++r) { robot_selection.push_back(r); } int selection_size = N_robots; while (selection_size > N_r) { int rnd_r = rand() % selection_size; robot_selection[rnd_r] = robot_selection[selection_size - 1]; --selection_size; } robot_selection.resize(N_r); #ifdef sVERBOSE for (Robots_vector::const_iterator sr = robot_selection.begin(); sr != robot_selection.end(); ++sr) { printf("%d,", *sr); } printf("\n"); #endif int N_steps = 1; while (true) { destroy_Network(); build_Network(robot_selection, N_steps); int relocation = compute_Relocation(); if (relocation == N_r) { break; } ++N_steps; } if (N_steps > max_N_steps) { max_N_steps = N_steps; } printf("----> %d\n", N_steps); } } return max_N_steps; } /*----------------------------------------------------------------------------*/ } // namespace sReloc
[ "pavel.surynek@seznam.cz" ]
pavel.surynek@seznam.cz
46039f1e63bd23c4642d7290ff5d4c16a1c7530d
867a94c4b137da3f08014854cd68cec2ca42ab78
/Trees/BinaryTreeZigzagLeverorderTraversal.cpp
439f200bad8b693eb8a86eec62baedc204df3e05
[]
no_license
sakshistar/LeetcodeSolutions
9391bdf6ebd7b4c86a75358c51f43374423a618e
13ff8e61caf6c0bcff32a964c81060e1c28497a5
refs/heads/master
2022-12-29T20:13:28.083884
2020-10-23T13:31:01
2020-10-23T13:31:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,184
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ class Solution { public: vector<vector<int>> zigzagLevelOrder(TreeNode* root) { vector<vector<int>> ans; if(root==NULL) return ans; queue<TreeNode*> q; q.push(root); bool left=true; while(!q.empty()){ int n=q.size(); vector<int> temp; for(int i=0;i<n;i++){ TreeNode* f=q.front(); q.pop(); temp.push_back(f->val); if(f->left) q.push(f->left); if(f->right) q.push(f->right); } if(left){ ans.push_back(temp); left=false; }else{ reverse(temp.begin(),temp.end()); ans.push_back(temp); left=true; } } return ans; } };
[ "nishantc.co.17@nsit.net.in" ]
nishantc.co.17@nsit.net.in
8784b26433eac7d7d5abb32eb8a88d9e19537e38
38b9daafe39f937b39eefc30501939fd47f7e668
/tutorials/2WayCouplingOceanWave3D/submergedBarResults180628-Eta/27/alpha.water
e7ea40ce25e80939f6be585e4e593be174c66457
[]
no_license
rubynuaa/2-way-coupling
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
a820b57dd2cac1170b937f8411bc861392d8fbaa
refs/heads/master
2020-04-08T18:49:53.047796
2018-08-29T14:22:18
2018-08-29T14:22:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
131,793
water
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "27"; object alpha.water; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 22680 ( 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999994 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999988 0.99992 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999999 0.999998 0.999996 0.999995 0.999994 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999997 0.999991 0.999978 0.999955 0.999923 0.999887 0.999861 0.999849 0.999881 0.99994 0.999988 0.999999 0.999999 0.999999 0.999998 0.999997 0.999997 0.999998 0.999999 0.999999 1 0.999999 0.999999 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999997 0.999994 0.999978 0.999927 0.999873 0.999875 0.999892 0.998713 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999996 0.999992 0.999986 0.999981 0.999978 0.999984 0.999988 0.999984 0.99994 0.999831 0.999565 0.998998 0.997935 0.996186 0.99361 0.990411 0.987212 0.985723 0.987003 0.9901 0.994292 0.99833 0.999973 0.999973 0.999972 0.999973 0.999975 0.999981 0.999988 0.999995 0.999997 0.999997 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999991 0.999977 0.999944 0.999872 0.999723 0.99944 0.998937 0.998097 0.996753 0.994698 0.991684 0.987552 0.982426 0.976824 0.971523 0.967283 0.964443 0.96274 0.961897 0.961687 0.962252 0.963755 0.966582 0.970972 0.977341 0.985175 0.992508 0.997014 0.999034 0.999965 0.999991 0.999991 0.999989 0.999987 0.999985 0.999984 0.999984 0.999985 0.999987 0.99999 0.999993 0.999995 0.999996 0.999996 0.999997 0.999998 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999994 0.999987 0.999973 0.999948 0.99991 0.999857 0.999742 0.999438 0.998793 0.998103 0.997594 0.997474 0.989287 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999985 0.99992 0.99965 0.998729 0.99612 0.989827 0.976232 0.949408 0.899414 0.835275 0.773471 0.715205 0.662215 0.614515 0.572283 0.535497 0.504094 0.478335 0.458951 0.446721 0.442158 0.447246 0.462516 0.485924 0.515715 0.553282 0.597077 0.647585 0.70611 0.765659 0.825645 0.867819 0.897442 0.926305 0.954915 0.980111 0.996251 0.999866 0.999897 0.999933 0.999968 0.999988 0.999992 0.999995 0.999998 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999996 0.999989 0.999968 0.999915 0.999783 0.999464 0.998726 0.99706 0.993343 0.985282 0.969298 0.941232 0.897169 0.835027 0.75849 0.6847 0.619469 0.566037 0.526127 0.499605 0.485055 0.479387 0.481925 0.490738 0.505855 0.526914 0.553647 0.585109 0.619468 0.655385 0.691501 0.726173 0.757899 0.785968 0.813254 0.839211 0.8636 0.885462 0.905154 0.923534 0.940899 0.957205 0.97199 0.984535 0.993955 0.99914 0.999844 0.999869 0.999902 0.999938 0.999969 0.999986 0.99999 0.999994 0.999998 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999995 0.999987 0.999969 0.999933 0.999858 0.999713 0.999445 0.998974 0.99821 0.99693 0.994455 0.989357 0.980291 0.968482 0.952833 0.921637 0.779393 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999968 0.999661 0.997121 0.982767 0.921478 0.784752 0.644059 0.515366 0.399164 0.293133 0.199083 0.128568 0.0886846 0.0712337 0.0583105 0.0484663 0.0398997 0.0326121 0.0265652 0.0215317 0.0173766 0.0139201 0.0108414 0.00781486 0.00470668 0.00218576 0.00114543 0.00182007 0.00316569 0.00543392 0.00926173 0.015965 0.0277906 0.0476402 0.0839703 0.14796 0.237362 0.340647 0.451433 0.573223 0.697147 0.812133 0.883888 0.939903 0.980393 0.999222 0.999778 0.999879 0.999956 0.999979 0.999988 0.999996 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999992 0.999978 0.999938 0.999824 0.999509 0.99865 0.996317 0.989663 0.970957 0.924357 0.825535 0.679803 0.535044 0.403864 0.29438 0.211956 0.157237 0.117528 0.0884471 0.0681512 0.0550278 0.0473704 0.0439151 0.043321 0.0455989 0.0497928 0.0553131 0.0620082 0.068905 0.0755367 0.0813839 0.0873447 0.0960088 0.110822 0.131307 0.155856 0.187973 0.228555 0.271754 0.314706 0.357799 0.402991 0.451809 0.505192 0.563344 0.626115 0.692832 0.760317 0.821385 0.87207 0.918557 0.957768 0.985758 0.998998 0.999742 0.999855 0.999945 0.999978 0.999989 0.999996 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999996 0.999988 0.999969 0.999922 0.99981 0.999554 0.998992 0.997771 0.995171 0.989714 0.978617 0.957883 0.920804 0.855279 0.753459 0.644301 0.543643 0.443138 0.333505 0.211303 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999954 0.998984 0.985492 0.874565 0.652748 0.437792 0.243902 0.104997 0.0615347 0.0398402 0.0216215 0.00847249 0.000986714 0.000167922 0.000100363 5.99301e-05 4.60539e-05 3.21256e-05 2.21492e-05 1.49294e-05 9.87419e-06 6.43159e-06 4.04389e-06 2.4166e-06 1.35061e-06 6.81296e-07 3.6072e-07 2.5951e-07 3.9596e-07 1.40116e-06 3.81468e-06 1.07494e-05 2.48469e-05 5.55918e-05 0.000113668 0.000232038 0.000428046 0.000818086 0.00157741 0.00309977 0.00641908 0.0132376 0.0283222 0.0605148 0.129743 0.259647 0.418306 0.587079 0.755694 0.871058 0.944852 0.989427 0.999553 0.999764 0.999915 0.999965 0.999982 0.999994 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999996 0.999988 0.999967 0.999904 0.999718 0.999163 0.997455 0.991762 0.971536 0.907787 0.751255 0.548435 0.354323 0.203731 0.11568 0.0582656 0.0233063 0.00570503 0.000264264 0.000136184 9.64337e-05 6.90153e-05 9.76267e-05 0.000133333 0.000159154 0.000178676 0.000201885 0.000227261 0.00026232 0.000332165 0.000444106 0.00065493 0.0010227 0.00159219 0.00234541 0.00313956 0.0038121 0.00457084 0.00549262 0.00670194 0.00836197 0.0104564 0.0130134 0.0162082 0.0204257 0.0262323 0.0344331 0.0461618 0.0633399 0.0893469 0.129733 0.192472 0.279213 0.383581 0.503367 0.632904 0.761209 0.861168 0.935884 0.985254 0.99953 0.999768 0.999926 0.999972 0.999989 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999992 0.999978 0.99994 0.999842 0.999591 0.998953 0.997294 0.99277 0.980173 0.948183 0.877696 0.752445 0.610848 0.472828 0.344849 0.234222 0.156207 0.102232 0.0620382 0.0314664 0.00921213 0.0018561 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999992 0.999625 0.988207 0.839583 0.542661 0.262964 0.0794131 0.0388678 0.0119771 0.000450401 0.00020585 0.000124961 7.8579e-05 4.0798e-05 1.73574e-05 7.93054e-06 5.10556e-06 2.88119e-06 1.54754e-06 1.1341e-06 7.23713e-07 4.53465e-07 2.75748e-07 1.63499e-07 9.47555e-08 5.22407e-08 2.67662e-08 1.47809e-08 7.6516e-09 3.1127e-09 1.75764e-09 3.00649e-09 1.2905e-08 3.40465e-08 1.05615e-07 2.40293e-07 6.03774e-07 1.23423e-06 2.74607e-06 5.45245e-06 1.09757e-05 2.36327e-05 4.72101e-05 0.000102258 0.000205825 0.000442452 0.000966537 0.00223844 0.00568204 0.0149618 0.0393636 0.102595 0.248427 0.443075 0.649174 0.827219 0.924664 0.984245 0.999354 0.999684 0.999891 0.999956 0.99998 0.999994 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999993 0.999981 0.999949 0.999857 0.999584 0.998735 0.995846 0.984525 0.939815 0.793706 0.552241 0.315345 0.153145 0.0633144 0.0147449 0.000374409 0.000183598 8.66519e-05 3.72624e-05 1.53785e-05 6.67687e-06 6.09662e-06 6.72199e-06 7.0741e-06 7.28117e-06 7.48404e-06 7.71188e-06 7.94035e-06 8.24663e-06 8.76212e-06 9.45118e-06 1.07886e-05 1.18763e-05 1.28018e-05 1.60505e-05 2.61709e-05 4.34508e-05 0.00010232 0.000194973 0.000221008 0.000232525 0.000259927 0.000309905 0.000375688 0.000455649 0.000554305 0.000683853 0.000860226 0.00110809 0.00145479 0.00194849 0.00269782 0.00393041 0.0060572 0.00998617 0.0176779 0.0330658 0.0641789 0.128551 0.255781 0.429014 0.629205 0.813197 0.923079 0.986085 0.999469 0.999791 0.999944 0.999977 0.999992 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999994 0.999986 0.999963 0.9999 0.999723 0.999235 0.997873 0.993712 0.979573 0.934191 0.81344 0.620519 0.42708 0.261094 0.152075 0.0856923 0.0400911 0.0128381 0.00123552 0.000233546 0.000144373 8.64866e-05 0.000110075 0.000303392 0.00167497 0.999984 0.99999 0.999991 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999984 0.998636 0.942347 0.630541 0.282554 0.0656126 0.0225675 0.000633371 0.00023856 0.000121288 5.07375e-05 2.14491e-05 9.20576e-06 5.25409e-06 3.13188e-06 1.49372e-06 5.75883e-07 2.49052e-07 1.55056e-07 8.28026e-08 4.03665e-08 2.79758e-08 1.63788e-08 9.34309e-09 5.13405e-09 2.73264e-09 1.4103e-09 6.83072e-10 3.01262e-10 1.47185e-10 5.63734e-11 1.67861e-11 1.5435e-11 3.55625e-11 2.00652e-10 4.38164e-10 1.74986e-09 3.49946e-09 1.11245e-08 2.20061e-08 5.72341e-08 1.12338e-07 2.2902e-07 4.9699e-07 1.00843e-06 2.29243e-06 4.58575e-06 1.0002e-05 2.17947e-05 5.05824e-05 0.00011988 0.000295824 0.000759475 0.00208341 0.00625807 0.0196654 0.0603254 0.17745 0.384639 0.617428 0.814233 0.924638 0.985019 0.999257 0.999666 0.999892 0.999957 0.999982 0.999994 0.999998 0.999999 1 1 1 1 1 1 0.999999 0.999999 0.999999 0.999999 0.999998 0.999996 0.999992 0.999984 0.999964 0.999911 0.999766 0.999351 0.998074 0.993524 0.974101 0.894124 0.670819 0.397376 0.179375 0.0648738 0.00938522 0.000379017 0.000151998 5.54868e-05 1.68476e-05 7.29244e-06 3.15508e-06 1.2869e-06 5.19655e-07 3.57892e-07 3.23423e-07 3.22191e-07 3.17586e-07 3.14515e-07 3.17357e-07 3.28597e-07 3.43852e-07 3.57095e-07 3.70903e-07 3.74724e-07 3.92435e-07 3.85394e-07 3.46588e-07 3.33878e-07 4.69334e-07 7.73017e-07 1.52096e-06 5.53296e-06 1.42286e-05 1.70737e-05 1.46223e-05 1.3282e-05 1.39774e-05 1.60728e-05 1.91142e-05 2.37952e-05 3.05824e-05 4.04153e-05 5.45317e-05 7.41257e-05 0.000102398 0.000147766 0.000224224 0.000357762 0.000599239 0.0010498 0.00194056 0.00387538 0.00865076 0.0219281 0.0612948 0.175413 0.390858 0.636184 0.839594 0.949206 0.996819 0.999598 0.999874 0.999962 0.999986 0.999996 0.999999 1 1 1 1 1 1 1 0.999999 0.999999 0.999998 0.999997 0.999994 0.999987 0.999971 0.999933 0.999831 0.999546 0.998718 0.996138 0.987022 0.952756 0.838931 0.614638 0.377457 0.190342 0.0876641 0.0285834 0.00324265 0.000469002 0.000291238 0.000179168 5.68093e-05 2.18016e-05 1.04211e-05 6.44465e-06 4.82519e-06 1.23577e-05 0.000196357 0.000627309 0.793929 0.997895 0.999356 0.999969 0.999978 0.999995 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999983 0.997373 0.881048 0.490127 0.131682 0.0299819 0.00107294 0.000256936 9.96199e-05 3.60887e-05 1.28524e-05 6.0463e-06 2.45295e-06 1.01567e-06 4.11619e-07 2.21233e-07 1.24734e-07 5.48254e-08 1.9376e-08 7.90209e-09 4.71252e-09 2.38343e-09 1.06238e-09 6.92233e-10 3.7283e-10 1.94097e-10 9.65843e-11 4.63036e-11 2.14484e-11 9.40167e-12 3.70124e-12 1.38426e-12 5.3994e-13 3.35742e-13 1.90815e-13 5.06595e-13 3.26673e-12 6.85248e-12 3.51521e-11 6.19194e-11 2.37957e-10 4.2787e-10 1.33181e-09 2.33841e-09 5.85445e-09 1.18548e-08 2.73601e-08 6.76638e-08 1.3523e-07 3.09173e-07 6.56027e-07 1.53539e-06 3.4036e-06 8.34016e-06 2.02798e-05 5.56943e-05 0.000150519 0.000445832 0.00133693 0.00442735 0.0152224 0.0530601 0.164644 0.385658 0.624123 0.825516 0.931763 0.987997 0.99928 0.99969 0.999902 0.999965 0.999979 0.99999 0.999997 0.999997 0.999996 0.999995 0.999994 0.999992 0.999991 0.999988 0.999984 0.999974 0.999953 0.999909 0.999808 0.999549 0.998839 0.996687 0.988975 0.957011 0.832833 0.567267 0.287261 0.110585 0.023541 0.000577392 0.00021353 6.78485e-05 1.96989e-05 7.26731e-06 2.63499e-06 7.43611e-07 2.85792e-07 1.13715e-07 4.51922e-08 2.19623e-08 1.27278e-08 1.00276e-08 9.97361e-09 1.03363e-08 1.0816e-08 1.15308e-08 1.26091e-08 1.39627e-08 1.48515e-08 1.51905e-08 1.44969e-08 1.40625e-08 1.27413e-08 8.94176e-09 7.79362e-09 1.1416e-08 1.89036e-08 4.0422e-08 1.48723e-07 6.05502e-07 1.10395e-06 1.03658e-06 8.71689e-07 7.85541e-07 8.00666e-07 8.52423e-07 9.37886e-07 1.09281e-06 1.3564e-06 1.80709e-06 2.48092e-06 3.42518e-06 4.90535e-06 7.7185e-06 1.32015e-05 2.35081e-05 4.22299e-05 7.77176e-05 0.000150706 0.000310751 0.000700408 0.00177468 0.00519547 0.0175318 0.0627177 0.213216 0.469907 0.734911 0.901099 0.982186 0.999357 0.999777 0.999929 0.999974 0.999989 0.999997 0.999997 0.999997 0.999997 0.999996 0.999994 0.999991 0.999988 0.999981 0.999966 0.999932 0.999854 0.999666 0.999174 0.997761 0.993111 0.975116 0.906615 0.710375 0.447852 0.21561 0.0863926 0.0191906 0.000799275 0.00038042 0.000208957 0.000127697 0.000112948 6.1738e-05 1.67505e-05 4.20258e-06 1.68061e-06 5.57457e-07 3.40939e-07 6.05646e-07 3.12489e-06 9.26026e-06 0.00021196 9.16727e-05 0.200226 0.614757 0.961224 0.996933 0.999915 0.999964 0.999989 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 0.999987 0.996472 0.837194 0.406589 0.0762503 0.0136846 0.000404079 0.000140805 4.84748e-05 1.5468e-05 5.53454e-06 2.03849e-06 6.90535e-07 3.02768e-07 1.19079e-07 4.78989e-08 1.84047e-08 9.33003e-09 4.96809e-09 2.01895e-09 6.59664e-10 2.534e-10 1.43836e-10 6.89631e-11 2.85117e-11 1.74965e-11 8.90877e-12 4.43787e-12 2.07515e-12 9.77992e-13 5.05134e-13 4.34083e-13 2.6685e-13 1.39151e-13 1.17893e-13 1.89375e-13 8.98538e-14 9.83515e-14 2.58272e-13 3.00265e-13 9.26264e-13 1.50899e-12 5.61725e-12 9.90696e-12 3.16237e-11 5.19209e-11 1.47265e-10 2.79923e-10 7.35537e-10 2.04653e-09 4.33051e-09 1.02971e-08 2.23842e-08 5.41849e-08 1.21197e-07 2.94119e-07 6.86032e-07 1.80697e-06 4.48287e-06 1.35127e-05 3.83993e-05 0.000128463 0.000391026 0.00134543 0.00433451 0.0158717 0.054964 0.180089 0.407328 0.646676 0.835464 0.934223 0.987002 0.999357 0.999714 0.999826 0.999932 0.999953 0.999948 0.999935 0.999917 0.999899 0.999883 0.999856 0.999796 0.999671 0.999406 0.99881 0.997307 0.992838 0.977095 0.919205 0.738243 0.465042 0.210302 0.0696343 0.00674162 0.000397134 0.000138378 3.49589e-05 1.22704e-05 3.89992e-06 1.02509e-06 3.46654e-07 1.22216e-07 3.22724e-08 1.12116e-08 4.12929e-09 1.51325e-09 6.75121e-10 3.70942e-10 2.96012e-10 3.13756e-10 3.46325e-10 3.79895e-10 4.2617e-10 4.93272e-10 5.74347e-10 6.01109e-10 6.00711e-10 5.26176e-10 4.68075e-10 3.56075e-10 2.05018e-10 1.95731e-10 3.28857e-10 5.26222e-10 1.60769e-09 9.32403e-09 3.38756e-08 5.53603e-08 5.06384e-08 4.06126e-08 3.48694e-08 3.50414e-08 3.698e-08 3.89888e-08 4.23156e-08 4.87766e-08 6.24364e-08 8.44773e-08 1.12049e-07 1.48164e-07 2.32185e-07 4.43608e-07 8.87487e-07 1.63871e-06 2.88708e-06 5.4035e-06 1.10559e-05 2.54755e-05 6.64883e-05 0.000190255 0.000568495 0.00180031 0.0064343 0.0261438 0.106388 0.331907 0.613849 0.841002 0.953908 0.997775 0.999643 0.999788 0.999934 0.999958 0.999965 0.999965 0.999954 0.999935 0.999904 0.999861 0.99978 0.999599 0.999183 0.998172 0.995388 0.986158 0.951401 0.828692 0.580679 0.314032 0.130805 0.0354363 0.00155825 0.000462064 0.000194502 0.000123085 8.44302e-05 9.36202e-05 9.05899e-05 8.00416e-05 2.80953e-05 3.60604e-06 6.32467e-07 4.15546e-07 6.08784e-08 3.23497e-08 3.41041e-07 6.05671e-07 5.99928e-05 0.000391423 1.62736e-15 6.87504e-14 4.43559e-11 0.0802932 0.470389 0.880007 0.992774 0.999789 0.999949 0.999981 0.999993 0.999998 1 1 1 1 1 1 1 1 0.999987 0.994444 0.788088 0.348528 0.0530052 0.00644603 0.000234765 9.15474e-05 2.55601e-05 8.46766e-06 3.02011e-06 9.24231e-07 3.10203e-07 1.14253e-07 3.69976e-08 1.52193e-08 5.7958e-09 2.25278e-09 8.23256e-10 3.94386e-10 1.98284e-10 7.48501e-11 2.30338e-11 8.60153e-12 4.73302e-12 2.26914e-12 1.07504e-12 6.96309e-13 5.69091e-13 4.40944e-13 2.49023e-13 1.51258e-13 1.16188e-13 2.2918e-13 1.93182e-13 6.05394e-14 1.87415e-14 6.89776e-15 4.79555e-15 5.67418e-15 1.29174e-14 1.83016e-14 5.09295e-14 1.04079e-13 2.81851e-13 5.19227e-13 1.27546e-12 1.7633e-12 4.45135e-12 7.1415e-12 2.00003e-11 5.73306e-11 1.34717e-10 3.12917e-10 7.50282e-10 1.78717e-09 4.421e-09 1.00554e-08 2.5645e-08 6.3645e-08 1.6684e-07 4.76066e-07 1.33966e-06 4.20758e-06 1.2769e-05 4.46226e-05 0.000136156 0.000466856 0.00146172 0.00482874 0.0176079 0.0625494 0.198579 0.417374 0.642804 0.820009 0.915812 0.972106 0.996712 0.999625 0.99928 0.999048 0.998803 0.998579 0.998383 0.998005 0.997059 0.994966 0.989833 0.975863 0.934801 0.816966 0.594043 0.340405 0.145747 0.0398592 0.00133148 0.000357121 0.000112032 2.55928e-05 8.91902e-06 2.14563e-06 7.13171e-07 2.21429e-07 5.31878e-08 1.65297e-08 5.59349e-09 1.39536e-09 4.54638e-10 1.6947e-10 6.87339e-11 2.85499e-11 1.68033e-11 1.65339e-11 1.80416e-11 2.02182e-11 2.25462e-11 2.57317e-11 3.00375e-11 3.44077e-11 3.4676e-11 3.21985e-11 2.6104e-11 2.09184e-11 1.48102e-11 1.18809e-11 1.35943e-11 1.70685e-11 2.39782e-11 6.93348e-11 4.31636e-10 1.30956e-09 1.91086e-09 1.67062e-09 1.34901e-09 1.27284e-09 1.38475e-09 1.47933e-09 1.49815e-09 1.52965e-09 1.65601e-09 2.05181e-09 2.76416e-09 3.47898e-09 4.12793e-09 6.27492e-09 1.3497e-08 3.27856e-08 6.52047e-08 1.08911e-07 1.91575e-07 3.84738e-07 8.91733e-07 2.34616e-06 6.76337e-06 2.08194e-05 6.79238e-05 0.00022907 0.000792853 0.00292731 0.0122931 0.0543548 0.213137 0.486226 0.751282 0.905611 0.979603 0.999428 0.999466 0.99952 0.999589 0.99948 0.99926 0.998867 0.998292 0.997211 0.994566 0.987333 0.964877 0.89229 0.703955 0.445138 0.209079 0.0751762 0.0106334 0.000619816 0.000373668 9.54555e-05 4.42407e-05 4.60357e-05 8.13911e-05 6.98248e-05 3.81527e-05 4.14141e-05 4.30136e-05 3.02351e-05 2.78249e-06 1.68815e-07 8.71649e-08 4.40448e-09 1.06227e-08 3.23545e-08 1.80939e-05 0.000253108 0.000430204 9.0274e-17 4.32598e-15 7.58817e-15 9.40955e-15 -1.80201e-14 0.0184683 0.316122 0.71018 0.974493 0.993701 0.999303 0.999951 0.99999 0.999996 0.999997 1 1 1 0.999943 0.96926 0.672879 0.265054 0.0335376 0.00279481 0.000175459 6.20728e-05 1.39681e-05 5.66682e-06 1.59715e-06 5.10796e-07 1.85956e-07 5.48479e-08 1.74787e-08 6.36534e-09 1.97744e-09 7.67602e-10 2.82892e-10 1.06023e-10 3.7152e-11 1.71308e-11 8.27094e-12 3.02093e-12 1.15435e-12 6.99161e-13 4.67316e-13 3.20049e-13 1.86802e-13 1.36224e-13 1.16118e-13 2.60381e-13 1.77387e-13 7.69462e-14 4.17157e-14 2.84849e-14 1.02237e-14 3.06221e-15 7.49517e-16 2.57291e-16 2.80201e-16 3.54332e-16 7.6429e-16 1.38828e-15 3.66738e-15 8.54728e-15 2.15795e-14 4.70751e-14 1.05867e-13 1.48852e-13 4.21988e-13 5.75024e-13 1.28817e-12 2.53661e-12 4.97663e-12 9.7197e-12 2.40162e-11 5.1624e-11 1.41633e-10 2.91061e-10 8.28604e-10 1.90624e-09 5.61902e-09 1.5398e-08 4.76305e-08 1.43242e-07 4.56183e-07 1.50387e-06 4.55274e-06 1.6117e-05 5.15386e-05 0.000161047 0.000519618 0.00163633 0.00542917 0.0187285 0.0623214 0.178178 0.369313 0.56154 0.727476 0.834894 0.892423 0.926762 0.94835 0.961266 0.962374 0.951676 0.92492 0.868011 0.751553 0.582235 0.38233 0.197106 0.080189 0.0145453 0.000708432 0.000413539 9.26467e-05 2.06476e-05 6.0444e-06 1.6483e-06 5.74061e-07 1.31906e-07 4.1652e-08 1.25008e-08 2.77458e-09 8.03167e-10 2.65089e-10 7.08963e-11 3.06468e-11 2.44584e-11 1.89548e-11 1.09436e-11 8.62563e-12 8.66224e-12 8.97359e-12 9.17452e-12 9.61687e-12 1.03489e-11 1.07122e-11 1.05791e-11 9.9831e-12 9.3981e-12 9.02156e-12 9.11804e-12 9.98512e-12 1.13688e-11 1.13671e-11 1.10408e-11 1.05885e-11 1.28299e-11 2.69666e-11 4.93162e-11 5.93978e-11 5.22143e-11 4.6552e-11 4.82971e-11 5.53042e-11 5.79555e-11 5.72438e-11 5.80069e-11 6.33347e-11 7.89947e-11 1.02905e-10 1.18764e-10 1.3285e-10 1.94953e-10 4.47391e-10 1.27442e-09 2.65893e-09 4.16922e-09 6.81209e-09 1.33265e-08 3.12741e-08 8.40059e-08 2.45455e-07 7.58008e-07 2.44661e-06 8.13834e-06 2.83065e-05 0.000103309 0.000386491 0.00147326 0.0060958 0.0275468 0.116292 0.343746 0.601964 0.802123 0.903309 0.955619 0.979194 0.985189 0.982575 0.977598 0.968713 0.94307 0.877664 0.733 0.522234 0.295394 0.129463 0.036295 0.00177303 0.000675044 0.000252071 5.64304e-05 2.47338e-05 1.07197e-05 8.93901e-06 3.36624e-05 7.40095e-05 0.000107276 1.56046e-05 1.39815e-05 1.95021e-05 2.41661e-05 3.51415e-06 1.42656e-07 7.29466e-09 2.66353e-09 4.40447e-09 3.09275e-08 3.05543e-05 0.000304796 0.000332302 4.86524e-24 5.30756e-21 1.52714e-18 2.76861e-17 7.07297e-17 1.58753e-16 3.73085e-15 0.000217494 0.103006 0.413587 0.689373 0.910341 0.9858 0.991393 0.995654 0.999604 0.920492 0.695368 0.413032 0.107266 0.0175245 0.000373902 9.41742e-05 3.33708e-05 1.00951e-05 3.85163e-06 8.31548e-07 3.4886e-07 9.86765e-08 3.08272e-08 1.13362e-08 3.23607e-09 9.87902e-10 3.53257e-10 1.05681e-10 3.91581e-11 1.42184e-11 5.26862e-12 1.95499e-12 1.22639e-12 7.22506e-13 3.46097e-13 1.75259e-13 1.21843e-13 1.92024e-13 2.51249e-13 1.14822e-13 6.60868e-14 4.50407e-14 3.59143e-14 1.53664e-14 6.54764e-15 3.58498e-15 1.83925e-15 5.5087e-16 1.56066e-16 3.02559e-17 1.31667e-17 1.62348e-17 2.18932e-17 4.5254e-17 8.59155e-17 2.3421e-16 5.46401e-16 1.49726e-15 3.57799e-15 9.04391e-15 1.40424e-14 4.48914e-14 6.65222e-14 1.54279e-13 3.1611e-13 5.86924e-13 9.02431e-13 1.58597e-12 2.29471e-12 4.85539e-12 7.87122e-12 2.01782e-11 4.23309e-11 1.28894e-10 3.61755e-10 1.22288e-09 3.81766e-09 1.32619e-08 4.42612e-08 1.37959e-07 4.96626e-07 1.62547e-06 5.18169e-06 1.77138e-05 5.63835e-05 0.000176058 0.000535306 0.00159809 0.00474086 0.0145215 0.0410538 0.101731 0.209349 0.329476 0.424565 0.484613 0.504245 0.489685 0.438179 0.355081 0.251345 0.154 0.0764798 0.0219295 0.00109727 0.000725879 0.000308094 5.23887e-05 1.54121e-05 4.25524e-06 1.42648e-06 4.14502e-07 1.08176e-07 3.68225e-08 8.11862e-09 2.45655e-09 7.23845e-10 1.56951e-10 4.95604e-11 2.20144e-11 1.38819e-11 1.37337e-11 1.91124e-11 1.72818e-11 9.97669e-12 8.26668e-12 8.43758e-12 8.52134e-12 8.49419e-12 8.79862e-12 9.49507e-12 9.88004e-12 9.80266e-12 9.13002e-12 8.46467e-12 7.90788e-12 7.91363e-12 8.41907e-12 8.90364e-12 8.85477e-12 8.27002e-12 7.84896e-12 7.83161e-12 8.35019e-12 8.41542e-12 8.46198e-12 8.70656e-12 9.01951e-12 9.44754e-12 9.76653e-12 1.01198e-11 1.06818e-11 1.11943e-11 1.26476e-11 1.55875e-11 1.69057e-11 1.86781e-11 2.49248e-11 1.9606e-11 2.61061e-11 5.83525e-11 1.10093e-10 1.58481e-10 2.47026e-10 4.79047e-10 1.13991e-09 3.10709e-09 9.05764e-09 2.77128e-08 8.74894e-08 2.7908e-07 9.2535e-07 3.27287e-06 1.23549e-05 4.846e-05 0.000192828 0.000759541 0.00303717 0.0128684 0.0517128 0.164553 0.344967 0.501772 0.610546 0.667939 0.675413 0.639356 0.550849 0.42635 0.279588 0.151216 0.0608867 0.0100791 0.00114139 0.000573569 0.00015588 3.63834e-05 1.46573e-05 6.97962e-06 4.77693e-06 3.84045e-06 5.19103e-06 2.78922e-05 0.000135532 0.000134189 4.76318e-05 4.15664e-06 3.77247e-06 1.2093e-05 3.31116e-06 3.939e-07 2.46272e-08 2.64771e-09 2.58388e-09 1.19806e-07 2.01246e-05 0.000118211 9.03104e-05 8.0553e-31 1.20689e-27 6.90306e-25 5.33742e-22 1.86235e-19 6.86457e-17 1.53572e-14 1.95627e-14 2.29942e-14 1.14499e-14 1.47365e-05 0.0041521 0.080188 0.157917 0.157433 0.080691 0.0125531 0.00733242 0.00188789 7.15791e-05 5.68411e-05 2.04718e-05 4.73938e-06 1.87763e-06 5.76591e-07 2.3554e-07 4.94204e-08 2.13484e-08 6.03979e-09 1.85853e-09 6.85396e-10 1.90201e-10 5.61051e-11 1.99265e-11 5.88846e-12 2.25925e-12 1.17842e-12 5.62918e-13 2.98448e-13 1.72762e-13 1.19354e-13 1.29031e-13 1.08815e-13 5.46321e-14 4.59497e-14 2.87459e-14 1.39998e-14 8.16139e-15 5.58767e-15 3.269e-15 1.3064e-15 5.4049e-16 2.71045e-16 1.08892e-16 3.02797e-17 7.80961e-18 1.33233e-18 7.5494e-19 8.957e-19 1.17751e-18 2.3056e-18 4.48395e-18 1.3115e-17 3.12412e-17 1.02455e-16 2.66015e-16 8.23825e-16 1.63642e-15 4.93724e-15 8.80318e-15 2.01841e-14 4.22019e-14 7.80696e-14 1.28371e-13 2.19221e-13 4.3635e-13 7.00653e-13 9.35293e-13 1.43403e-12 1.90137e-12 2.95061e-12 6.49767e-12 1.57197e-11 5.74261e-11 2.33795e-10 9.0063e-10 3.16536e-09 1.23164e-08 4.29826e-08 1.37823e-07 4.90189e-07 1.59421e-06 5.18316e-06 1.70096e-05 5.17244e-05 0.00014503 0.000383755 0.000949239 0.00228933 0.00549982 0.0122364 0.0232863 0.0373438 0.047387 0.0456645 0.0324807 0.0156357 0.00314147 0.000900153 0.000788245 0.000346727 7.7957e-05 2.47765e-05 9.3e-06 2.55303e-06 1.07863e-06 2.98345e-07 9.85552e-08 2.82057e-08 7.12146e-09 2.3707e-09 5.12085e-10 1.5854e-10 5.95716e-11 2.00503e-11 1.31465e-11 1.10051e-11 1.00502e-11 1.04511e-11 1.42157e-11 1.25516e-11 8.23848e-12 6.48383e-12 6.43677e-12 6.4928e-12 6.52354e-12 6.81439e-12 7.46753e-12 7.83828e-12 7.80095e-12 7.2417e-12 6.7648e-12 6.37225e-12 6.45225e-12 6.80081e-12 7.11979e-12 7.07128e-12 6.68654e-12 6.3933e-12 6.14431e-12 5.97221e-12 5.86657e-12 5.94826e-12 6.02586e-12 6.30146e-12 6.78526e-12 7.45092e-12 8.12185e-12 8.87774e-12 9.55152e-12 1.11968e-11 1.4129e-11 1.49449e-11 1.7308e-11 2.59176e-11 1.57012e-11 1.18653e-11 1.21662e-11 1.26853e-11 1.2752e-11 1.55029e-11 2.39877e-11 4.43716e-11 1.10371e-10 3.1281e-10 9.5586e-10 2.98145e-09 9.12368e-09 2.8412e-08 9.47098e-08 3.51209e-07 1.41115e-06 5.93933e-06 2.50705e-05 0.000102725 0.000396798 0.00142478 0.00474199 0.0134426 0.0303548 0.0535096 0.076332 0.0908368 0.0901698 0.0695828 0.0365605 0.00961742 0.00134513 0.000714933 0.000280273 5.90483e-05 2.60101e-05 2.08228e-05 7.02709e-06 4.45186e-06 3.3693e-06 3.12414e-06 3.1716e-06 3.85995e-06 5.25592e-05 0.000135532 9.20873e-05 3.2283e-05 9.50509e-06 2.13408e-06 2.93319e-06 1.69269e-06 3.7084e-07 1.12081e-07 2.58388e-09 1.56887e-09 7.64457e-08 5.51813e-06 1.83189e-05 6.94495e-06 1.03421e-39 1.93306e-36 1.33177e-33 1.00425e-30 4.01506e-28 1.56518e-25 4.18762e-23 3.9341e-21 2.45351e-19 1.57521e-17 1.1996e-15 2.20508e-14 3.79996e-12 2.76317e-11 7.0475e-09 3.18688e-06 2.72623e-06 3.55737e-06 2.21851e-06 2.64338e-06 2.68725e-06 1.08133e-06 2.39515e-07 1.04821e-07 3.26899e-08 1.42171e-08 2.93029e-09 1.29872e-09 3.67028e-10 1.12013e-10 4.14241e-11 1.14343e-11 3.39081e-12 1.55002e-12 6.2131e-13 3.15336e-13 1.61763e-13 1.08298e-13 1.60261e-13 1.08624e-13 5.46003e-14 2.87534e-14 1.39236e-14 8.07042e-15 5.74188e-15 3.26571e-15 1.64396e-15 9.64529e-16 6.01667e-16 2.84864e-16 1.08575e-16 4.23828e-17 1.85835e-17 6.21243e-18 1.66178e-18 3.79267e-19 6.43738e-20 4.31818e-20 4.88376e-20 6.80074e-20 1.46994e-19 3.74437e-19 1.18191e-18 3.94557e-18 1.40559e-17 4.15035e-17 1.20553e-16 3.05675e-16 7.55869e-16 1.71084e-15 4.08922e-15 8.68061e-15 1.62887e-14 2.8844e-14 5.65473e-14 1.70913e-13 2.67108e-13 4.17031e-13 7.31893e-13 1.03281e-12 1.54485e-12 2.44656e-12 7.56699e-13 1.11568e-12 3.08527e-12 1.25352e-11 5.20509e-11 2.1727e-10 8.12522e-10 2.62591e-09 9.66463e-09 3.39958e-08 1.22686e-07 4.55497e-07 1.47099e-06 4.24827e-06 1.05663e-05 2.41009e-05 5.42366e-05 9.25647e-05 9.14101e-05 6.58934e-05 7.3024e-05 8.25337e-05 6.02629e-05 5.80752e-05 7.87096e-05 4.93577e-05 2.4175e-05 1.65009e-05 6.844e-06 2.16862e-06 1.06644e-06 4.92447e-07 1.72101e-07 7.5902e-08 2.09059e-08 6.79586e-09 1.92135e-09 4.80297e-10 1.65192e-10 4.42821e-11 2.21252e-11 2.21026e-11 1.30827e-11 8.34525e-12 7.91864e-12 8.18025e-12 8.59206e-12 1.04981e-11 9.41635e-12 5.90706e-12 4.72268e-12 4.67891e-12 4.71908e-12 4.82745e-12 5.07142e-12 5.59067e-12 5.93856e-12 5.97168e-12 5.61741e-12 5.36152e-12 5.09285e-12 5.13867e-12 5.26222e-12 5.37293e-12 5.32042e-12 5.17824e-12 5.08304e-12 4.9659e-12 4.90906e-12 4.87345e-12 5.00039e-12 5.10109e-12 5.43182e-12 5.95069e-12 6.65252e-12 7.33889e-12 8.1413e-12 8.83938e-12 1.01347e-11 1.22411e-11 1.24863e-11 1.4155e-11 2.37962e-11 1.34437e-11 1.03694e-11 1.02952e-11 9.44994e-12 7.93508e-12 7.98511e-12 9.90701e-12 7.46915e-12 8.45457e-12 1.28354e-11 2.73229e-11 7.37885e-11 2.15583e-10 6.64391e-10 2.24993e-09 8.82288e-09 3.806e-08 1.70929e-07 7.62524e-07 3.28455e-06 1.35192e-05 5.26185e-05 0.000179457 0.000456698 0.000873999 0.00122922 0.00122255 0.000919432 0.000657633 0.000465793 0.00024399 0.000133397 5.22141e-05 1.57942e-05 7.42936e-06 9.42182e-06 7.10921e-06 1.01918e-05 4.06679e-06 3.37031e-06 3.12416e-06 2.9833e-06 3.12416e-06 5.02127e-06 6.5776e-05 0.000135532 1.37505e-05 8.03373e-06 9.83278e-06 2.06782e-06 3.40616e-08 4.78402e-07 1.44672e-07 8.91597e-08 8.53168e-09 1.09069e-09 1.37562e-08 2.07168e-07 3.95742e-07 4.75561e-06 2.78542e-42 6.47301e-39 5.40391e-36 4.23041e-33 1.92047e-30 7.76456e-28 2.07762e-25 2.29709e-23 1.75941e-21 1.41042e-19 1.30169e-17 7.99237e-16 2.80044e-14 5.66233e-13 3.16189e-12 6.45498e-08 3.73401e-08 6.77569e-08 5.69973e-08 9.56056e-08 1.23285e-07 5.53639e-08 1.20938e-08 5.8016e-09 1.84152e-09 8.48294e-10 1.7348e-10 7.87126e-11 2.24803e-11 6.98057e-12 2.6493e-12 1.08106e-12 4.19218e-13 2.09052e-13 1.11926e-13 1.10568e-13 1.00288e-13 4.65771e-14 2.94614e-14 1.3966e-14 7.05158e-15 3.45283e-15 1.8373e-15 1.11129e-15 6.80964e-16 3.66184e-16 1.8601e-16 1.06459e-16 5.87709e-17 2.42191e-17 8.77084e-18 3.14373e-18 1.18947e-18 3.45564e-19 8.8671e-20 1.782e-20 3.30828e-21 2.64391e-21 3.94857e-21 9.3312e-21 3.07943e-20 1.10006e-19 4.08198e-19 1.43882e-18 5.06014e-18 1.56353e-17 4.65777e-17 1.21412e-16 3.18408e-16 7.59037e-16 1.90183e-15 4.27371e-15 8.44648e-15 1.55641e-14 3.07964e-14 8.43242e-14 1.39478e-13 2.22921e-13 3.98885e-13 5.95135e-13 9.4169e-13 1.61943e-12 5.92251e-13 6.89467e-13 8.80473e-13 1.13273e-12 2.94878e-12 6.20653e-12 1.88247e-11 4.26839e-11 1.47226e-11 2.18112e-11 5.78048e-11 4.13752e-10 2.39356e-09 8.23375e-09 1.94804e-08 5.67691e-08 2.0088e-07 4.47307e-07 5.32449e-07 5.04522e-07 5.53214e-07 6.05813e-07 4.84833e-07 3.24063e-07 4.37883e-07 3.9645e-07 3.2672e-07 2.81995e-07 1.92868e-07 1.00542e-07 6.73927e-08 3.29209e-08 1.18338e-08 5.31341e-09 1.46991e-09 4.77714e-10 1.44769e-10 4.34945e-11 2.31806e-11 1.5885e-11 1.25163e-11 1.37299e-11 8.02896e-12 6.96987e-12 6.85629e-12 6.55444e-12 6.48135e-12 7.4221e-12 6.17084e-12 4.02744e-12 3.34168e-12 3.26815e-12 3.27867e-12 3.44647e-12 3.6188e-12 3.95971e-12 4.26936e-12 4.3628e-12 4.22467e-12 4.14548e-12 3.94388e-12 3.91253e-12 3.86458e-12 3.83466e-12 3.79845e-12 3.83752e-12 3.87702e-12 3.86641e-12 3.92228e-12 3.94208e-12 4.10456e-12 4.21389e-12 4.56325e-12 5.06244e-12 5.72699e-12 6.32607e-12 7.07109e-12 7.70761e-12 8.33355e-12 9.03163e-12 8.60051e-12 8.05967e-12 1.24639e-11 7.60116e-12 7.83562e-12 8.08592e-12 7.68337e-12 6.64114e-12 6.83363e-12 9.12194e-12 6.38558e-12 5.84667e-12 5.76177e-12 5.89489e-12 5.92839e-12 5.99992e-12 6.71816e-12 8.75718e-12 1.34705e-11 4.1692e-11 7.88527e-11 2.86406e-10 2.27571e-09 1.77662e-08 1.11106e-07 5.49869e-07 1.89561e-06 4.61134e-06 1.01618e-05 1.58863e-05 1.48683e-05 8.57721e-06 4.82472e-06 3.34652e-06 2.65247e-06 1.68668e-06 1.39669e-06 3.28042e-06 5.79865e-06 6.76443e-06 6.80919e-06 1.87484e-05 1.75206e-05 6.4279e-06 2.9833e-06 2.9833e-06 1.34503e-05 0.000105109 5.75611e-05 7.05323e-07 3.99424e-07 4.52596e-06 3.82166e-06 2.53256e-08 1.14011e-08 1.4557e-08 3.05744e-08 1.37967e-08 6.74016e-10 2.89703e-10 2.5777e-09 6.61393e-08 6.77176e-06 1.24524e-44 3.57193e-41 3.55812e-38 2.96054e-35 1.51491e-32 6.48721e-30 1.81329e-27 2.367e-25 2.24194e-23 2.28813e-21 2.68233e-19 2.20432e-17 1.07292e-15 4.51873e-14 8.5525e-14 1.02711e-09 8.91255e-10 1.26135e-09 1.46397e-09 3.39245e-09 5.50324e-09 2.75968e-09 6.09022e-10 3.18403e-10 1.03299e-10 5.02265e-11 1.05479e-11 4.927e-12 1.74052e-12 7.4812e-13 3.2946e-13 1.52895e-13 9.35032e-14 1.49777e-13 5.17465e-14 3.10684e-14 1.3094e-14 6.61239e-15 3.69542e-15 1.76932e-15 8.78337e-16 4.23682e-16 2.39852e-16 1.41681e-16 7.7947e-17 4.02349e-17 2.01782e-17 1.09615e-17 5.38132e-18 2.01544e-18 6.86442e-19 2.21692e-19 7.24837e-20 1.86887e-20 4.51732e-21 8.13547e-22 1.88314e-22 2.44684e-22 6.62449e-22 2.173e-21 7.83543e-21 3.02844e-20 1.23235e-19 4.55024e-19 1.54613e-18 4.93835e-18 1.50472e-17 4.17966e-17 1.15777e-16 2.93267e-16 7.55349e-16 1.79209e-15 3.67964e-15 7.09467e-15 1.35488e-14 2.91882e-14 5.07551e-14 8.30029e-14 1.3964e-13 2.06606e-13 3.14759e-13 4.87465e-13 3.53677e-13 4.68804e-13 6.71796e-13 1.04388e-12 2.99112e-12 6.7469e-12 1.79195e-11 3.36905e-11 7.46112e-12 5.49257e-12 9.42466e-12 2.1097e-11 4.87812e-11 1.05334e-10 2.12304e-10 6.10468e-10 2.2969e-09 6.59314e-09 1.17803e-08 1.33118e-08 1.31608e-08 1.67859e-08 1.71322e-08 1.50452e-08 1.26299e-08 1.19094e-08 1.19292e-08 1.26952e-08 9.98654e-09 5.84363e-09 4.2539e-09 2.20071e-09 8.23893e-10 3.81335e-10 1.18835e-10 4.445e-11 2.46912e-11 1.53759e-11 1.06026e-11 8.8648e-12 8.8254e-12 9.24463e-12 7.31324e-12 5.6898e-12 5.12173e-12 4.69e-12 4.42708e-12 4.64791e-12 3.80044e-12 2.69341e-12 2.30661e-12 2.20601e-12 2.19426e-12 2.37501e-12 2.48617e-12 2.68465e-12 2.94011e-12 3.05389e-12 3.06476e-12 3.08646e-12 2.92632e-12 2.85157e-12 2.7571e-12 2.69215e-12 2.6827e-12 2.78618e-12 2.8617e-12 2.87884e-12 2.97923e-12 3.02592e-12 3.1943e-12 3.29696e-12 3.61451e-12 4.04772e-12 4.61817e-12 5.1149e-12 5.75538e-12 6.27378e-12 6.417e-12 6.24298e-12 6.03262e-12 5.97412e-12 6.15181e-12 5.61894e-12 5.133e-12 5.1455e-12 5.16831e-12 4.88689e-12 5.10188e-12 7.1721e-12 5.46623e-12 5.16327e-12 5.35726e-12 6.00078e-12 6.64536e-12 7.36418e-12 7.7942e-12 7.91148e-12 9.4899e-12 2.29006e-11 3.05194e-11 4.95893e-11 1.39827e-10 5.67242e-10 2.3167e-09 8.71117e-09 2.49299e-08 5.92912e-08 1.44476e-07 2.10616e-07 2.77886e-07 3.16384e-07 1.11564e-06 1.01766e-06 1.05014e-06 9.27434e-07 7.35485e-07 2.19653e-06 1.11597e-05 1.27753e-05 4.97689e-06 2.38095e-05 2.42674e-05 2.34858e-05 3.82921e-06 3.13307e-06 2.77705e-05 0.000119564 3.12444e-05 4.31857e-07 1.12379e-07 6.74117e-07 2.45471e-06 2.47201e-08 1.73654e-10 1.02143e-10 3.30765e-09 7.53647e-09 3.55836e-10 3.56036e-11 2.75432e-10 7.79524e-09 8.57322e-06 1.19636e-46 4.2243e-43 5.00265e-40 4.52788e-37 2.60638e-34 1.19164e-31 3.50824e-29 5.22507e-27 5.68956e-25 6.43308e-23 7.95578e-21 7.35264e-19 4.44549e-17 2.42383e-15 3.534e-14 1.7089e-11 2.17217e-11 2.30657e-11 3.75639e-11 1.18388e-10 2.39782e-10 1.34498e-10 3.06618e-11 1.74517e-11 5.95615e-12 3.07269e-12 1.03421e-12 5.21559e-13 2.33478e-13 1.20762e-13 8.44109e-14 9.59678e-14 3.80568e-14 1.92065e-14 7.21131e-15 4.19589e-15 1.73399e-15 8.90985e-16 4.56663e-16 2.20607e-16 1.07066e-16 5.27564e-17 3.02607e-17 1.69231e-17 8.64232e-18 4.30373e-18 2.09224e-18 1.06224e-18 4.71345e-19 1.63947e-19 5.20321e-20 1.49728e-20 4.24978e-21 9.7673e-22 2.18089e-22 3.70965e-23 1.53415e-23 4.18478e-23 1.5399e-22 5.6252e-22 2.11529e-21 8.9014e-21 3.92446e-20 1.49361e-19 4.84826e-19 1.57528e-18 5.00289e-18 1.50668e-17 4.33923e-17 1.13914e-16 2.983e-16 7.42895e-16 1.54649e-15 3.12672e-15 5.76454e-15 9.07163e-15 1.64612e-14 2.81554e-14 4.46124e-14 6.27768e-14 8.93152e-14 1.31162e-13 1.92896e-13 2.78706e-13 4.05503e-13 6.53757e-13 1.43493e-12 2.08561e-12 7.12509e-12 1.68387e-11 5.3763e-12 3.96402e-12 5.77696e-12 8.06093e-12 1.03295e-11 1.32799e-11 1.73742e-11 3.40876e-11 1.00014e-10 2.5792e-10 4.45548e-10 5.18024e-10 6.15702e-10 8.43975e-10 9.15533e-10 7.74326e-10 6.59101e-10 6.07467e-10 5.46196e-10 5.95532e-10 5.33444e-10 3.59245e-10 2.87335e-10 1.66695e-10 7.30392e-11 3.7252e-11 2.59133e-11 1.55808e-11 9.88559e-12 7.99952e-12 7.58357e-12 7.81876e-12 7.98681e-12 8.3103e-12 5.72064e-12 4.22668e-12 3.62899e-12 3.19723e-12 2.90188e-12 2.82796e-12 2.33496e-12 1.78556e-12 1.55147e-12 1.45011e-12 1.43108e-12 1.58777e-12 1.66004e-12 1.77685e-12 1.97376e-12 2.0744e-12 2.14503e-12 2.20115e-12 2.07683e-12 2.00394e-12 1.93417e-12 1.88021e-12 1.89175e-12 1.98408e-12 2.04947e-12 2.0688e-12 2.17789e-12 2.233e-12 2.38452e-12 2.47444e-12 2.74144e-12 3.09898e-12 3.56414e-12 3.98199e-12 4.53432e-12 4.97665e-12 5.05981e-12 4.93573e-12 4.74422e-12 4.69769e-12 4.47914e-12 4.34434e-12 3.89418e-12 3.62491e-12 3.44124e-12 3.37637e-12 3.52226e-12 4.29782e-12 4.08819e-12 4.07428e-12 4.43061e-12 5.24004e-12 6.16914e-12 7.48075e-12 8.80578e-12 1.02583e-11 1.27629e-11 2.32412e-11 2.66133e-11 2.96208e-11 3.57544e-11 5.08765e-11 1.19524e-10 3.71267e-10 8.57613e-10 2.19552e-09 5.56265e-09 2.20139e-08 1.36568e-07 1.51598e-07 1.57467e-07 1.72151e-07 1.85e-07 2.23531e-07 2.76295e-07 4.55918e-06 1.50005e-05 1.36646e-05 2.17618e-06 1.98073e-05 2.42631e-05 2.42674e-05 2.25773e-05 3.45703e-06 2.73761e-05 0.000119165 1.45846e-05 3.80234e-07 7.13151e-08 5.13975e-08 7.73098e-07 5.49803e-08 6.99292e-11 1.68183e-11 1.05633e-10 1.73684e-09 1.16418e-10 1.12406e-11 3.5603e-11 8.65802e-10 8.70953e-06 8.61653e-49 3.7255e-45 5.16115e-42 5.05715e-39 3.22025e-36 1.56781e-33 4.88617e-31 8.1697e-29 9.99349e-27 1.2263e-24 1.60937e-22 1.70506e-20 1.31782e-18 1.00023e-16 6.8935e-15 2.85209e-13 4.7456e-13 4.94258e-13 1.04508e-12 4.1491e-12 1.03016e-11 6.51557e-12 1.63147e-12 1.12856e-12 5.54657e-13 3.12098e-13 1.45673e-13 9.85586e-14 9.81391e-14 6.65839e-14 3.11701e-14 1.27108e-14 5.65552e-15 2.50639e-15 9.97978e-16 5.46377e-16 2.29544e-16 1.15126e-16 5.56747e-17 2.7069e-17 1.2927e-17 6.53805e-18 3.66133e-18 1.91927e-18 9.28928e-19 4.46176e-19 2.07495e-19 9.79323e-20 3.99168e-20 1.30042e-20 3.82425e-21 9.74468e-22 2.40734e-22 4.91005e-23 1.00139e-23 1.95022e-24 2.44676e-24 1.08339e-23 4.42193e-23 1.74583e-22 6.88832e-22 3.07159e-21 1.44651e-20 5.56971e-20 1.74724e-19 5.69408e-19 1.90322e-18 6.05734e-18 1.75477e-17 4.68263e-17 1.24977e-16 3.26646e-16 6.75488e-16 1.42971e-15 2.65985e-15 4.04659e-15 7.73347e-15 1.42362e-14 2.33746e-14 3.35271e-14 4.84307e-14 7.41332e-14 1.10795e-13 1.63652e-13 2.27262e-13 3.47678e-13 5.45591e-13 7.51133e-13 1.07577e-12 1.4792e-12 2.03112e-12 2.49513e-12 3.00404e-12 4.18638e-12 6.89767e-12 9.38702e-12 1.10375e-11 1.37712e-11 1.92332e-11 2.85367e-11 3.78791e-11 4.27264e-11 5.14945e-11 6.35665e-11 6.06001e-11 5.18413e-11 4.99322e-11 5.23665e-11 5.11999e-11 5.1866e-11 4.77663e-11 4.31399e-11 3.95789e-11 3.31746e-11 2.32318e-11 1.40203e-11 8.92498e-12 6.87364e-12 6.59938e-12 6.88637e-12 7.11216e-12 6.81471e-12 6.49183e-12 6.42599e-12 4.19315e-12 3.02229e-12 2.49032e-12 2.12141e-12 1.86742e-12 1.7275e-12 1.44882e-12 1.16292e-12 1.01037e-12 9.26349e-13 9.08149e-13 1.02458e-12 1.0708e-12 1.14337e-12 1.28823e-12 1.36469e-12 1.43744e-12 1.49091e-12 1.40177e-12 1.34954e-12 1.30566e-12 1.26699e-12 1.28132e-12 1.34696e-12 1.39828e-12 1.42054e-12 1.51858e-12 1.57023e-12 1.6929e-12 1.7675e-12 1.97845e-12 2.25969e-12 2.62309e-12 2.97187e-12 3.42856e-12 3.81041e-12 3.89063e-12 3.78896e-12 3.61771e-12 3.56141e-12 3.34288e-12 3.25381e-12 2.8853e-12 2.63319e-12 2.47982e-12 2.46441e-12 2.59157e-12 2.92525e-12 2.98536e-12 3.05557e-12 3.41733e-12 4.15641e-12 5.02089e-12 6.21506e-12 7.4986e-12 8.00879e-12 8.4707e-12 8.92616e-12 1.07634e-11 1.50365e-11 2.2181e-11 2.73376e-11 3.65606e-11 5.11853e-11 7.9169e-11 1.63954e-10 4.95419e-10 5.42181e-09 4.06916e-08 3.57453e-07 4.85617e-07 2.09716e-07 2.19527e-07 2.26718e-07 8.10257e-07 6.13954e-06 1.404e-05 5.64278e-06 3.12859e-07 5.96117e-06 2.40042e-05 2.41281e-05 1.03444e-05 3.8162e-06 3.36972e-05 0.00011887 4.60159e-05 3.71348e-07 2.12296e-08 4.31249e-09 2.41686e-08 5.35089e-08 2.24191e-11 3.4558e-12 1.95656e-11 4.06771e-11 9.59625e-12 6.18562e-12 9.34728e-12 2.18198e-10 1.35751e-05 5.66463e-51 3.02016e-47 4.96208e-44 5.44463e-41 3.92806e-38 2.1063e-35 7.23092e-33 1.39826e-30 1.99083e-28 2.75135e-26 3.84871e-24 4.31723e-22 3.55737e-20 2.71492e-18 1.82054e-16 8.07686e-15 4.05627e-14 7.34928e-14 9.89766e-14 2.1275e-13 5.17768e-13 3.90557e-13 1.61342e-13 1.80087e-13 9.71109e-14 7.59174e-14 9.36326e-14 4.70988e-14 2.2068e-14 9.29604e-15 4.31384e-15 1.71476e-15 7.99083e-16 3.30034e-16 1.35455e-16 6.98094e-17 2.99759e-17 1.44413e-17 6.70672e-18 3.27371e-18 1.55169e-18 7.94275e-19 4.24946e-19 2.08847e-19 9.68316e-20 4.47409e-20 1.97452e-20 8.66895e-21 3.28293e-21 1.00349e-21 2.72894e-22 6.13456e-23 1.31838e-23 2.37039e-24 4.53335e-25 1.89227e-25 6.49468e-25 3.53934e-24 1.51096e-23 6.23821e-23 2.50225e-22 1.14219e-21 5.71517e-21 2.20324e-20 6.78217e-20 2.20524e-19 7.70516e-19 2.57059e-18 7.478e-18 2.01014e-17 5.43843e-17 1.48945e-16 3.0521e-16 6.66412e-16 1.25863e-15 1.86003e-15 3.72772e-15 7.18041e-15 1.21925e-14 1.78612e-14 2.6111e-14 4.22009e-14 6.47167e-14 9.87698e-14 1.33112e-13 1.98924e-13 3.11852e-13 4.58093e-13 6.92801e-13 1.01507e-12 1.35625e-12 1.66712e-12 2.08346e-12 2.68036e-12 3.30562e-12 4.91379e-12 6.50622e-12 7.82372e-12 9.26778e-12 1.16171e-11 1.52004e-11 1.95113e-11 2.41325e-11 3.06305e-11 3.63788e-11 3.92273e-11 3.83582e-11 3.72737e-11 3.33125e-11 2.81806e-11 2.36428e-11 1.85927e-11 1.36386e-11 9.76476e-12 6.7819e-12 5.38948e-12 5.34575e-12 5.84525e-12 6.27392e-12 6.14058e-12 5.88837e-12 5.44926e-12 4.94086e-12 4.57941e-12 2.94983e-12 2.10377e-12 1.67036e-12 1.37993e-12 1.18412e-12 1.05732e-12 8.92817e-13 7.30722e-13 6.29263e-13 5.67174e-13 5.51819e-13 6.2718e-13 6.54574e-13 6.99931e-13 7.99489e-13 8.51818e-13 9.06444e-13 9.44875e-13 8.8635e-13 8.53196e-13 8.26139e-13 8.00348e-13 8.09608e-13 8.48203e-13 8.85823e-13 9.09198e-13 9.84957e-13 1.02644e-12 1.11654e-12 1.17437e-12 1.32808e-12 1.53299e-12 1.79765e-12 2.0689e-12 2.4073e-12 2.70798e-12 2.78222e-12 2.70627e-12 2.56964e-12 2.50962e-12 2.33964e-12 2.27667e-12 2.00206e-12 1.8115e-12 1.70194e-12 1.70036e-12 1.80316e-12 2.06485e-12 2.15292e-12 2.2271e-12 2.52355e-12 3.13543e-12 3.88667e-12 4.93458e-12 6.13545e-12 6.87653e-12 7.43567e-12 8.02017e-12 8.67216e-12 1.01028e-11 1.51157e-11 2.09224e-11 2.98462e-11 3.72526e-11 4.47468e-11 5.69616e-11 1.22027e-10 2.76785e-10 3.72686e-07 2.93023e-06 5.73635e-06 7.49273e-07 2.26718e-07 2.31423e-07 2.95813e-06 9.17658e-06 2.49559e-06 6.68854e-07 3.12859e-07 4.23691e-07 8.59382e-06 1.60646e-05 4.03428e-06 6.2023e-06 9.66914e-05 0.000119029 8.17002e-05 2.41653e-07 1.71529e-09 5.24065e-10 1.10782e-09 1.90629e-08 2.1887e-12 1.6234e-12 2.69719e-12 5.88745e-12 2.08176e-12 3.07655e-12 4.33361e-12 2.1732e-10 2.02998e-05 4.22287e-53 2.80969e-49 5.53867e-46 6.94484e-43 5.75061e-40 3.4587e-37 1.33142e-34 2.98899e-32 4.93843e-30 7.64362e-28 1.14208e-25 1.36414e-23 1.21535e-21 9.82238e-20 7.0868e-18 3.66821e-16 8.53104e-15 3.02722e-14 5.4919e-14 5.15265e-14 8.7503e-14 7.74637e-14 5.35722e-14 1.30681e-13 4.85379e-14 2.8834e-14 1.27942e-14 6.45123e-15 2.85506e-15 1.29531e-15 5.73383e-16 2.33513e-16 1.08291e-16 4.34221e-17 1.79707e-17 8.80513e-18 3.83418e-18 1.77353e-18 7.99148e-19 3.9086e-19 1.84648e-19 9.38009e-20 4.74591e-20 2.19608e-20 9.7924e-21 4.33906e-21 1.81039e-21 7.41581e-22 2.62477e-22 7.52086e-23 1.89209e-23 3.74176e-24 6.97631e-25 1.10497e-25 2.52752e-26 4.26742e-26 2.11507e-25 1.27419e-24 5.56678e-24 2.35495e-23 9.4232e-23 4.27894e-22 2.2231e-21 8.5774e-21 2.6707e-20 8.73427e-20 3.1768e-19 1.10444e-18 3.25917e-18 8.7849e-18 2.39669e-17 6.8197e-17 1.39356e-16 3.09005e-16 5.99562e-16 8.89964e-16 1.84547e-15 3.57667e-15 6.27456e-15 9.39515e-15 1.39274e-14 2.34892e-14 3.66803e-14 5.84757e-14 7.80992e-14 1.16312e-13 1.79261e-13 2.75477e-13 4.26933e-13 6.45214e-13 8.60889e-13 1.0531e-12 1.34692e-12 1.77556e-12 2.09607e-12 2.66618e-12 3.3964e-12 3.63297e-12 3.92112e-12 4.40191e-12 5.30129e-12 6.43596e-12 7.75845e-12 9.77456e-12 1.15088e-11 1.26184e-11 1.01069e-11 7.80595e-12 7.04856e-12 6.40182e-12 5.76286e-12 5.28435e-12 4.95645e-12 4.80965e-12 4.63637e-12 4.85989e-12 5.15374e-12 5.22202e-12 5.22987e-12 5.02478e-12 4.67405e-12 4.16748e-12 3.60823e-12 3.10791e-12 2.01693e-12 1.42554e-12 1.09252e-12 8.7519e-13 7.31752e-13 6.34737e-13 5.32443e-13 4.34959e-13 3.69053e-13 3.26793e-13 3.14822e-13 3.57433e-13 3.71773e-13 3.9851e-13 4.60557e-13 4.92774e-13 5.27329e-13 5.50493e-13 5.15315e-13 4.9556e-13 4.79129e-13 4.62789e-13 4.66541e-13 4.85618e-13 5.10191e-13 5.28025e-13 5.78612e-13 6.07976e-13 6.66759e-13 7.07035e-13 8.08135e-13 9.42828e-13 1.11749e-12 1.30683e-12 1.52895e-12 1.74042e-12 1.80321e-12 1.75523e-12 1.66299e-12 1.60956e-12 1.49396e-12 1.45685e-12 1.27146e-12 1.14167e-12 1.0707e-12 1.07578e-12 1.15162e-12 1.34449e-12 1.43723e-12 1.51369e-12 1.74789e-12 2.22113e-12 2.84787e-12 3.75806e-12 4.86892e-12 5.65218e-12 6.29358e-12 6.94994e-12 7.6795e-12 8.24017e-12 1.00148e-11 1.69996e-11 2.79967e-11 3.71448e-11 4.55067e-11 5.03669e-11 9.22915e-11 2.38491e-08 3.32825e-06 1.13137e-05 1.2239e-05 5.74869e-06 2.31423e-07 3.33352e-07 9.7993e-06 3.41524e-05 3.46825e-06 5.06207e-07 3.52639e-07 5.93182e-08 5.99387e-07 2.95056e-06 3.53763e-06 1.54617e-05 0.000121642 0.000120332 1.74051e-05 1.06858e-07 3.44673e-10 1.1183e-10 2.00378e-10 1.00897e-09 2.47484e-12 1.33646e-12 1.42459e-12 1.31224e-12 2.00738e-12 2.08599e-12 3.44038e-12 3.10074e-10 3.80245e-05 2.37642e-55 2.02472e-51 4.92363e-48 7.3117e-45 7.169e-42 5.00791e-39 2.23708e-36 5.98632e-34 1.18015e-31 2.12296e-29 3.55599e-27 4.72401e-25 4.71318e-23 4.21787e-21 3.51156e-19 2.38541e-17 1.01204e-15 2.3847e-15 3.67656e-15 1.13638e-14 4.24603e-14 3.21455e-14 1.45033e-14 1.54979e-14 6.39329e-15 3.79656e-15 1.73414e-15 8.75477e-16 3.76359e-16 1.78754e-16 7.48735e-17 3.1709e-17 1.42429e-17 5.66414e-18 2.33322e-18 1.09866e-18 4.79432e-19 2.14263e-19 9.4251e-20 4.60901e-20 2.16615e-20 1.07319e-20 5.11852e-21 2.2414e-21 9.61181e-22 4.07431e-22 1.60559e-22 6.15433e-23 2.03913e-23 5.46893e-24 1.27474e-24 2.21187e-25 3.56624e-26 5.19173e-27 3.26072e-27 1.35624e-26 7.22297e-26 4.56756e-25 2.02599e-24 8.74375e-24 3.47833e-23 1.54069e-22 8.10251e-22 3.13541e-21 1.00946e-20 3.34315e-20 1.25264e-19 4.48349e-19 1.3456e-18 3.63113e-18 9.94732e-18 2.92175e-17 5.994e-17 1.33839e-16 2.68797e-16 4.11533e-16 8.73604e-16 1.66242e-15 3.01292e-15 4.62167e-15 6.97024e-15 1.22081e-14 1.93288e-14 3.23584e-14 4.40321e-14 6.76796e-14 1.04582e-13 1.65778e-13 2.60323e-13 4.00049e-13 5.38493e-13 6.59231e-13 8.53446e-13 1.15323e-12 1.34307e-12 1.74171e-12 2.3156e-12 2.43377e-12 2.58499e-12 2.84668e-12 3.19521e-12 3.60967e-12 4.31194e-12 4.86097e-12 5.13445e-12 5.17607e-12 5.12175e-12 5.5855e-12 5.22481e-12 5.03277e-12 4.81006e-12 4.6683e-12 4.79128e-12 4.73433e-12 4.34809e-12 4.23693e-12 4.28299e-12 4.26367e-12 4.18652e-12 3.94114e-12 3.56807e-12 3.06831e-12 2.5462e-12 2.04662e-12 1.34107e-12 9.33518e-13 6.898e-13 5.34234e-13 4.33388e-13 3.64833e-13 3.00363e-13 2.415e-13 2.00846e-13 1.7428e-13 1.65731e-13 1.8662e-13 1.92941e-13 2.07094e-13 2.41407e-13 2.58936e-13 2.77866e-13 2.89762e-13 2.70442e-13 2.59224e-13 2.49453e-13 2.39588e-13 2.39814e-13 2.47359e-13 2.60846e-13 2.71371e-13 3.00283e-13 3.18057e-13 3.5123e-13 3.75413e-13 4.33891e-13 5.11905e-13 6.13709e-13 7.29218e-13 8.53819e-13 9.82466e-13 1.02877e-12 1.00504e-12 9.54835e-13 9.14881e-13 8.48642e-13 8.30954e-13 7.20285e-13 6.4276e-13 6.02076e-13 6.0864e-13 6.58749e-13 7.85354e-13 8.64201e-13 9.33755e-13 1.10514e-12 1.43882e-12 1.91982e-12 2.6481e-12 3.57245e-12 4.34003e-12 5.04567e-12 5.76388e-12 6.56691e-12 7.17555e-12 8.94412e-12 1.59667e-11 2.68912e-11 3.70926e-11 4.67439e-11 4.79638e-11 5.7996e-10 3.23891e-07 5.53728e-06 1.2247e-05 1.22495e-05 1.21634e-05 1.50727e-06 4.24356e-06 3.92708e-05 4.45225e-05 3.40464e-05 2.14322e-06 5.03166e-07 4.14422e-08 4.9611e-08 2.05055e-07 1.14021e-05 8.66489e-05 0.000121571 0.000121207 2.08259e-06 2.51885e-08 6.23574e-11 4.498e-11 4.94632e-11 9.74969e-12 1.71245e-12 7.79202e-13 1.07997e-12 1.14518e-12 1.42622e-12 1.49891e-12 1.0295e-11 1.01953e-06 0.000160586 8.40071e-58 9.58795e-54 2.98851e-50 5.46465e-47 6.57752e-44 5.54548e-41 2.98147e-38 9.7936e-36 2.37191e-33 5.13523e-31 1.00603e-28 1.543e-26 1.75903e-24 1.73357e-22 1.60157e-20 1.34866e-18 8.71355e-17 2.08973e-16 3.21748e-16 8.52638e-16 3.55079e-15 2.95689e-15 1.88779e-15 1.74854e-15 8.38587e-16 4.91171e-16 2.32066e-16 1.17115e-16 5.00733e-17 2.42778e-17 9.72203e-18 4.25355e-18 1.8349e-18 7.29135e-19 2.97201e-19 1.35681e-19 5.86608e-20 2.55213e-20 1.10043e-20 5.36265e-21 2.49173e-21 1.18886e-21 5.34758e-22 2.22627e-22 9.16335e-23 3.71016e-23 1.38159e-23 4.96418e-24 1.53813e-24 3.85669e-25 8.3417e-26 1.2667e-26 1.76759e-27 3.1462e-28 8.95253e-28 4.48974e-27 2.38804e-26 1.52886e-25 6.82571e-25 2.99683e-24 1.19019e-23 5.1245e-23 2.6814e-22 1.04171e-21 3.48792e-21 1.16768e-20 4.45306e-20 1.61994e-19 4.93129e-19 1.33182e-18 3.65349e-18 1.10438e-17 2.2835e-17 5.12325e-17 1.06588e-16 1.69382e-16 3.67196e-16 6.82512e-16 1.27779e-15 2.01242e-15 3.09746e-15 5.63851e-15 9.08687e-15 1.59728e-14 2.24862e-14 3.62879e-14 5.75779e-14 9.389e-14 1.50561e-13 2.3628e-13 3.31337e-13 4.13654e-13 5.49267e-13 7.61687e-13 8.95542e-13 1.15956e-12 1.63879e-12 1.77667e-12 2.02607e-12 2.42249e-12 2.75909e-12 3.14604e-12 3.78741e-12 4.40243e-12 4.71511e-12 4.95722e-12 5.04218e-12 5.25582e-12 4.85268e-12 4.5934e-12 4.29552e-12 4.093e-12 3.98333e-12 3.93599e-12 3.57044e-12 3.41926e-12 3.41464e-12 3.34245e-12 3.22535e-12 2.97412e-12 2.62215e-12 2.17627e-12 1.73594e-12 1.31299e-12 8.608e-13 5.84644e-13 4.15215e-13 3.09478e-13 2.42179e-13 1.96886e-13 1.57582e-13 1.23516e-13 1.00134e-13 8.48331e-14 7.93159e-14 8.79853e-14 9.01466e-14 9.66513e-14 1.1319e-13 1.21395e-13 1.30287e-13 1.35384e-13 1.25699e-13 1.1965e-13 1.14064e-13 1.08419e-13 1.07177e-13 1.09088e-13 1.14867e-13 1.19596e-13 1.33243e-13 1.42252e-13 1.58171e-13 1.70385e-13 1.99079e-13 2.37618e-13 2.88341e-13 3.48005e-13 4.04763e-13 4.69798e-13 4.98545e-13 4.90824e-13 4.70678e-13 4.45512e-13 4.14864e-13 4.08528e-13 3.51908e-13 3.12566e-13 2.92671e-13 2.9786e-13 3.26544e-13 3.98205e-13 4.51861e-13 5.02961e-13 6.12377e-13 8.18959e-13 1.14119e-12 1.65246e-12 2.32203e-12 2.99654e-12 3.69415e-12 4.45409e-12 5.32739e-12 6.05212e-12 8.15482e-12 1.94638e-11 3.61658e-11 4.01331e-11 4.55664e-11 6.8453e-11 2.4744e-09 1.52643e-06 8.538e-06 1.22495e-05 1.22468e-05 1.22469e-05 1.07977e-05 1.12017e-05 4.50265e-05 4.47459e-05 2.7711e-05 2.90038e-06 3.28627e-07 3.75664e-08 3.95204e-08 2.28805e-06 6.53146e-05 0.000121467 0.000121642 6.84334e-05 1.33259e-06 2.47161e-09 4.21633e-12 1.83676e-11 2.25416e-12 2.06228e-12 1.09358e-12 4.19443e-13 6.09994e-13 6.7535e-13 9.42722e-13 4.15528e-12 2.77669e-09 1.06921e-06 0.000100936 1.41873e-60 2.40794e-56 1.02616e-52 2.43397e-49 3.77722e-46 4.04282e-43 2.74719e-40 1.15222e-37 3.55912e-35 9.67044e-33 2.33026e-30 4.35233e-28 5.94721e-26 6.63247e-24 6.56948e-22 6.37069e-20 5.82936e-18 1.83738e-17 3.30703e-17 7.19841e-17 2.87262e-16 2.70846e-16 2.35559e-16 1.92023e-16 1.08197e-16 6.23367e-17 3.05961e-17 1.54183e-17 6.66918e-18 3.23633e-18 1.26088e-18 5.60903e-19 2.32884e-19 9.24348e-20 3.72232e-20 1.65812e-20 7.0367e-21 2.99918e-21 1.27131e-21 6.14429e-22 2.79932e-22 1.27612e-22 5.42469e-23 2.15491e-23 8.49105e-24 3.28187e-24 1.15576e-24 3.89391e-25 1.12577e-25 2.63701e-26 5.29812e-27 7.02375e-28 8.71049e-29 4.18401e-29 2.79245e-28 1.40136e-27 7.26291e-27 4.58502e-26 2.03257e-25 8.99995e-25 3.56509e-24 1.4946e-23 7.69798e-23 2.99902e-22 1.04173e-21 3.51809e-21 1.3563e-20 4.97994e-20 1.538e-19 4.16213e-19 1.14274e-18 3.54096e-18 7.39988e-18 1.66739e-17 3.58121e-17 5.88367e-17 1.30303e-16 2.37647e-16 4.58975e-16 7.43249e-16 1.17133e-15 2.21691e-15 3.65327e-15 6.71811e-15 9.79898e-15 1.65477e-14 2.70657e-14 4.56181e-14 7.52012e-14 1.21339e-13 1.81641e-13 2.39322e-13 3.32016e-13 4.79604e-13 5.93961e-13 7.89441e-13 1.11165e-12 1.28601e-12 1.5617e-12 1.95065e-12 2.29723e-12 2.67541e-12 3.25048e-12 3.87437e-12 4.24279e-12 4.50224e-12 4.53713e-12 4.51634e-12 4.11183e-12 3.83483e-12 3.537e-12 3.33545e-12 3.19986e-12 3.13036e-12 2.80245e-12 2.65743e-12 2.61849e-12 2.52358e-12 2.39262e-12 2.15825e-12 1.8518e-12 1.48289e-12 1.13827e-12 8.1601e-13 5.28222e-13 3.4676e-13 2.35654e-13 1.6811e-13 1.26079e-13 9.83585e-14 7.59464e-14 5.75849e-14 4.52338e-14 3.72251e-14 3.40488e-14 3.69747e-14 3.7384e-14 3.9873e-14 4.66811e-14 4.98926e-14 5.33759e-14 5.50826e-14 5.06754e-14 4.76429e-14 4.46824e-14 4.16939e-14 4.0358e-14 4.02219e-14 4.19109e-14 4.33472e-14 4.84124e-14 5.20839e-14 5.83302e-14 6.33373e-14 7.4798e-14 9.03364e-14 1.10997e-13 1.36045e-13 1.55417e-13 1.81314e-13 1.95724e-13 1.95232e-13 1.90597e-13 1.77471e-13 1.66796e-13 1.65364e-13 1.4161e-13 1.25373e-13 1.1746e-13 1.20429e-13 1.33941e-13 1.67336e-13 1.95866e-13 2.2515e-13 2.82753e-13 3.89819e-13 5.69291e-13 8.69447e-13 1.26197e-12 1.74283e-12 2.30884e-12 2.98578e-12 3.83202e-12 4.6521e-12 7.52022e-12 2.86524e-11 9.22753e-11 9.55059e-11 1.69452e-10 1.76074e-10 4.5516e-08 4.02564e-06 1.20305e-05 1.2164e-05 7.51151e-06 7.68242e-06 5.16393e-06 1.70131e-05 4.50265e-05 4.50265e-05 7.73551e-06 1.55934e-06 1.05533e-07 1.96642e-08 2.07228e-08 1.71054e-06 4.45405e-05 0.000121141 0.000121467 3.20274e-05 1.45225e-06 3.23265e-11 1.79193e-12 6.48677e-12 1.77563e-12 1.51419e-12 6.30669e-13 2.1166e-13 3.14248e-13 3.53487e-13 6.64064e-13 1.00735e-11 3.48476e-09 7.06957e-07 2.90657e-05 6.92378e-64 2.17338e-59 1.45736e-55 5.00458e-52 1.08757e-48 1.59105e-45 1.46754e-42 8.3597e-40 3.48663e-37 1.26001e-34 3.98467e-32 9.74004e-30 1.7256e-27 2.35946e-25 2.55497e-23 2.5989e-21 3.30928e-19 1.54408e-18 3.48883e-18 6.75814e-18 2.34467e-17 2.53349e-17 2.813e-17 2.08957e-17 1.36805e-17 7.78459e-18 3.97382e-18 2.00018e-18 8.84089e-19 4.23632e-19 1.63333e-19 7.26226e-20 2.92138e-20 1.15379e-20 4.5917e-21 2.00446e-21 8.29235e-22 3.4772e-22 1.45196e-22 6.9168e-23 3.06452e-23 1.32906e-23 5.35285e-24 2.03451e-24 7.65484e-25 2.82418e-25 9.41039e-26 2.97024e-26 7.99307e-27 1.74848e-27 3.26407e-28 3.77355e-29 4.86571e-30 9.89335e-30 8.02086e-29 3.8992e-28 1.93956e-27 1.18047e-26 5.09216e-26 2.23239e-25 8.72741e-25 3.55793e-24 1.78994e-23 6.97568e-23 2.49945e-22 8.50452e-22 3.30237e-21 1.21828e-20 3.81561e-20 1.0355e-19 2.84626e-19 9.00366e-19 1.90406e-18 4.31207e-18 9.5189e-18 1.60621e-17 3.63603e-17 6.55945e-17 1.30421e-16 2.17308e-16 3.51463e-16 6.91289e-16 1.16906e-15 2.24209e-15 3.3882e-15 5.97843e-15 1.01205e-14 1.77179e-14 3.02543e-14 5.06346e-14 8.09076e-14 1.12877e-13 1.64985e-13 2.50323e-13 3.32369e-13 4.66747e-13 6.6931e-13 8.46438e-13 1.10911e-12 1.4566e-12 1.7906e-12 2.14087e-12 2.63371e-12 3.20823e-12 3.59966e-12 3.85695e-12 3.86555e-12 3.72408e-12 3.36193e-12 3.09738e-12 2.82388e-12 2.6273e-12 2.47982e-12 2.38213e-12 2.1153e-12 1.98994e-12 1.93357e-12 1.83384e-12 1.70605e-12 1.5024e-12 1.25244e-12 9.66331e-13 7.13319e-13 4.86611e-13 3.07028e-13 1.93162e-13 1.24979e-13 8.4832e-14 6.05718e-14 4.50337e-14 3.33053e-14 2.4249e-14 1.8336e-14 1.45669e-14 1.29495e-14 1.36735e-14 1.3568e-14 1.43122e-14 1.66473e-14 1.76524e-14 1.87401e-14 1.91138e-14 1.73158e-14 1.5951e-14 1.45671e-14 1.31768e-14 1.23053e-14 1.18242e-14 1.19835e-14 1.21245e-14 1.34593e-14 1.4593e-14 1.64698e-14 1.80383e-14 2.15291e-14 2.63144e-14 3.27488e-14 4.07578e-14 4.49823e-14 5.24332e-14 5.79026e-14 5.89823e-14 5.92929e-14 5.39574e-14 5.15266e-14 5.14527e-14 4.38376e-14 3.87318e-14 3.63393e-14 3.75587e-14 4.24264e-14 5.43743e-14 6.56465e-14 7.80338e-14 1.01356e-13 1.44718e-13 2.22133e-13 3.59292e-13 5.27564e-13 7.7759e-13 1.11456e-12 1.55922e-12 2.17679e-12 2.90108e-12 4.54911e-12 3.14353e-11 1.77865e-10 2.78113e-10 1.88898e-09 4.58512e-09 1.7418e-07 4.84326e-06 1.20708e-05 3.87049e-06 1.10385e-06 1.53074e-06 1.64021e-06 1.92338e-05 4.50265e-05 2.18293e-05 1.21092e-07 2.20465e-07 4.1795e-09 3.97354e-09 1.4555e-08 6.93528e-07 1.27401e-05 5.94071e-05 9.40563e-05 1.63811e-05 6.75516e-07 6.97544e-13 6.22638e-13 2.10618e-12 9.34622e-13 9.11068e-13 3.24102e-13 1.01411e-13 1.49305e-13 1.72025e-13 3.88184e-13 1.32157e-11 2.52579e-09 2.88101e-07 1.08296e-06 1.29417e-68 2.31863e-63 3.33536e-59 2.13263e-55 8.08127e-52 1.96775e-48 2.91388e-45 2.59556e-42 1.65151e-39 8.85748e-37 4.08963e-34 1.4645e-31 3.81253e-29 7.40443e-27 9.99825e-25 9.41023e-23 1.68844e-20 1.22306e-19 3.56332e-19 6.80124e-19 1.99614e-18 2.4688e-18 3.24004e-18 2.28401e-18 1.69679e-18 9.61701e-19 5.09034e-19 2.56437e-19 1.16243e-19 5.45784e-20 2.10887e-20 9.24136e-21 3.62804e-21 1.41909e-21 5.58467e-22 2.39591e-22 9.61583e-23 3.97572e-23 1.63707e-23 7.63449e-24 3.2659e-24 1.345e-24 5.14458e-25 1.87455e-25 6.72004e-26 2.36701e-26 7.46139e-27 2.20274e-27 5.50577e-28 1.12454e-28 1.94966e-29 1.97597e-30 4.38689e-31 2.44959e-30 1.99719e-29 9.22384e-29 4.31483e-28 2.46138e-27 9.99706e-27 4.18624e-26 1.57028e-25 6.13465e-25 2.98297e-24 1.1578e-23 4.25148e-23 1.45536e-22 5.6809e-22 2.09896e-21 6.65685e-21 1.81217e-20 4.98873e-20 1.60504e-19 3.43437e-19 7.82616e-19 1.76917e-18 3.04931e-18 7.05682e-18 1.26911e-17 2.59346e-17 4.44522e-17 7.39136e-17 1.51016e-16 2.6277e-16 5.24846e-16 8.22192e-16 1.51553e-15 2.66441e-15 4.86431e-15 8.65996e-15 1.51529e-14 2.57665e-14 3.82118e-14 5.93611e-14 9.568e-14 1.37892e-13 2.09171e-13 3.19296e-13 4.53535e-13 6.62272e-13 9.52486e-13 1.26817e-12 1.6038e-12 2.03929e-12 2.54679e-12 2.92379e-12 3.15856e-12 3.16259e-12 2.99136e-12 2.67923e-12 2.43192e-12 2.18581e-12 1.99973e-12 1.85115e-12 1.74192e-12 1.53907e-12 1.43512e-12 1.37367e-12 1.28004e-12 1.16619e-12 1.00025e-12 8.08378e-13 5.99768e-13 4.24929e-13 2.76066e-13 1.67922e-13 1.00481e-13 6.15525e-14 3.9508e-14 2.6679e-14 1.87718e-14 1.32002e-14 9.15639e-15 6.61376e-15 5.03437e-15 4.31621e-15 4.39903e-15 4.2532e-15 4.40428e-15 5.05216e-15 5.28331e-15 5.53165e-15 5.53768e-15 4.89515e-15 4.36609e-15 3.82138e-15 3.28227e-15 2.8802e-15 2.58496e-15 2.45762e-15 2.34936e-15 2.5447e-15 2.77763e-15 3.15888e-15 3.48825e-15 4.20804e-15 5.20657e-15 6.56456e-15 8.29721e-15 8.6376e-15 9.94549e-15 1.1341e-14 1.19535e-14 1.25668e-14 1.10812e-14 1.08431e-14 1.09036e-14 9.25324e-15 8.16578e-15 7.67885e-15 8.00518e-15 9.19086e-15 1.20967e-14 1.50669e-14 1.85417e-14 2.49659e-14 3.70657e-14 5.99365e-14 1.0304e-13 1.46566e-13 2.26396e-13 3.50346e-13 5.27064e-13 7.93797e-13 1.18475e-12 1.2234e-12 1.82463e-11 1.97683e-10 3.7157e-10 3.90604e-09 6.82308e-08 1.10202e-06 7.19503e-06 9.09274e-06 3.82656e-07 1.99554e-07 2.06165e-07 3.37358e-06 3.96554e-05 4.46707e-05 3.9643e-06 1.46681e-09 8.57084e-10 3.26655e-10 5.95833e-10 8.05765e-09 1.25054e-07 5.98904e-07 6.77368e-06 2.24592e-05 5.91643e-06 1.13333e-07 2.97197e-13 2.17052e-13 9.90849e-13 3.65649e-13 4.06261e-13 1.50189e-13 4.65628e-14 6.59582e-14 7.82046e-14 2.13028e-13 8.5128e-12 9.23029e-10 3.156e-08 1.46285e-08 1.48096e-109 3.16195e-72 3.51805e-66 2.99121e-61 6.00674e-57 5.71104e-53 2.73012e-49 6.91034e-46 1.12549e-42 1.37998e-39 1.31955e-36 9.35987e-34 4.78013e-31 1.78372e-28 4.24473e-26 3.44662e-24 8.10207e-22 9.16916e-21 3.48794e-20 7.08028e-20 1.80418e-19 2.52602e-19 3.63889e-19 2.53181e-19 2.07122e-19 1.18179e-19 6.44342e-20 3.26014e-20 1.51344e-20 6.9412e-21 2.70685e-21 1.15807e-21 4.46407e-22 1.72177e-22 6.70163e-23 2.83024e-23 1.09853e-23 4.48082e-24 1.81939e-24 8.24962e-25 3.38824e-25 1.32461e-25 4.82131e-26 1.68653e-26 5.75072e-27 1.93409e-27 5.76319e-28 1.58835e-28 3.68167e-29 7.02112e-30 1.12953e-30 1.03807e-31 6.92412e-32 5.3684e-31 4.16515e-30 1.77785e-29 7.55508e-29 3.85278e-28 1.38374e-27 5.09984e-27 1.6929e-26 5.93214e-26 2.67241e-25 1.01814e-24 3.81086e-24 1.31042e-23 5.13634e-23 1.89722e-22 6.08572e-22 1.66256e-21 4.58961e-21 1.49889e-20 3.24229e-20 7.44495e-20 1.71818e-19 3.01328e-19 7.12239e-19 1.28339e-18 2.68939e-18 4.73702e-18 8.10846e-18 1.71819e-17 3.08256e-17 6.40476e-17 1.04173e-16 2.00539e-16 3.67208e-16 7.01193e-16 1.30806e-15 2.4071e-15 4.35623e-15 6.90024e-15 1.1491e-14 1.99381e-14 3.1532e-14 5.27236e-14 8.90755e-14 1.46253e-13 2.49005e-13 4.19471e-13 6.53363e-13 9.53974e-13 1.37109e-12 1.88685e-12 2.29366e-12 2.49809e-12 2.50674e-12 2.34662e-12 2.08095e-12 1.85454e-12 1.63844e-12 1.47135e-12 1.33345e-12 1.22789e-12 1.0794e-12 9.95573e-13 9.37078e-13 8.56028e-13 7.61895e-13 6.34787e-13 4.95997e-13 3.52883e-13 2.39235e-13 1.47765e-13 8.58541e-14 4.85347e-14 2.7994e-14 1.68918e-14 1.07204e-14 7.09039e-15 4.70515e-15 3.084e-15 2.11017e-15 1.52639e-15 1.25127e-15 1.2208e-15 1.14014e-15 1.14867e-15 1.28836e-15 1.31879e-15 1.35105e-15 1.31544e-15 1.12059e-15 9.51598e-16 7.79546e-16 6.14771e-16 4.83108e-16 3.78088e-16 3.08203e-16 2.50176e-16 2.45959e-16 2.68946e-16 3.0838e-16 3.43174e-16 4.18242e-16 5.23843e-16 6.6932e-16 8.58903e-16 8.13121e-16 9.04395e-16 1.08361e-15 1.20908e-15 1.35864e-15 1.14719e-15 1.163e-15 1.17707e-15 9.96307e-16 8.78947e-16 8.2883e-16 8.71987e-16 1.01815e-15 1.37723e-15 1.77084e-15 2.2589e-15 3.15923e-15 4.89053e-15 8.34487e-15 1.5292e-14 1.92368e-14 2.91775e-14 4.70669e-14 7.0969e-14 9.96737e-14 1.52189e-13 2.35635e-13 1.02443e-12 5.3485e-11 1.63238e-10 2.31983e-09 1.40612e-07 2.48523e-06 6.6184e-06 3.02979e-06 1.71381e-07 1.78426e-07 7.36794e-07 1.40387e-05 3.82294e-05 2.28899e-05 1.46681e-09 9.82236e-10 3.26657e-10 3.26585e-10 3.36003e-10 1.49981e-09 2.20548e-09 2.264e-08 2.37872e-07 3.52012e-07 2.90195e-07 7.99327e-14 4.5698e-12 4.79236e-14 3.00695e-13 1.21518e-13 1.58294e-13 6.35479e-14 2.05671e-14 2.72691e-14 3.32689e-14 1.22292e-13 1.99739e-12 4.99569e-11 1.09288e-10 5.35708e-10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 1 1 1 1 1 0.999988 1 1 1 0.999999 0.999998 0.999927 1 1 1 0.999973 0.998794 0.915197 1 1 0.999999 0.999941 0.910161 0.444973 1 1 0.999979 0.961587 0.543815 0.091013 1 0.999998 0.999918 0.85476 0.197564 0.0588336 0.999998 0.999972 0.954015 0.393274 0.0823934 0.0276085 0.999972 0.985776 0.683121 0.101849 0.0133539 0.00346468 0.999498 0.871426 0.166363 0.00176189 0.0011447 0.00113832 0.924127 0.287502 0.00381795 0.0011447 0.0011447 0.0010936 0.443024 0.0245035 0.00141191 0.00134282 0.00124054 0.00109858 0.0168426 0.00301049 0.00306127 0.00334725 0.00332308 0.00110791 0.00269173 0.00351092 0.00347436 0.00342267 0.00334725 0.00119628 0.00265453 0.00241441 0.00263026 0.000913104 0.0011268 0.000968562 0.000767536 0.000255861 0.000241264 0.000140792 0.000307048 0.000472687 0.000380214 7.64471e-05 7.71104e-05 9.94382e-05 0.000662082 0.000587277 0.000319857 7.79304e-05 7.64471e-05 0.000120714 0.00185637 0.00189785 0.000146762 7.7569e-05 0.000162009 0.000155576 0.000705064 0.00279109 8.90764e-05 0.000202481 0.000507974 0.000437117 0.00052063 0.00263583 9.03776e-05 0.000473745 0.000507974 0.000507974 0.000311891 0.000698665 0.000155798 0.000490903 0.000507974 0.000310688 0.000163603 0.000194222 0.000214809 0.000494267 0.000213863 1.58916e-05 6.26549e-05 0.000271211 0.00022527 0.000489098 1.03729e-05 7.14981e-08 2.22704e-05 0.000274907 0.000222037 0.000448109 5.22179e-08 6.66502e-09 5.07281e-06 6.91101e-05 0.000166008 0.000168955 6.66497e-09 7.88215e-10 8.66451e-07 1.08923e-05 0.00020352 3.31348e-05 1.67755e-08 3.48299e-11 1.23447e-07 1.96628e-06 0.000355599 1.14657e-05 8.64361e-08 2.78582e-13 6.63542e-09 1.32687e-07 0.000355658 1.19934e-05 2.62542e-08 1.72776e-13 2.80769e-13 9.11031e-10 0.000332489 1.67767e-05 2.48474e-13 1.5394e-13 7.47954e-13 9.51874e-12 9.4167e-05 3.91827e-06 2.29037e-13 1.44766e-13 4.58092e-13 8.17458e-13 3.26051e-06 1.48583e-10 2.17207e-13 1.39997e-13 1.17552e-13 2.5278e-13 2.43512e-07 8.59059e-12 1.40343e-13 6.77876e-14 2.60275e-14 5.19115e-14 1.62223e-08 4.50229e-13 1.27672e-13 1.76842e-14 6.05319e-15 1.45308e-14 5.33259e-10 6.99875e-14 3.7465e-14 1.96215e-15 4.95112e-16 1.04224e-15 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999994 0.999974 0.999999 1 1 0.999954 0.999984 0.999866 0.999997 1 1 0.998934 0.997511 0.999808 1 1 1 0.963837 0.990165 0.99999 1 1 1 0.80837 0.981114 0.999998 0.999999 0.999996 0.999995 0.564103 0.979147 0.999991 0.999997 0.99999 0.999987 0.304677 0.893405 0.999989 0.99999 0.999985 0.999985 0.0985412 0.563782 0.996585 0.999989 0.999985 0.999988 0.0329363 0.17322 0.831081 0.99999 0.999993 0.999998 0.0286985 0.0439167 0.360074 0.93131 1 1 0.022774 0.0476575 0.06366 0.557739 0.9899 1 0.0173014 0.0265695 0.00159085 0.110169 0.73753 0.999991 0.0208824 0.0109731 0.00087824 0.00126671 0.162578 0.793946 0.021968 0.00401414 0.000878726 0.00087824 0.00427437 0.128412 0.021968 0.00320736 0.00087824 0.00135545 0.00148054 0.00168022 0.0213288 0.00278152 0.000894857 0.00350889 0.00346906 0.00324503 0.00704571 0.00110846 0.00208023 0.00257214 0.00320152 0.00261284 0.000635381 0.000624033 0.00216991 0.000585966 0.000219089 0.000298776 0.000558372 0.00062541 0.00194098 0.000279373 3.41033e-06 7.77636e-06 0.000630227 0.000624033 0.000935155 0.000111122 1.65203e-06 3.19757e-08 0.00141693 0.00256367 0.00102069 4.8497e-05 3.25322e-06 2.18343e-08 0.00271626 0.00270768 0.000656005 5.2154e-05 3.24854e-06 1.13727e-08 0.00227243 0.00140441 0.000258935 9.008e-05 4.90662e-06 6.00221e-10 0.000446838 0.000308147 0.000252827 6.59317e-05 1.44931e-07 2.84805e-11 0.000223698 0.0002689 0.000119954 2.12889e-05 5.52329e-09 4.45649e-12 0.000134496 3.69e-05 4.34867e-05 1.32098e-05 8.92277e-09 1.64812e-12 3.43743e-07 1.19624e-06 3.39606e-05 2.20024e-06 5.29627e-10 1.07916e-12 3.39499e-07 8.96019e-07 1.57362e-05 2.91353e-10 8.88084e-13 8.49211e-13 2.25861e-07 2.39911e-07 1.88429e-06 7.34063e-12 7.90623e-13 3.44524e-13 3.03573e-08 8.79161e-10 4.34329e-10 1.46535e-11 6.46483e-13 1.47737e-13 1.30247e-09 1.55438e-10 1.67357e-09 1.3713e-11 7.60427e-13 7.17412e-14 2.64038e-11 3.97959e-12 3.19014e-13 2.03672e-13 4.59028e-14 1.5424e-14 1.29891e-12 4.50427e-12 2.89981e-13 2.7968e-14 7.8763e-15 4.66736e-15 4.26503e-13 2.21973e-12 1.89483e-13 6.50328e-15 1.5218e-15 1.16882e-15 6.73001e-14 8.25643e-13 9.26962e-14 1.14237e-15 2.21346e-16 2.07319e-16 5.8402e-15 2.85503e-14 6.01974e-15 5.57333e-17 2.05308e-17 2.18809e-17 4.22547e-16 3.67997e-15 4.76696e-16 1.64936e-18 1.02467e-18 9.09682e-19 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999992 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999988 0.999997 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999993 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999996 0.999999 0.999999 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999999 0.999999 0.999998 0.999997 0.999995 0.999992 0.999988 0.999984 0.999979 0.999974 0.99997 0.999967 0.99997 0.999981 0.999991 0.999996 0.999995 0.999995 0.999996 0.999998 0.999998 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.991137 0.968835 0.972318 0.982589 0.99249 0.998664 0.999973 0.999978 0.999979 0.999979 0.999981 0.99999 0.999996 0.999997 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999995 0.999987 0.999969 0.999933 0.999864 0.99974 0.999528 0.99918 0.998619 0.997742 0.996414 0.994469 0.991729 0.988013 0.98318 0.977193 0.97018 0.962333 0.954058 0.946179 0.939637 0.935597 0.934869 0.93908 0.948009 0.961118 0.976968 0.991485 0.999608 0.999908 0.999935 0.999968 0.99999 0.999994 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999958 0.999556 0.999374 0.999347 0.999505 0.999796 0.999994 0.999996 0.999999 1 1 1 0.508947 0.541726 0.569443 0.62 0.68197 0.747528 0.805183 0.849302 0.886758 0.921077 0.955147 0.984442 0.999061 0.999895 0.999939 0.999975 0.999992 0.999995 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999988 0.999962 0.999895 0.999739 0.999408 0.998747 0.997491 0.99514 0.990761 0.982789 0.96904 0.946937 0.914012 0.868759 0.811618 0.748851 0.689932 0.636037 0.587483 0.544406 0.50706 0.476056 0.452317 0.437342 0.432354 0.442147 0.46834 0.513138 0.579789 0.666159 0.765369 0.852819 0.921446 0.973676 0.999147 0.999832 0.999935 0.999983 0.999992 0.999998 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999971 0.999212 0.979813 0.873441 0.760108 0.667927 0.597994 0.548441 0.517798 0.505427 0.510454 0.532097 0.569386 0.622216 0.690088 0.771907 0.867016 0.968582 0.998161 0.999208 0.999806 0.0170959 0.0375666 0.0497551 0.0646155 0.0877167 0.123015 0.17067 0.231688 0.304467 0.390557 0.496265 0.624991 0.757454 0.859475 0.931821 0.979509 0.999249 0.999845 0.999929 0.999981 0.999991 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999997 0.999986 0.999946 0.999814 0.999423 0.998383 0.995749 0.989154 0.973593 0.940755 0.878778 0.776395 0.657073 0.539398 0.428983 0.331369 0.251347 0.191553 0.150191 0.117852 0.0921858 0.0716901 0.0553865 0.0426699 0.0333036 0.0270235 0.0238149 0.0226206 0.023157 0.0257727 0.0317116 0.0440713 0.0686023 0.118703 0.222832 0.376632 0.559074 0.754369 0.889556 0.969427 0.999593 0.999826 0.999964 0.999987 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999992 0.999784 0.993732 0.894663 0.65338 0.425075 0.220891 0.0609116 0.0191152 0.0101864 0.00591285 0.00326828 0.00167157 0.000668581 4.85095e-05 4.33339e-14 2.64415e-14 1.59557e-14 3.64039e-17 7.83338e-18 1.69461e-14 1.44269e-14 0.00519681 0.0947021 0.2234 0.363547 0.00192006 0.00165753 0.00184268 0.00220088 0.0028483 0.00379777 0.00504924 0.0069658 0.010756 0.0181722 0.0321453 0.0616741 0.126971 0.255883 0.420215 0.596851 0.764693 0.881471 0.959825 0.997859 0.999782 0.999942 0.999982 0.999996 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999989 0.999954 0.999811 0.999265 0.997291 0.990072 0.96484 0.893651 0.744059 0.570334 0.40655 0.267657 0.17095 0.107009 0.0608194 0.0293918 0.0106359 0.00218639 0.000764814 0.000937716 0.00104056 0.00109172 0.00110555 0.00108815 0.00105146 0.000999645 0.00092688 0.000835729 0.000770086 0.000750263 0.00077809 0.000886302 0.00115804 0.00169766 0.00285826 0.00580239 0.0138782 0.0372559 0.106602 0.290475 0.536302 0.787678 0.928599 0.994818 0.999724 0.999945 0.999984 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999993 0.999875 0.996378 0.91493 0.600157 0.277477 0.0592489 0.0226761 0.00628842 7.14968e-05 1.72438e-05 6.0657e-06 2.09475e-06 6.97755e-07 1.68763e-07 3.55578e-08 1.20416e-11 4.60115e-14 1.47585e-14 2.13169e-17 3.07496e-20 4.10264e-23 6.76458e-23 3.77402e-25 9.48342e-28 5.08313e-30 1.76516e-32 1.88091e-35 5.16516e-39 0.00278443 0.00125948 0.000176541 9.53498e-05 0.000109426 0.000138835 0.000166883 0.000205775 0.000312875 0.000537947 0.000866277 0.00150483 0.00332515 0.00815558 0.0205781 0.0522603 0.130576 0.2949 0.509372 0.74099 0.901613 0.986402 0.999648 0.999926 0.999982 0.999997 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999998 0.999993 0.999971 0.999872 0.999427 0.997403 0.987216 0.936589 0.760847 0.51043 0.289083 0.149636 0.0707849 0.0241977 0.00318604 0.000116324 6.12703e-05 3.23655e-05 1.77735e-05 3.82898e-05 4.86706e-05 5.16927e-05 5.25711e-05 5.26346e-05 5.22626e-05 5.17409e-05 5.04101e-05 4.80879e-05 4.55567e-05 4.19168e-05 3.69142e-05 3.27009e-05 3.05388e-05 3.01659e-05 3.22066e-05 4.00222e-05 5.62576e-05 8.87089e-05 0.000162707 0.00034214 0.000815696 0.002301 0.0080328 0.0317183 0.12718 0.386945 0.692705 0.90096 0.990877 0.999685 0.99994 0.999985 0.999997 0.999999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999999 0.999983 0.999701 0.991895 0.842024 0.449004 0.1074 0.0265821 0.000483295 7.2164e-05 2.677e-05 6.06141e-06 1.44414e-06 3.25018e-07 1.00653e-07 2.70037e-08 6.63136e-09 1.0339e-09 3.63294e-11 6.96719e-14 3.55068e-14 4.13011e-17 5.20847e-20 6.60151e-23 3.8519e-25 7.3344e-27 3.56198e-29 9.07652e-32 4.07331e-34 1.26144e-36 1.26391e-39 3.36538e-43 0.00101034 0.000528704 6.11838e-05 8.88759e-06 4.1551e-06 4.81503e-06 5.57028e-06 5.77474e-06 8.07238e-06 1.46064e-05 2.00263e-05 3.13575e-05 7.35878e-05 0.000193653 0.000494761 0.00128384 0.00341409 0.00989849 0.032101 0.111635 0.335807 0.637949 0.879419 0.987487 0.999668 0.999949 0.99999 0.999998 1 1 1 0.999999 0.999999 0.999999 0.999999 0.999999 0.999997 0.999993 0.999978 0.999919 0.999654 0.998366 0.990976 0.941598 0.715187 0.390457 0.158827 0.0508479 0.00549603 0.000204149 8.15533e-05 2.78128e-05 8.68569e-06 3.32131e-06 2.27609e-06 2.54464e-06 2.59124e-06 2.49966e-06 2.41217e-06 2.36167e-06 2.34346e-06 2.32856e-06 2.29827e-06 2.2717e-06 2.24167e-06 2.17699e-06 2.09253e-06 1.93517e-06 1.723e-06 1.54733e-06 1.39957e-06 1.3463e-06 1.41257e-06 1.63331e-06 2.13838e-06 3.34151e-06 5.77012e-06 1.09838e-05 2.5778e-05 6.73612e-05 0.000197273 0.00065748 0.00266235 0.0136301 0.0706375 0.306488 0.655536 0.896404 0.990108 0.999692 0.999947 0.999988 0.999998 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0.999998 0.999978 0.999642 0.992669 0.850661 0.422831 0.0844404 0.0130523 0.000204793 5.43678e-05 1.3893e-05 2.5098e-06 8.0607e-07 1.42467e-07 2.95459e-08 6.09147e-09 1.64605e-09 3.4626e-10 6.27872e-11 6.4049e-12 1.029e-13 2.43865e-14 9.53365e-17 1.05956e-19 1.23965e-22 1.45132e-25 1.58878e-28 1.52932e-31 1.22087e-34 7.55916e-38 1.09205e-40 1.69797e-43 1.19151e-46 2.6335e-50 9.72591e-05 8.28988e-05 2.90587e-05 5.4222e-06 1.3422e-07 1.69e-07 1.83906e-07 1.46721e-07 1.67399e-07 3.00204e-07 3.62622e-07 4.9593e-07 1.06183e-06 2.6954e-06 7.87309e-06 2.61606e-05 8.5289e-05 0.000265331 0.000837271 0.00289429 0.0123495 0.0622965 0.285689 0.646419 0.907038 0.99721 0.999814 0.99996 0.99999 0.999994 0.999994 0.999994 0.999994 0.999993 0.999992 0.999987 0.999972 0.999925 0.999756 0.999037 0.995297 0.968437 0.788343 0.410134 0.133814 0.0214178 0.000414532 0.000116511 2.78402e-05 7.69075e-06 2.71705e-06 8.62126e-07 3.25408e-07 2.35381e-07 2.0862e-07 1.88697e-07 1.62691e-07 1.38347e-07 1.18405e-07 1.05962e-07 1.0106e-07 9.93992e-08 9.74864e-08 9.60803e-08 9.55078e-08 9.47722e-08 9.45163e-08 9.02638e-08 8.34649e-08 7.90503e-08 7.30104e-08 6.97739e-08 7.44347e-08 8.25183e-08 9.94768e-08 1.57554e-07 2.62114e-07 4.47447e-07 1.04511e-06 2.55852e-06 6.43588e-06 1.95361e-05 7.52182e-05 0.000318741 0.00139078 0.00826298 0.0559892 0.287235 0.646217 0.898411 0.991486 0.999735 0.99995 0.999988 0.999997 1 1 1 1 1 1 1 1 1 0.999999 0.999996 0.99997 0.999686 0.994591 0.889098 0.478736 0.102689 0.0116169 0.000258007 5.9967e-05 9.3502e-06 2.15993e-06 5.5448e-07 8.66843e-08 2.41339e-08 3.39889e-09 6.11339e-10 1.1373e-10 2.66636e-11 4.50445e-12 6.52417e-13 1.01082e-13 3.01678e-14 2.28106e-16 3.08045e-19 3.2849e-22 3.62418e-25 3.99229e-28 4.1321e-31 3.79588e-34 2.96457e-37 1.96855e-40 2.61437e-43 3.6308e-46 2.4131e-49 4.87384e-53 3.31081e-06 1.07379e-05 1.10051e-05 2.13136e-06 6.75912e-10 5.45745e-09 5.76487e-09 3.24378e-09 2.9264e-09 4.84652e-09 5.65915e-09 6.77853e-09 1.0869e-08 1.96014e-08 6.49937e-08 3.26549e-07 1.74953e-06 7.52738e-06 2.79437e-05 9.88916e-05 0.000377441 0.00168508 0.00956841 0.0655824 0.34659 0.741265 0.952876 0.999475 0.99983 0.999918 0.999935 0.999937 0.999937 0.999935 0.999919 0.999863 0.999702 0.999172 0.997042 0.985009 0.896953 0.546064 0.181777 0.0259392 0.000506076 0.000124304 2.32092e-05 5.50726e-06 1.21923e-06 3.12892e-07 1.4208e-07 5.48553e-08 1.80712e-08 1.00232e-08 8.77827e-09 8.67495e-09 8.04977e-09 6.75744e-09 5.33713e-09 4.4409e-09 4.10241e-09 4.01823e-09 3.91554e-09 3.83568e-09 3.8237e-09 3.84704e-09 3.95153e-09 3.89909e-09 3.78486e-09 3.80336e-09 3.63303e-09 3.5392e-09 3.91103e-09 4.25147e-09 4.81068e-09 7.61011e-09 1.24771e-08 1.94544e-08 4.56858e-08 1.10484e-07 2.49791e-07 6.86191e-07 2.79364e-06 1.0771e-05 3.67211e-05 0.000195891 0.00117874 0.00694258 0.0491005 0.284305 0.654087 0.897119 0.986084 0.999764 0.999928 0.999983 0.999996 0.999999 0.999999 0.999999 0.999999 0.999998 0.999996 0.999986 0.999934 0.999501 0.994623 0.920578 0.550777 0.13874 0.0197309 0.000375045 8.4384e-05 1.40616e-05 3.02446e-06 4.25477e-07 8.65049e-08 2.18578e-08 2.976e-09 7.19195e-10 8.22405e-11 1.28524e-11 2.20455e-12 4.93631e-13 1.22767e-13 4.64335e-14 3.23442e-14 5.69212e-16 9.80287e-19 1.2683e-21 1.32547e-24 1.40729e-27 1.48188e-30 1.46631e-33 1.29483e-36 9.91266e-40 6.84815e-43 8.38152e-46 1.04381e-48 6.51741e-52 1.20401e-55 3.05204e-07 1.72069e-06 1.73064e-06 1.29486e-07 9.79605e-11 2.07569e-10 1.78317e-10 6.39208e-11 4.42657e-11 6.93052e-11 8.28386e-11 9.21998e-11 1.18044e-10 4.22416e-10 9.76998e-09 2.58676e-08 6.20205e-08 2.83598e-07 1.30917e-06 4.7547e-06 1.71111e-05 7.59418e-05 0.00038772 0.00209766 0.0143105 0.112515 0.478601 0.835201 0.978549 0.999006 0.999236 0.999322 0.999338 0.999323 0.999147 0.998506 0.996531 0.988582 0.944354 0.710751 0.310162 0.0653404 0.000914767 0.000210088 4.1094e-05 8.27846e-06 1.42131e-06 2.94459e-07 7.63406e-08 2.49575e-08 7.32723e-09 1.92954e-09 6.8347e-10 4.38655e-10 4.48956e-10 4.56746e-10 4.05218e-10 3.04575e-10 2.24112e-10 1.87174e-10 1.76023e-10 1.73689e-10 1.68774e-10 1.66472e-10 1.67623e-10 1.70985e-10 1.78462e-10 1.78877e-10 1.80511e-10 1.8711e-10 1.81246e-10 1.80903e-10 2.04185e-10 2.13847e-10 2.28219e-10 3.55785e-10 5.57512e-10 7.96832e-10 1.84636e-09 4.41654e-09 9.4363e-09 2.36406e-08 1.03289e-07 3.84317e-07 1.09946e-06 6.08586e-06 3.50997e-05 0.000150225 0.000809649 0.00606229 0.0487463 0.265867 0.604442 0.867668 0.961186 0.998218 0.999867 0.999931 0.999963 0.999963 0.999947 0.999888 0.999637 0.998314 0.988493 0.89101 0.556984 0.182493 0.0328586 0.000490955 0.000134394 2.28456e-05 5.04413e-06 7.6146e-07 1.52218e-07 1.92948e-08 3.48612e-09 8.52483e-10 1.0176e-10 2.14258e-11 2.12098e-12 3.46395e-13 1.21437e-13 5.30393e-14 3.62187e-14 1.07733e-14 6.56993e-16 3.32281e-18 5.40611e-21 6.75572e-24 6.90747e-27 7.03755e-30 7.04528e-33 6.61475e-36 5.5673e-39 4.13227e-42 2.88168e-45 3.233e-48 3.60566e-51 2.0956e-54 3.5376e-58 1.11825e-08 7.02244e-08 2.17109e-08 5.78882e-10 1.24927e-11 1.53067e-11 8.47305e-12 3.38222e-12 4.74944e-12 8.36535e-12 1.10534e-11 1.90105e-11 4.19255e-11 2.79348e-10 8.88809e-09 3.12092e-08 3.49685e-08 6.36345e-08 2.57426e-07 4.86886e-07 1.06137e-06 4.14142e-06 2.15283e-05 0.000107497 0.000565881 0.00354053 0.0285776 0.207743 0.586683 0.860762 0.965237 0.990534 0.991554 0.99136 0.988739 0.977393 0.93522 0.768277 0.437415 0.140765 0.0116217 0.000516425 9.73202e-05 1.4894e-05 2.80631e-06 6.13874e-07 1.35663e-07 2.96136e-08 5.34397e-09 1.10349e-09 2.55897e-10 8.17423e-11 4.19531e-11 5.08846e-11 5.59718e-11 5.16003e-11 3.84654e-11 2.66769e-11 1.94045e-11 1.63234e-11 1.53485e-11 1.5021e-11 1.47028e-11 1.48871e-11 1.51068e-11 1.54388e-11 1.56265e-11 1.5329e-11 1.5426e-11 1.54226e-11 1.46448e-11 1.46659e-11 1.56277e-11 1.51263e-11 1.49625e-11 2.05298e-11 2.71929e-11 3.41237e-11 7.1005e-11 1.55216e-10 3.15059e-10 7.28366e-10 3.17944e-09 1.17912e-08 2.9806e-08 1.63601e-07 9.84904e-07 3.54576e-06 1.57514e-05 0.000120803 0.00078861 0.0042887 0.0301681 0.175837 0.449654 0.707915 0.88891 0.954751 0.985869 0.994885 0.991029 0.975723 0.904468 0.701388 0.430919 0.142198 0.0345956 0.000603638 0.000180413 3.12439e-05 8.69492e-06 1.38172e-06 2.99766e-07 4.09627e-08 7.63861e-09 8.72577e-10 1.41301e-10 3.30658e-11 3.57194e-12 7.20135e-13 1.63862e-13 5.62732e-14 8.18022e-14 1.3536e-14 2.37191e-15 1.82837e-16 6.45458e-18 2.38771e-20 3.64103e-23 4.33459e-26 4.26194e-29 4.10873e-32 3.86216e-35 3.40223e-38 2.70146e-41 1.92105e-44 1.32043e-47 1.35202e-50 1.34904e-53 7.24363e-57 1.11559e-60 5.92392e-10 3.46746e-09 9.15483e-11 5.03366e-12 6.5456e-12 6.0714e-12 3.07077e-12 2.03099e-12 3.97162e-12 8.54343e-12 1.19502e-11 2.32888e-11 5.29045e-11 3.24882e-10 1.2039e-08 1.56582e-07 2.61175e-07 2.37076e-07 2.24804e-07 2.07588e-07 1.25389e-07 2.26007e-07 1.00808e-06 4.8255e-06 2.40758e-05 0.000140147 0.000923214 0.00662937 0.0490088 0.250113 0.540715 0.74047 0.819889 0.823605 0.768755 0.622567 0.401649 0.174364 0.0375878 0.0011952 0.000274563 4.11106e-05 5.54335e-06 1.13462e-06 2.58082e-07 6.42665e-08 1.42224e-08 2.49885e-09 3.60838e-10 7.14667e-11 4.57367e-11 3.32333e-11 2.58701e-11 1.91177e-11 1.46767e-11 1.26625e-11 1.11244e-11 9.50965e-12 8.78013e-12 8.76693e-12 9.07287e-12 9.45079e-12 1.0099e-11 1.00944e-11 9.52743e-12 8.55492e-12 7.37218e-12 6.16034e-12 5.22134e-12 4.67312e-12 4.26583e-12 3.98657e-12 3.64666e-12 3.2305e-12 2.95339e-12 2.99353e-12 2.84228e-12 2.93021e-12 4.44528e-12 6.81133e-12 1.12454e-11 2.21881e-11 8.28955e-11 2.88124e-10 6.78876e-10 3.47083e-09 2.05558e-08 6.86473e-08 2.4782e-07 2.07675e-06 1.25898e-05 4.42663e-05 0.000235971 0.00133095 0.0064965 0.0296522 0.112132 0.241745 0.334786 0.367008 0.342386 0.251606 0.126469 0.0620064 0.0166487 0.000338117 0.000135002 3.83323e-05 1.16688e-05 1.9806e-06 5.58511e-07 8.28903e-08 1.76911e-08 2.19102e-09 3.82361e-10 3.95189e-11 5.94149e-12 1.38768e-12 2.11439e-13 8.55844e-14 7.31314e-14 1.69096e-14 3.11377e-15 4.04377e-16 5.9377e-17 3.0233e-18 6.35663e-20 1.95131e-22 2.75302e-25 3.07984e-28 2.87193e-31 2.59448e-34 2.27253e-37 1.86613e-40 1.38954e-43 9.39443e-47 6.26273e-50 5.8395e-53 5.21335e-56 2.57099e-59 3.60489e-63 2.82012e-11 1.22306e-10 5.52052e-12 3.89094e-12 4.09398e-12 3.4176e-12 1.80299e-12 1.32734e-12 2.69177e-12 4.77164e-12 5.28427e-12 8.19362e-12 1.21551e-11 3.62019e-11 5.08178e-10 1.52233e-07 4.85089e-07 4.83139e-07 4.85089e-07 1.5932e-07 1.33271e-08 1.64711e-08 4.08885e-08 1.71208e-07 8.08587e-07 4.44751e-06 2.86891e-05 0.000197307 0.00128868 0.0077796 0.0387493 0.114069 0.197124 0.212055 0.175731 0.100592 0.030958 0.00208857 0.000599384 0.000114936 1.54812e-05 2.4282e-06 4.02064e-07 1.85108e-07 4.845e-08 1.46084e-08 3.02727e-09 1.52448e-09 7.10441e-11 4.54183e-11 4.17581e-11 3.75049e-11 2.98814e-11 2.12648e-11 1.60458e-11 1.3572e-11 1.14077e-11 9.20419e-12 7.97271e-12 7.5626e-12 7.53157e-12 7.59797e-12 7.75939e-12 7.47935e-12 6.91784e-12 6.16467e-12 5.17993e-12 4.23042e-12 3.38467e-12 2.84622e-12 2.45549e-12 2.1731e-12 1.81139e-12 1.53173e-12 1.31269e-12 1.19046e-12 1.04601e-12 9.97014e-13 1.02705e-12 9.66124e-13 1.0305e-12 1.22997e-12 2.5873e-12 6.30889e-12 1.3722e-11 6.49885e-11 3.59249e-10 1.20419e-09 4.04241e-09 3.22857e-08 1.85864e-07 5.64533e-07 3.04397e-06 1.34909e-05 4.45042e-05 0.000138772 0.000332535 0.000944404 0.00219208 0.00397393 0.0038866 0.00021606 8.13524e-05 7.55162e-05 5.36586e-05 1.8122e-05 7.64942e-06 2.40905e-06 7.51141e-07 1.24467e-07 3.55601e-08 4.93956e-09 1.03664e-09 1.16844e-10 1.94668e-11 1.93292e-12 4.6495e-13 1.68281e-13 5.33615e-14 4.35581e-14 6.92203e-15 8.96784e-16 1.19063e-16 1.22105e-17 1.39753e-18 4.89836e-20 6.40856e-22 1.71873e-24 2.25523e-27 2.34701e-30 2.05535e-33 1.72887e-36 1.4043e-39 1.07036e-42 7.44109e-46 4.75286e-49 3.0346e-52 2.57165e-55 2.05378e-58 9.25263e-62 1.1778e-65 4.36988e-12 5.29732e-12 2.65386e-12 2.47042e-12 2.54861e-12 1.94791e-12 1.06044e-12 8.13095e-13 1.38576e-12 1.65791e-12 1.47318e-12 1.30715e-12 1.08284e-12 1.46884e-12 1.63259e-11 4.45936e-09 3.04874e-07 4.85089e-07 3.5621e-07 6.35702e-08 4.80788e-09 4.71068e-09 4.71067e-09 5.55232e-09 1.53666e-08 6.7174e-08 3.6841e-07 2.2233e-06 1.23089e-05 4.9402e-05 0.000102188 0.000106056 2.96711e-05 1.01582e-05 0.000821913 0.0013912 0.00105486 0.000242707 3.23697e-05 6.00108e-06 9.16089e-07 1.70603e-07 7.18768e-08 1.22737e-07 7.58243e-08 6.05495e-08 3.72844e-08 1.00529e-08 5.24166e-11 4.19566e-11 4.16548e-11 3.81722e-11 2.95375e-11 2.03516e-11 1.49719e-11 1.24027e-11 1.00851e-11 7.83297e-12 6.5878e-12 6.2008e-12 6.17871e-12 6.23018e-12 6.27684e-12 5.9544e-12 5.42332e-12 4.76976e-12 3.93628e-12 3.22871e-12 2.54326e-12 2.10057e-12 1.77575e-12 1.535e-12 1.21882e-12 1.00355e-12 8.32929e-13 7.0678e-13 5.96397e-13 5.45203e-13 4.81605e-13 3.87699e-13 3.32409e-13 2.83174e-13 2.70468e-13 2.91845e-13 3.09662e-13 3.40939e-13 5.16427e-13 1.08311e-12 2.58604e-12 1.65621e-11 7.20536e-11 2.42802e-10 1.39087e-09 7.20164e-09 2.35237e-08 7.75668e-08 2.43601e-07 4.99677e-07 9.7021e-07 1.80596e-06 1.4057e-06 2.18325e-06 2.19774e-06 2.58302e-06 2.51554e-06 9.60655e-07 4.34268e-07 1.49368e-07 4.80086e-08 7.76062e-09 2.24376e-09 2.93363e-10 6.06658e-11 6.49262e-12 1.44548e-12 2.29389e-13 7.66866e-14 7.56582e-14 1.38307e-14 2.75189e-15 3.87995e-16 4.5139e-17 4.55171e-18 3.71689e-19 3.16146e-20 7.82311e-22 6.74391e-24 1.60368e-26 1.968e-29 1.89316e-32 1.54684e-35 1.20588e-38 9.04676e-42 6.3742e-45 4.11794e-48 2.46855e-51 1.49266e-54 1.1464e-57 8.17918e-61 3.34765e-64 3.85411e-68 2.64025e-12 1.19399e-12 1.52076e-12 1.55584e-12 1.63675e-12 1.16194e-12 6.22186e-13 4.54273e-13 6.07664e-13 7.32706e-13 6.00472e-13 4.29969e-13 3.4818e-13 5.41911e-13 3.93169e-12 9.3254e-11 2.35447e-08 2.85829e-07 1.09503e-07 1.15501e-08 6.08451e-09 4.80789e-09 1.9361e-09 9.18268e-10 8.1075e-10 4.67326e-10 8.22975e-10 4.04703e-09 8.56136e-09 1.02962e-08 7.58384e-09 1.29357e-09 1.31496e-06 8.64629e-06 2.26245e-05 3.85239e-05 3.50853e-05 1.35908e-05 2.02821e-06 4.6613e-07 7.35378e-08 1.59603e-08 4.93321e-08 1.25465e-07 2.95134e-07 3.01063e-07 2.66304e-07 6.34412e-08 7.27547e-11 4.2744e-11 4.22917e-11 3.66714e-11 2.86921e-11 1.90938e-11 1.31231e-11 1.06115e-11 8.33207e-12 6.35652e-12 5.36693e-12 5.13659e-12 5.14169e-12 5.14158e-12 5.00701e-12 4.60065e-12 4.07322e-12 3.50293e-12 2.84683e-12 2.37895e-12 1.87499e-12 1.53813e-12 1.28876e-12 1.10298e-12 8.51818e-13 6.92016e-13 5.68682e-13 4.84715e-13 4.07113e-13 3.72666e-13 3.28507e-13 2.63401e-13 2.23e-13 1.87225e-13 1.82371e-13 2.09968e-13 2.36819e-13 2.72687e-13 4.12374e-13 5.73471e-13 6.5316e-13 1.4272e-12 6.06914e-12 1.47447e-11 5.95869e-11 3.93962e-10 1.16282e-09 2.54664e-09 9.40301e-09 1.74152e-08 2.66452e-08 5.02363e-08 6.62325e-08 5.22796e-08 6.04716e-08 8.95629e-08 1.17227e-07 5.03035e-08 2.4637e-08 9.14904e-09 3.04494e-09 4.8162e-10 1.40737e-10 1.81347e-11 3.75518e-12 7.09625e-13 1.85725e-13 6.43277e-14 3.37522e-14 1.08498e-14 1.20794e-15 1.74495e-16 2.14571e-17 2.16766e-18 1.73032e-19 1.13144e-20 6.95487e-22 1.23908e-23 7.5027e-26 1.58305e-28 1.80982e-31 1.60614e-34 1.21821e-37 8.75967e-41 6.04006e-44 3.91297e-47 2.33469e-50 1.30312e-53 7.37878e-57 5.11366e-60 3.25012e-63 1.20098e-66 1.2444e-70 1.40346e-12 6.02238e-13 7.88194e-13 1.00882e-12 1.08007e-12 7.21416e-13 3.5861e-13 2.31016e-13 2.9188e-13 3.52472e-13 2.77683e-13 1.69275e-13 1.47633e-13 3.19439e-13 2.38662e-12 5.18384e-11 1.59499e-09 1.50514e-08 1.54461e-08 1.01091e-08 6.78405e-09 7.15215e-08 8.71383e-08 1.60169e-08 4.04335e-10 3.06187e-10 2.88895e-10 2.66216e-10 2.76563e-10 2.26936e-10 1.15787e-10 1.08678e-10 7.26804e-09 2.72235e-07 7.88953e-07 1.1092e-06 1.05849e-06 7.06545e-07 1.87283e-07 5.41986e-08 6.62979e-09 5.94443e-09 2.45404e-08 1.08974e-07 2.53334e-07 3.14002e-07 3.1639e-07 2.06194e-07 1.61311e-08 4.13528e-11 3.65222e-11 3.64642e-11 2.80379e-11 1.72158e-11 1.05708e-11 8.49863e-12 6.50707e-12 5.01973e-12 4.33384e-12 4.20812e-12 4.18092e-12 4.10855e-12 3.87018e-12 3.46909e-12 3.00993e-12 2.53427e-12 2.04846e-12 1.71744e-12 1.3431e-12 1.08662e-12 8.96216e-13 7.55666e-13 5.61182e-13 4.45949e-13 3.59138e-13 3.04924e-13 2.49461e-13 2.26243e-13 1.95247e-13 1.52533e-13 1.23857e-13 9.92078e-14 9.43298e-14 1.03313e-13 1.16715e-13 1.37369e-13 2.03793e-13 2.85416e-13 3.49558e-13 6.28758e-13 1.19357e-12 1.56554e-12 3.18672e-12 1.50447e-11 3.74605e-11 7.30403e-11 2.75444e-10 5.61549e-10 6.93652e-10 1.38496e-09 2.56419e-09 1.41404e-09 1.94259e-09 3.16618e-09 5.4275e-09 2.60658e-09 1.39562e-09 5.55905e-10 1.92376e-10 3.11677e-11 9.25329e-12 2.07167e-12 5.1128e-13 1.03767e-13 1.40045e-13 1.96245e-14 3.91124e-15 9.4036e-16 1.00248e-16 1.1223e-17 1.17688e-18 1.00105e-19 6.50861e-21 3.41537e-22 1.49895e-23 1.95755e-25 8.84679e-28 1.65158e-30 1.74341e-33 1.4177e-36 9.90238e-40 6.52168e-43 4.10495e-46 2.42788e-49 1.32757e-52 6.83609e-56 3.58309e-59 2.2279e-62 1.25597e-65 4.16024e-69 3.85549e-73 6.35887e-13 2.96386e-13 4.39746e-13 6.48337e-13 7.01566e-13 4.4119e-13 1.94529e-13 1.06694e-13 1.35791e-13 1.67853e-13 1.30708e-13 7.34565e-14 7.05524e-14 1.87527e-13 1.24746e-12 6.69757e-11 4.0504e-10 1.99805e-09 4.17069e-09 2.41683e-08 1.24049e-07 3.91443e-07 4.38285e-07 2.01371e-07 1.58595e-08 1.02463e-09 3.31439e-10 1.22589e-10 9.16208e-11 9.59987e-11 1.00311e-10 1.02605e-10 1.03216e-10 1.03893e-08 4.22746e-08 5.20429e-08 4.18628e-08 3.40424e-08 1.59285e-08 6.03875e-09 1.34129e-09 5.88435e-09 6.00412e-08 5.95366e-08 9.45411e-08 3.09914e-07 3.1639e-07 3.16532e-07 5.11288e-08 4.71637e-11 3.559e-11 3.54858e-11 2.56067e-11 1.26405e-11 8.26107e-12 6.48235e-12 4.91937e-12 3.90696e-12 3.43848e-12 3.34825e-12 3.2829e-12 3.17724e-12 2.95359e-12 2.62464e-12 2.25988e-12 1.88071e-12 1.51886e-12 1.25723e-12 9.68583e-13 7.68949e-13 6.21846e-13 5.16587e-13 3.6766e-13 2.8437e-13 2.22009e-13 1.85346e-13 1.44628e-13 1.28539e-13 1.06415e-13 8.05718e-14 6.2433e-14 4.84447e-14 4.45044e-14 4.44385e-14 4.88843e-14 5.35139e-14 6.98191e-14 9.22695e-14 1.15658e-13 1.80918e-13 3.27849e-13 4.35672e-13 6.10347e-13 1.12948e-12 2.04495e-12 3.28326e-12 1.10755e-11 2.2688e-11 2.94409e-11 4.56688e-11 8.58891e-11 5.41675e-11 9.17563e-11 1.42866e-10 2.51308e-10 1.34875e-10 8.05352e-11 3.55188e-11 1.30129e-11 3.66468e-12 1.24584e-12 2.42938e-13 9.10389e-14 5.84806e-14 1.78235e-14 2.49455e-15 4.42331e-16 8.07165e-17 7.91587e-18 7.3082e-19 6.42132e-20 4.47979e-21 2.41321e-22 1.01592e-23 3.18189e-25 3.1001e-27 1.09826e-29 1.80803e-32 1.7426e-35 1.28653e-38 8.19124e-42 4.8944e-45 2.78658e-48 1.49088e-51 7.39889e-55 3.47685e-58 1.66605e-61 9.22411e-65 4.5835e-68 1.34948e-71 1.10976e-75 2.85216e-13 1.57222e-13 2.4336e-13 3.93205e-13 4.28446e-13 2.51493e-13 9.5796e-14 4.52004e-14 5.90925e-14 7.41406e-14 5.74516e-14 3.13751e-14 3.24787e-14 9.83511e-14 5.64727e-13 2.80553e-11 3.28314e-10 8.48391e-10 3.50848e-09 5.1652e-08 3.85237e-07 5.8153e-07 5.81359e-07 5.54962e-07 1.45831e-07 1.82823e-08 4.263e-10 1.02476e-10 9.05322e-11 1.06198e-10 1.03282e-10 1.03615e-10 1.03221e-10 4.70083e-10 2.84915e-09 3.72535e-09 2.17544e-09 1.43396e-09 1.31785e-09 8.03222e-10 9.19033e-10 5.55725e-09 6.28403e-08 2.16784e-08 8.82632e-09 1.1836e-07 3.16532e-07 3.16532e-07 1.72266e-07 1.46047e-08 3.16792e-11 2.94253e-11 1.82304e-11 8.28962e-12 6.38013e-12 4.81155e-12 3.66912e-12 2.99334e-12 2.64671e-12 2.55521e-12 2.46809e-12 2.36207e-12 2.1803e-12 1.92486e-12 1.64654e-12 1.36854e-12 1.09855e-12 9.04444e-13 6.87733e-13 5.36555e-13 4.26587e-13 3.50879e-13 2.41077e-13 1.81896e-13 1.37301e-13 1.1168e-13 8.26662e-14 7.15538e-14 5.65192e-14 4.1922e-14 3.14742e-14 2.46384e-14 2.28105e-14 2.14912e-14 2.26017e-14 2.26845e-14 2.72958e-14 3.52686e-14 4.23958e-14 6.1666e-14 1.06811e-13 1.56755e-13 1.94141e-13 2.95315e-13 4.6885e-13 5.87198e-13 9.96611e-13 1.70038e-12 2.09596e-12 2.59541e-12 4.56209e-12 4.67995e-12 6.38395e-12 9.4003e-12 1.34573e-11 8.08262e-12 6.60134e-12 4.60091e-12 2.06976e-12 4.17085e-13 1.64019e-13 1.33222e-13 4.61746e-14 9.05817e-15 2.22053e-15 3.00385e-16 4.84915e-17 6.89742e-18 6.00476e-19 4.77556e-20 3.48624e-21 1.95518e-22 8.79728e-24 2.96657e-25 6.67903e-27 4.93903e-29 1.41882e-31 2.05147e-34 1.78236e-37 1.18004e-40 6.76062e-44 3.62146e-47 1.8438e-50 8.82267e-54 3.92749e-57 1.66299e-60 7.1857e-64 3.50866e-67 1.52394e-70 3.94725e-74 2.85145e-78 1.13663e-13 7.81782e-14 1.25317e-13 2.1709e-13 2.38321e-13 1.2897e-13 4.18271e-14 1.75843e-14 2.33761e-14 2.92252e-14 2.2657e-14 1.22844e-14 1.34469e-14 4.53248e-14 2.78087e-13 4.02784e-12 2.06336e-10 6.90544e-10 6.15821e-09 3.58458e-08 3.40541e-07 5.81276e-07 5.8153e-07 5.81159e-07 4.02512e-07 5.38262e-08 2.63652e-10 7.09509e-11 8.80628e-11 1.72569e-10 1.12126e-10 1.08356e-10 1.06371e-10 1.45835e-10 4.19786e-10 6.50166e-10 6.10014e-10 6.59126e-10 6.56314e-10 6.3445e-10 8.55689e-10 1.88966e-08 6.28403e-08 6.59131e-09 1.7864e-09 1.02734e-08 2.25868e-07 3.16532e-07 3.15217e-07 6.40926e-08 2.84093e-11 2.08109e-11 1.03391e-11 6.29034e-12 4.85075e-12 3.52631e-12 2.704e-12 2.22694e-12 1.9458e-12 1.84377e-12 1.74925e-12 1.65466e-12 1.51383e-12 1.32529e-12 1.12541e-12 9.35324e-13 7.45717e-13 6.1069e-13 4.60248e-13 3.54985e-13 2.79109e-13 2.28257e-13 1.53188e-13 1.13444e-13 8.32884e-14 6.60636e-14 4.69717e-14 3.95935e-14 3.0294e-14 2.24095e-14 1.65856e-14 1.33142e-14 1.24809e-14 1.11738e-14 1.11776e-14 1.02495e-14 1.16848e-14 1.40645e-14 1.57442e-14 2.087e-14 3.37033e-14 5.05462e-14 6.77568e-14 9.54374e-14 1.51671e-13 2.0637e-13 2.99075e-13 5.01185e-13 7.00376e-13 8.58696e-13 1.11303e-12 1.69798e-12 1.94053e-12 2.38467e-12 2.81753e-12 1.76258e-12 1.1445e-12 5.17669e-13 2.4885e-13 1.22743e-13 1.16664e-13 3.34297e-14 7.68296e-15 1.43637e-15 2.74496e-16 3.52428e-17 5.14703e-18 5.86933e-19 4.42064e-20 3.10057e-21 1.87956e-22 8.36507e-24 3.14887e-25 8.48874e-27 1.39028e-28 7.92903e-31 1.88342e-33 2.37705e-36 1.83467e-39 1.07338e-42 5.4508e-46 2.58034e-49 1.15859e-52 4.89e-56 1.92493e-59 7.23391e-63 2.77414e-66 1.18e-69 4.42973e-73 9.96391e-77 6.23995e-81 3.91012e-14 3.49722e-14 5.84726e-14 1.06985e-13 1.18397e-13 5.82045e-14 1.60229e-14 6.1297e-15 8.13945e-15 1.00409e-14 7.82344e-15 4.26082e-15 4.88432e-15 1.83014e-14 1.3031e-13 1.12276e-12 4.81984e-11 5.9081e-10 5.76278e-09 3.95016e-09 1.08638e-08 3.52085e-07 5.81159e-07 5.71975e-07 4.0061e-07 5.51033e-08 3.79102e-11 3.66526e-11 8.45947e-11 2.74542e-10 4.55237e-10 1.8621e-10 1.33372e-10 1.3471e-10 2.26289e-10 5.63494e-10 5.769e-10 6.05065e-10 6.24501e-10 6.23862e-10 1.15191e-09 8.4093e-08 4.32665e-08 1.243e-09 1.72513e-09 1.78639e-09 5.63933e-08 2.57454e-07 1.84301e-07 4.60145e-08 4.29734e-10 1.27832e-11 6.51331e-12 5.20378e-12 3.62817e-12 2.55272e-12 1.94245e-12 1.57999e-12 1.34445e-12 1.23853e-12 1.14884e-12 1.07052e-12 9.67245e-13 8.37487e-13 7.0492e-13 5.84521e-13 4.62445e-13 3.76447e-13 2.81987e-13 2.15988e-13 1.68626e-13 1.37499e-13 9.09822e-14 6.65478e-14 4.79362e-14 3.73283e-14 2.59687e-14 2.14073e-14 1.62514e-14 1.22036e-14 9.10178e-15 7.46554e-15 6.96347e-15 6.06483e-15 5.96146e-15 5.16984e-15 5.7374e-15 6.5159e-15 6.66905e-15 7.81589e-15 1.05412e-14 1.43452e-14 1.75491e-14 2.21862e-14 3.20671e-14 4.36125e-14 6.1524e-14 9.73997e-14 1.49666e-13 2.10603e-13 2.74494e-13 2.09588e-13 1.82987e-13 2.18092e-13 2.90813e-13 2.02339e-13 1.64465e-13 1.17051e-13 2.00189e-13 6.1676e-14 2.14574e-14 5.87696e-15 1.23873e-15 2.24419e-16 3.38718e-17 4.06979e-18 5.30175e-19 4.96084e-20 3.18487e-21 1.9852e-22 1.00306e-23 3.52176e-25 1.10607e-26 2.37898e-28 2.87433e-30 1.28165e-32 2.53785e-35 2.76941e-38 1.8663e-41 9.47112e-45 4.18331e-48 1.71847e-51 6.68459e-55 2.44461e-58 8.35608e-62 2.73469e-65 9.12827e-69 3.32751e-72 1.06312e-75 2.04166e-79 1.08901e-83 1.16279e-14 1.38253e-14 2.42359e-14 4.61705e-14 5.14401e-14 2.26879e-14 5.30241e-15 1.85874e-15 2.42692e-15 2.94729e-15 2.3114e-15 1.27367e-15 1.52028e-15 6.47226e-15 5.71307e-14 5.5839e-13 1.24693e-11 4.44494e-10 1.30709e-09 3.29447e-10 4.9504e-10 2.90243e-08 3.28671e-07 1.45969e-07 2.61279e-08 6.16903e-09 1.74566e-11 1.47183e-11 8.51195e-11 3.70923e-10 1.49439e-09 4.5036e-10 1.71217e-10 1.70892e-10 3.50112e-10 8.55645e-10 6.97593e-10 6.24479e-10 6.23017e-10 6.24031e-10 5.01075e-09 1.34545e-07 3.24419e-08 2.08123e-10 1.43786e-09 2.54265e-09 2.66241e-09 6.56048e-08 3.99994e-08 1.57068e-08 1.15182e-09 7.5923e-12 6.31494e-12 4.08191e-12 2.66579e-12 1.80314e-12 1.33429e-12 1.05041e-12 8.59613e-13 7.62329e-13 6.87096e-13 6.27608e-13 5.57198e-13 4.75122e-13 3.94989e-13 3.25209e-13 2.54637e-13 2.0573e-13 1.53325e-13 1.1696e-13 9.08638e-14 7.39713e-14 4.85029e-14 3.51812e-14 2.50437e-14 1.92916e-14 1.33035e-14 1.07655e-14 8.22207e-15 6.31291e-15 4.80236e-15 4.00293e-15 3.68774e-15 3.17951e-15 3.16318e-15 2.72754e-15 2.98576e-15 3.34462e-15 3.35521e-15 3.75948e-15 4.95299e-15 6.57723e-15 7.65958e-15 9.27984e-15 1.33396e-14 1.73939e-14 2.37762e-14 3.8623e-14 5.75351e-14 7.3081e-14 9.33277e-14 1.18484e-13 1.32217e-13 1.66588e-13 2.39503e-13 1.51868e-13 1.15261e-13 6.96161e-14 4.15235e-14 1.41921e-14 4.08854e-15 1.02349e-15 1.95462e-16 3.392e-17 4.17473e-18 4.63394e-19 5.31878e-20 4.15131e-21 2.25894e-22 1.24797e-23 5.28084e-25 1.46262e-26 3.81241e-28 6.52986e-30 5.90278e-32 2.07857e-34 3.42882e-37 3.1906e-40 1.83692e-43 7.89386e-47 2.95943e-50 1.03005e-53 3.39028e-57 1.04924e-60 3.04036e-64 8.45358e-68 2.39525e-71 7.31707e-75 1.94713e-78 3.11942e-82 1.3827e-86 3.27979e-15 4.72152e-15 8.67291e-15 1.69832e-14 1.8933e-14 7.45262e-15 1.46582e-15 4.71475e-16 6.02163e-16 7.18902e-16 5.68861e-16 3.1891e-16 3.94126e-16 1.9602e-15 2.21782e-14 2.54305e-13 4.76066e-12 2.54675e-10 1.98968e-10 5.60342e-11 5.54655e-11 2.2528e-09 2.56035e-08 7.13588e-09 1.11333e-09 3.44923e-10 3.62021e-11 7.65466e-12 8.88418e-11 4.0838e-10 2.4499e-09 1.61482e-09 2.86209e-10 2.819e-10 6.3148e-10 1.06657e-09 1.42149e-09 6.23036e-10 6.23522e-10 7.06575e-10 4.50531e-08 1.34545e-07 2.07567e-08 7.15574e-11 5.38899e-10 7.94319e-09 4.4127e-09 2.71946e-09 1.5503e-09 1.98068e-09 7.76669e-10 1.86548e-11 5.29174e-12 3.10447e-12 1.9027e-12 1.22156e-12 8.60798e-13 6.44371e-13 5.01048e-13 4.22936e-13 3.67387e-13 3.26732e-13 2.82935e-13 2.35964e-13 1.92531e-13 1.56264e-13 1.20529e-13 9.63896e-14 7.14387e-14 5.438e-14 4.20903e-14 3.4233e-14 2.22886e-14 1.60739e-14 1.13576e-14 8.70217e-15 5.98785e-15 4.77764e-15 3.68386e-15 2.89548e-15 2.25505e-15 1.91283e-15 1.7529e-15 1.51117e-15 1.534e-15 1.34385e-15 1.45798e-15 1.63146e-15 1.63978e-15 1.7927e-15 2.35185e-15 3.11146e-15 3.65464e-15 4.45586e-15 6.39996e-15 8.20443e-15 1.12114e-14 1.86905e-14 2.84852e-14 3.45524e-14 4.40537e-14 5.79309e-14 5.6201e-14 5.7592e-14 6.57951e-14 4.48179e-14 3.2364e-14 1.91605e-14 8.82701e-15 3.046e-15 7.89772e-16 1.75593e-16 3.05294e-17 4.94482e-18 5.13063e-19 5.19718e-20 5.21493e-21 3.43071e-22 1.5832e-23 7.68827e-25 2.73475e-26 5.99914e-28 1.28957e-29 1.75554e-31 1.20216e-33 3.36055e-36 4.58132e-39 3.56426e-42 1.70317e-45 5.99615e-49 1.84519e-52 5.2648e-56 1.41898e-59 3.59631e-63 8.54468e-67 1.95094e-70 4.53389e-74 1.12416e-77 2.41451e-81 3.1212e-85 1.10892e-89 8.43104e-16 1.34335e-15 2.57674e-15 5.11626e-15 5.65607e-15 1.98149e-15 3.21029e-16 9.49946e-17 1.1929e-16 1.38861e-16 1.11021e-16 6.41066e-17 8.12033e-17 4.74936e-16 6.93151e-15 1.15511e-13 1.65551e-12 7.37761e-11 4.60473e-11 1.21661e-11 1.20088e-11 2.23609e-10 1.55404e-09 3.66419e-10 6.79262e-11 2.8979e-11 1.29357e-11 6.15842e-12 8.30292e-11 3.38246e-10 2.50729e-09 3.15329e-09 9.68784e-10 6.34868e-10 8.1505e-10 9.13744e-10 2.52136e-09 1.94025e-09 1.33671e-09 7.60156e-09 1.98003e-07 1.39626e-07 7.7253e-09 2.26164e-11 2.88836e-11 8.90655e-09 4.49115e-09 1.25993e-09 5.87842e-10 4.03687e-10 2.563e-10 1.62055e-11 4.15813e-12 2.28014e-12 1.30238e-12 7.8101e-13 5.13905e-13 3.59894e-13 2.62416e-13 2.07916e-13 1.72137e-13 1.47614e-13 1.23317e-13 9.94998e-14 7.88599e-14 6.24444e-14 4.70971e-14 3.71052e-14 2.7313e-14 2.07696e-14 1.60305e-14 1.30341e-14 8.44039e-15 6.06125e-15 4.2634e-15 3.2624e-15 2.24943e-15 1.7836e-15 1.39296e-15 1.12151e-15 8.97481e-16 7.77281e-16 7.15181e-16 6.23015e-16 6.48925e-16 5.84998e-16 6.32222e-16 7.11113e-16 7.25748e-16 7.78886e-16 1.02123e-15 1.33682e-15 1.59123e-15 1.98675e-15 2.82913e-15 3.5843e-15 4.87615e-15 7.99595e-15 1.24806e-14 1.5345e-14 1.95798e-14 2.48131e-14 2.11841e-14 1.84603e-14 1.84228e-14 1.35658e-14 8.92321e-15 4.8609e-15 1.94498e-15 6.30454e-16 1.51934e-16 2.97276e-17 4.74909e-18 6.98267e-19 6.27425e-20 5.73342e-21 5.00977e-22 2.79517e-23 1.09795e-24 4.63893e-26 1.38958e-27 2.42922e-29 4.27963e-31 4.62054e-33 2.41886e-35 5.36257e-38 5.94656e-41 3.7593e-44 1.43033e-47 3.92731e-51 9.44222e-55 2.10308e-58 4.42088e-62 8.73751e-66 1.61998e-69 2.88801e-73 5.23174e-77 1.00269e-80 1.6556e-84 1.64028e-88 4.40747e-93 1.7744e-16 3.00481e-16 6.01194e-16 1.18651e-15 1.2881e-15 3.98058e-16 5.15052e-17 1.4241e-17 1.75605e-17 1.96449e-17 1.58039e-17 9.62665e-18 1.23436e-17 8.24844e-17 1.50884e-15 3.43668e-14 6.57406e-13 1.03562e-11 8.66172e-12 2.34886e-12 2.07255e-12 3.30007e-11 9.45784e-11 2.88817e-11 7.12602e-12 4.71857e-12 2.21383e-12 4.25449e-12 4.34541e-11 1.29423e-10 9.21718e-10 3.25089e-09 2.72127e-09 1.54171e-09 7.87164e-10 4.19642e-10 2.28201e-09 3.1215e-08 2.41247e-08 1.23836e-07 2.11248e-07 6.86378e-08 8.4988e-10 4.40628e-12 1.77256e-12 5.43828e-09 1.72559e-08 7.72971e-09 3.24258e-09 1.06895e-09 2.3925e-10 4.8039e-12 3.28328e-12 1.60548e-12 8.43569e-13 4.64847e-13 2.80579e-13 1.80839e-13 1.21763e-13 8.90186e-14 6.91729e-14 5.63599e-14 4.46574e-14 3.42498e-14 2.59103e-14 1.96738e-14 1.43157e-14 1.10047e-14 8.02265e-15 6.09869e-15 4.69678e-15 3.82024e-15 2.46395e-15 1.76418e-15 1.23802e-15 9.49168e-16 6.57664e-16 5.22253e-16 4.1455e-16 3.42182e-16 2.8235e-16 2.50799e-16 2.34265e-16 2.08635e-16 2.24633e-16 2.11057e-16 2.30102e-16 2.63291e-16 2.77732e-16 2.97469e-16 3.9651e-16 5.17582e-16 6.25156e-16 8.08892e-16 1.1495e-15 1.45199e-15 1.96084e-15 3.07156e-15 4.79779e-15 6.01448e-15 7.75147e-15 9.55669e-15 7.4403e-15 5.81285e-15 5.33783e-15 4.06598e-15 2.37994e-15 1.17977e-15 4.38969e-16 1.28317e-16 2.88692e-17 4.98544e-18 7.36376e-19 9.61768e-20 7.62632e-21 6.21879e-22 4.72459e-23 2.24451e-24 7.5374e-26 2.7426e-27 6.91629e-29 9.6966e-31 1.39227e-32 1.18863e-34 4.77764e-37 8.32948e-40 7.32845e-43 3.61171e-46 1.02738e-49 2.03246e-53 3.52111e-57 5.63889e-61 8.5066e-65 1.20513e-68 1.60065e-72 2.04374e-76 2.65014e-80 3.61387e-84 4.21874e-88 2.93083e-92 5.37642e-97 2.69821e-17 4.86667e-17 1.01218e-16 1.90347e-16 1.98917e-16 5.35168e-17 5.30888e-18 1.41917e-18 1.67387e-18 1.75209e-18 1.40884e-18 9.49828e-19 1.21274e-18 8.12824e-18 1.74328e-16 5.23219e-15 1.19364e-13 1.00625e-12 1.23442e-12 7.39173e-13 6.10515e-13 3.56015e-12 6.28988e-12 2.7056e-12 2.72816e-13 6.53232e-13 9.24288e-13 1.25465e-12 8.36369e-12 1.85353e-11 1.05567e-10 2.7322e-09 3.0935e-09 1.77555e-09 5.04099e-10 4.6951e-11 1.44644e-09 4.35381e-08 1.49365e-07 2.11248e-07 2.09891e-07 2.74783e-08 1.26878e-10 1.36319e-12 1.19889e-12 8.10671e-10 2.46717e-08 2.56242e-08 2.23513e-08 6.41226e-09 1.1744e-09 2.69501e-12 2.63772e-12 1.07995e-12 5.12739e-13 2.55267e-13 1.38914e-13 8.0966e-14 4.94287e-14 3.26489e-14 2.33182e-14 1.76501e-14 1.29176e-14 9.13975e-15 6.39023e-15 4.49624e-15 3.06027e-15 2.24236e-15 1.60502e-15 1.22059e-15 9.38718e-16 7.64456e-16 4.91872e-16 3.51657e-16 2.46746e-16 1.90001e-16 1.32601e-16 1.06101e-16 8.58687e-17 7.27374e-17 6.20659e-17 5.68114e-17 5.44575e-17 5.01278e-17 5.6267e-17 5.57771e-17 6.24853e-17 7.40524e-17 8.24992e-17 9.08372e-17 1.26693e-16 1.7e-16 2.13069e-16 2.91965e-16 4.2493e-16 5.49188e-16 7.44737e-16 1.10638e-15 1.69393e-15 2.14148e-15 2.79525e-15 3.39549e-15 2.50044e-15 1.83202e-15 1.58992e-15 1.18776e-15 6.1683e-16 2.81828e-16 9.96423e-17 2.59233e-17 5.40843e-18 8.31064e-19 1.1354e-19 1.30052e-20 9.20291e-22 6.63102e-23 4.37767e-24 1.77577e-25 5.11545e-27 1.58902e-28 3.36603e-30 3.80354e-32 4.43177e-34 2.9781e-36 9.16048e-39 1.22856e-41 8.19716e-45 2.92667e-48 5.5056e-52 6.62696e-56 7.01982e-60 6.89523e-64 6.38743e-68 5.55568e-72 4.52495e-76 3.53271e-80 2.78138e-84 2.27619e-88 1.57515e-92 6.32563e-97 6.19234e-102 2.50033e-18 4.95961e-18 1.06218e-17 1.66576e-17 1.56108e-17 3.6202e-18 2.55873e-19 6.92419e-20 7.43345e-20 6.94862e-20 5.43738e-20 4.52381e-20 5.72426e-20 2.07673e-19 3.62874e-18 2.17877e-16 6.63798e-15 8.67499e-14 1.058e-13 1.15633e-13 1.27146e-13 7.6287e-14 1.35615e-13 6.02204e-14 5.76213e-14 9.22305e-14 2.53794e-13 2.47555e-13 3.55911e-13 3.81856e-13 2.48569e-12 2.4509e-10 1.65415e-09 1.09278e-09 1.21294e-10 1.81307e-11 3.94569e-10 1.51141e-08 1.82424e-07 2.09616e-07 1.28756e-07 4.66427e-09 2.72952e-12 9.60271e-13 4.3879e-13 1.5931e-12 1.31317e-08 2.56495e-08 2.56495e-08 2.14891e-08 2.39831e-09 4.55555e-12 1.87574e-12 6.816e-13 2.88989e-13 1.28033e-13 6.18361e-14 3.20188e-14 1.73672e-14 1.01201e-14 6.46862e-15 4.40467e-15 2.86068e-15 1.77445e-15 1.07504e-15 6.45794e-16 3.74881e-16 2.40993e-16 1.63424e-16 1.24452e-16 9.56727e-17 7.80593e-17 5.02374e-17 3.58987e-17 2.5245e-17 1.95627e-17 1.37929e-17 1.11597e-17 9.23808e-18 8.03801e-18 7.11276e-18 6.73724e-18 6.68718e-18 6.42394e-18 7.57175e-18 8.00892e-18 9.39107e-18 1.17559e-17 1.41312e-17 1.65599e-17 2.50333e-17 3.61504e-17 4.93827e-17 7.51479e-17 1.19504e-16 1.69816e-16 2.46777e-16 3.69177e-16 5.65814e-16 7.17086e-16 9.42777e-16 1.13512e-15 8.12364e-16 5.7611e-16 4.7941e-16 3.36627e-16 1.57112e-16 6.70702e-17 2.24466e-17 5.2141e-18 1.00014e-18 1.37993e-19 1.73577e-20 1.73584e-21 1.1019e-22 6.95732e-24 3.98964e-25 1.38591e-26 3.43193e-28 9.03611e-30 1.60252e-31 1.46534e-33 1.38061e-35 7.26378e-38 1.69675e-40 1.70262e-43 8.14801e-47 1.90518e-50 1.93753e-54 1.00607e-58 4.45776e-63 1.77121e-67 6.40446e-72 2.09116e-76 6.12889e-81 1.65017e-85 4.31872e-90 1.13172e-94 2.33439e-99 2.35252e-104 2.40759e-110 ) ; boundaryField { inlet { type zeroGradient; } bottom { type zeroGradient; } outlet { type zeroGradient; } atmosphere { type inletOutlet; inletValue uniform 0; value nonuniform List<scalar> 378 ( 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.10207e-22 9.16916e-21 3.48794e-20 7.08028e-20 1.80418e-19 2.52602e-19 3.63889e-19 2.53181e-19 2.07122e-19 1.18179e-19 6.44342e-20 3.26014e-20 1.51344e-20 6.9412e-21 2.70685e-21 1.15807e-21 4.46407e-22 1.72177e-22 6.70163e-23 2.83024e-23 1.09853e-23 4.48082e-24 1.81939e-24 8.24962e-25 3.38824e-25 1.32461e-25 4.82131e-26 1.68653e-26 5.75072e-27 1.93409e-27 5.76319e-28 1.58835e-28 3.68167e-29 7.02112e-30 1.12953e-30 1.03807e-31 6.92412e-32 5.3684e-31 4.16515e-30 1.77785e-29 7.55508e-29 3.85278e-28 1.38374e-27 5.09984e-27 1.6929e-26 5.93214e-26 2.67241e-25 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 0 0 0 0 0 0 0 0 0 0 0 0 0 2.49809e-12 2.50674e-12 2.34662e-12 2.08095e-12 1.85454e-12 1.63844e-12 1.47135e-12 1.33345e-12 1.22789e-12 1.0794e-12 9.95573e-13 9.37078e-13 8.56028e-13 7.61895e-13 6.34787e-13 4.95997e-13 3.52883e-13 2.39235e-13 1.47765e-13 8.58541e-14 4.85347e-14 2.7994e-14 1.68918e-14 1.07204e-14 7.09039e-15 4.70515e-15 3.084e-15 2.11017e-15 1.52639e-15 1.25127e-15 1.2208e-15 1.14014e-15 1.14867e-15 1.28836e-15 1.31879e-15 1.35105e-15 1.31544e-15 1.12059e-15 9.51598e-16 7.79546e-16 6.14771e-16 4.83108e-16 3.78088e-16 3.08203e-16 2.50176e-16 2.45959e-16 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.78426e-07 7.36794e-07 1.40387e-05 3.82294e-05 2.28899e-05 1.46681e-09 9.82236e-10 3.26657e-10 3.26585e-10 3.36003e-10 1.49981e-09 2.20548e-09 2.264e-08 2.37872e-07 3.52012e-07 2.90195e-07 0 4.5698e-12 4.79236e-14 3.00695e-13 1.21518e-13 1.58294e-13 6.35479e-14 2.05671e-14 2.72691e-14 3.32689e-14 1.22292e-13 1.99739e-12 4.99569e-11 1.09288e-10 5.35708e-10 0 0 0 0 0 0 0 0 0 0 1.02467e-18 0 2.50033e-18 4.95961e-18 1.06218e-17 1.66576e-17 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 1.09278e-09 1.21294e-10 1.81307e-11 3.94569e-10 1.51141e-08 1.82424e-07 2.09616e-07 1.28756e-07 4.66427e-09 2.72952e-12 9.60271e-13 4.3879e-13 1.5931e-12 1.31317e-08 2.56495e-08 2.56495e-08 2.14891e-08 2.39831e-09 4.55555e-12 1.87574e-12 6.816e-13 2.88989e-13 1.28033e-13 6.18361e-14 3.20188e-14 1.73672e-14 1.01201e-14 6.46862e-15 4.40467e-15 2.86068e-15 1.77445e-15 1.07504e-15 6.45794e-16 3.74881e-16 2.40993e-16 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 0 0 7.17086e-16 9.42777e-16 1.13512e-15 8.12364e-16 5.7611e-16 4.7941e-16 3.36627e-16 1.57112e-16 6.70702e-17 2.24466e-17 5.2141e-18 1.00014e-18 1.37993e-19 1.73577e-20 1.73584e-21 1.1019e-22 6.95732e-24 3.98964e-25 1.38591e-26 3.43193e-28 9.03611e-30 1.60252e-31 1.46534e-33 1.38061e-35 7.26378e-38 1.69675e-40 1.70262e-43 8.14801e-47 1.90518e-50 1.93753e-54 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } frontBack { type empty; } } // ************************************************************************* //
[ "abenaz15@etudiant.mines-nantes.fr" ]
abenaz15@etudiant.mines-nantes.fr
34f137ad7fa87e4d3a3e36141388b31ec2e65cd4
50bfeea8da2447419dcb6bb212d2d103d2dcc4fc
/completed/c++/euler15.cpp
4ebd743635f87a7c1dba15304ea3f838196f024a
[]
no_license
spkane31/projectEuler
89cb3024f47ec077d06814f70496f38ae1541ab1
e92f2449099e59cf1943fdbbd1308d7c9ceba9cb
refs/heads/master
2021-01-01T03:35:35.149634
2019-07-17T19:25:57
2019-07-17T19:25:57
56,004,828
0
0
null
null
null
null
UTF-8
C++
false
false
696
cpp
// Sean Kane // Euler Problem 15 // Started: April 19, 2016 // Finished: #include <iostream> #include <cmath> #include "universalFxns.h" using namespace std; int main(){ unsigned long long int grid[21][21] = {0}; grid[0][0] = 1; for(int a = 1; a < 21; a++){ grid[0][a] = 1; grid[a][0] = 1; } for(int b = 1; b < 21; b++){ for(int c = 1; c < 21; c++){ grid[b][c] += grid[b-1][c] + grid[b][c-1]; } } cout << grid[2][1] << endl; cout << grid[3][2] << endl; cout << grid[4][4] << endl; cout << grid[20][20] << endl; for(int b = 0; b < 21; b++){ for(int c = 0; c < 21; c++){ cout << grid[b][c] << " "; } cout << "\n"; } return 0; }
[ "spkane31@gmail.com" ]
spkane31@gmail.com
028f0ca8dccf3123d23b43f7563a5c7d04931e2b
7cc38b60e2429bbbf92f8bb6e4b55d91860ca227
/models/PaymentsModel.cpp
2b710f49aef45147e1a1ccddbc51a0511b47e402
[]
no_license
topten2018/untitled
565e880e71aa2e7d028c09a1565e84ceec967036
d9e607bf024f2484401fa0e797f3994ab672cb7a
refs/heads/master
2020-03-06T16:12:20.237389
2018-04-14T10:42:00
2018-04-14T10:42:00
126,969,412
0
0
null
null
null
null
UTF-8
C++
false
false
4,320
cpp
#include "models/PaymentsModel.h" #include "Utils/AutoSaver.h" #include "Utils/StringUtils.h" #include "dialogs/DlgAddress.h" #include <QMessageBox> #include <QFile> #include <QTextStream> #include <QMutexLocker> PaymentsModel::PaymentsModel(const QString filename, QObject *parent) : QAbstractTableModel(parent) , m_strFileName(filename) , m_mtx(QMutex::Recursive) { m_spAutoSaver = new AutoSaver(this); load(); } PaymentsModel::~PaymentsModel() { m_spAutoSaver->saveIfNeccessary(); qDeleteAll(m_lstItems); } QVariant PaymentsModel::headerData(int section, Qt::Orientation , int role) const { QVariant result; switch (role) { case Qt::SizeHintRole: switch (section) { case H_DATE: return QSize(100, 28); break; case H_LABEL: return QSize(220, 28); break; case H_AMOUNT: return QSize(150, 28); break; } break; case Qt::DisplayRole: switch (section) { case H_DATE: result = tr("Date"); break; case H_LABEL: result = tr("Label"); break; case H_MESSAGE: result = tr("Message"); break; case H_AMOUNT: result = tr("Amount (APR)"); break; }; break; } return result; } QVariant PaymentsModel::data(const QModelIndex & index,int role) const { if (!index.isValid()) return QVariant(); const TransactionItem * item = m_lstItems.at(index.row()); switch (role) { case Qt::TextAlignmentRole: if (index.column() == H_AMOUNT) { return Qt::AlignRight + Qt::AlignVCenter; } break; case Qt::DisplayRole: { switch (index.column()) { case H_DATE: return item->date().toString("dd.MM.yyyy hh:mm"); break; case H_LABEL: return item->label(); break; case H_MESSAGE: return item->message(); break; case H_AMOUNT: return item->amount(); break; }; break; } } return QVariant(); } TransactionItem * PaymentsModel::item(int row) { return m_lstItems.at(row); } void PaymentsModel::onAddItem() { /* DlgAddress dlg(nullptr, dynamic_cast<QWidget *>(parent())); if (dlg.exec() == QDialog::Accepted) { addItem(new TransactionItem(dlg.address())); m_spAutoSaver->changeOccurred(); }*/ } void PaymentsModel::append(TransactionItem * p) { addItem(p); m_spAutoSaver->changeOccurred(); } void PaymentsModel::onEditItem(int row) { TransactionItem * p = m_lstItems.at(row); if (!p) return; /* DlgAddress dlg(p, dynamic_cast<QWidget *>(parent())); if (dlg.exec() == QDialog::Accepted) { QMutexLocker locker(&m_mtx); *m_lstItems.at(row) = dlg.address(); m_spAutoSaver->changeOccurred(); }*/ } void PaymentsModel::onDeleteItem(int row) { QMessageBox mb(QMessageBox::Icon::Warning, tr("Warning"), tr("Delete this payment?") , QMessageBox::StandardButton::Ok | QMessageBox::StandardButton::Cancel, dynamic_cast<QWidget *>(parent())); if (mb.exec() == QMessageBox::StandardButton::Ok) { QMutexLocker locker(&m_mtx); m_spAutoSaver->changeOccurred(); beginRemoveRows(QModelIndex(), row, row); m_lstItems.removeAt(row); endRemoveRows(); } } void PaymentsModel::addItem(TransactionItem * p) { QMutexLocker locker(&m_mtx); beginInsertRows(QModelIndex(), 0, 0); m_lstItems.insert(0, p); endInsertRows(); } void PaymentsModel::load() { QMutexLocker locker(&m_mtx); /* qDeleteAll(m_lstItems); m_lstItems.clear(); QFile file(m_strFileName); if (file.open(QIODevice::ReadOnly)) { QTextStream in(&file); QStringList row; while (!in.atEnd()) { QString line = in.readLine(); if (Utils::parseCsvLine(line, row) && row.size() >= 2) { m_lstItems.append(new AddressItem(row[0], row[1])); } } file.close(); }*/ } void PaymentsModel::save() const { saveToFile(m_strFileName, false); } void PaymentsModel::exportToFile(const QString & filename) const { saveToFile(filename, true); } void PaymentsModel::saveToFile(const QString & filename, bool bWriteHeader) const { QMutexLocker locker(&m_mtx); QFile file(filename); if (file.open(QIODevice::WriteOnly)) { QTextStream out(&file); if (bWriteHeader) { QString line = QString("\"%1\",\"%2\"\r\n").arg("Label").arg("Address"); out << line; } foreach (TransactionItem * item, m_lstItems) { QString line = QString("\"%1\",\"%2\"\r\n").arg(item->label().replace("\"", "\"\"")).arg(item->address().replace("\"", "\"\"")); out << line; } file.close(); } }
[ "zV3KT0R@gmail.com" ]
zV3KT0R@gmail.com
51aab5cc68aee15665db20874abfba1f9e2144d1
ced00d9419e231b7053d3461039273198238deab
/vongxoaytunhapso.cpp
1eff1b09d18a2cce8d4efada3acecf401a8161f2
[]
no_license
Minato1803/My_Bullshit_Code
f9b4e951c4c6c76d023c427e83633b36087767c2
e44dba88cb2c683674d1e9a21626c53e2fe5cb89
refs/heads/master
2021-06-18T14:39:12.114194
2021-01-20T11:48:44
2021-01-20T11:48:44
161,520,184
1
0
null
null
null
null
UTF-8
C++
false
false
1,128
cpp
#include <iostream> using namespace std; void vongxoay(int a[],int hang,int cot ) { int b[hang][cot], h=hang,c=cot; int vth=0, vtc=0, j=0; while(vth<=(h-1)/2||vth<=2){ for(int i=vtc; i<c; i++){ b[vth][i]=a[j]; j++;//a[0][0] den a[0][6] } //chay hang phia tren for(int i=vth+1; i<h; i++){ b[i][c-1]=a[j]; j++;//a[1][6] den a[6][6] }//chay hang ben phai for(int i=c-2; i>=vtc; i--){ b[h-1][i]=a[j]; j++;//a[6][5] den a[6][0] }//chay hang duoi for(int i=h-2; i>=vth+1; i--){ b[i][vtc]=a[j]; j++;//a[5][0] den a[1][0] } //chay hang ben trai vth++; vtc++; h--; c--;}//di vao trong} cout<<"day xoay oc xuat ra: "<<endl; for(int i=0; i<hang; i++){ for(int j=0; j<cot; j++){ cout<< b[i][j]<< " ";} cout << endl;} } int main() {int hang, cot, n; cout<<"nhap do lon canh cua mang xoay oc: "; cin>>n; hang=cot=n; int a[n*n]; cout<<"nhap vao day so: "<<endl; for(int i=0; i<(n*n);i++){ cin>>a[i]; } cout<<"day so vua nhap: "<<endl; for(int i=0; i<(n*n);i++){ cout<<a[i]<<" "; } cout<<endl; vongxoay(a,hang,cot); return 0; }
[ "nguyenduckhai.otaku@gmail.com" ]
nguyenduckhai.otaku@gmail.com
46d43beb4e4c95265c26c3c46fd073ad43d3ce1a
f1872a2fb82ceb88814ae73d8453b3b2921a2183
/box_inspector/src/box_inspector.cpp
aa8c0001eb2adedf7e7e6c317774ed8f1979d4d9
[]
no_license
axd481/EECS376_PS6
718747ef8e9fef5469810fbecd9a228296dd7c84
6ccdf936fa1eb40671025ce2ad4a56ae4c05561d
refs/heads/master
2020-03-11T21:50:23.661658
2018-04-19T21:51:02
2018-04-19T21:51:02
130,276,104
0
0
null
null
null
null
UTF-8
C++
false
false
7,287
cpp
//box_inspector.cpp implementation of class/library #include <box_inspector/box_inspector.h> //#include "box_inspector_fncs.cpp" //more code, outside this file #include "box_inspector_fncs.cpp" //more code, outside this file BoxInspector::BoxInspector(ros::NodeHandle* nodehandle) : nh_(*nodehandle) { //constructor //set up camera subscriber: box_camera_subscriber_ = nh_.subscribe("/ariac/box_camera_1", 1, &BoxInspector::box_camera_callback, this); got_new_snapshot_=false; //trigger to get new snapshots } //to request a new snapshot, set need_new_snapshot_ = true, and make sure to give a ros::spinOnce() void BoxInspector::box_camera_callback(const osrf_gear::LogicalCameraImage::ConstPtr & image_msg) { if (!got_new_snapshot_) { box_inspector_image_ = *image_msg; //copy the current message to a member data var, i.e. freeze the snapshot got_new_snapshot_ = true; ROS_INFO_STREAM("received box-camera image of: "<<box_inspector_image_<<endl); int n_models = box_inspector_image_.models.size(); ROS_INFO("%d models seen ",n_models); } } //method to request a new snapshot from logical camera; blocks until snapshot is ready, // then result will be in box_inspector_image_ void BoxInspector::get_new_snapshot_from_box_cam() { got_new_snapshot_= false; ROS_INFO("waiting for snapshot from camera"); while (!got_new_snapshot_) { ros::spinOnce(); ros::Duration(0.1).sleep(); } ROS_INFO("got new snapshot"); } //here is the main fnc; provide a list of models, expressed as desired parts w/ poses w/rt box; //get a box-camera logical image and parse it //populate the vectors as follows: // satisfied_models_wrt_world: vector of models that match shipment specs, including precision location in box // misplaced_models_wrt_world: vector of models that belong in the shipment, but are imprecisely located in box // missing_models_wrt_world: vector of models that are requested in the shipment, but not yet present in the box // orphan_models_wrt_world: vector of models that are seen in the box, but DO NOT belong in the box void BoxInspector::update_inspection(vector<osrf_gear::Model> desired_models_wrt_world, vector<osrf_gear::Model> &satisfied_models_wrt_world, vector<osrf_gear::Model> &misplaced_models_actual_coords_wrt_world, vector<osrf_gear::Model> &misplaced_models_desired_coords_wrt_world, vector<osrf_gear::Model> &missing_models_wrt_world, vector<osrf_gear::Model> &orphan_models_wrt_world) { //WRITE ME!!! ROS_WARN("NEED TO WRITE update_inspection() "); got_new_snapshot_=false; while(!got_new_snapshot_) { ros::spinOnce(); // refresh camera image ros::Duration(0.5).sleep(); ROS_INFO("waiting for logical camera image"); } ROS_INFO("got new image"); int num_parts_seen = box_inspector_image_.models.size(); ROS_INFO("update_inspection: box camera saw %d objects",num_parts_seen); orphan_models_wrt_world.clear(); //this will be empty, unless something very odd happens satisfied_models_wrt_world.clear(); //shipment will be complete when this matches parts/poses specified in shipment misplaced_models_actual_coords_wrt_world.clear(); misplaced_models_desired_coords_wrt_world.clear(); missing_models_wrt_world.clear(); //for(int i = 0; i < num_parts_seen; i++){ //go through the parts and add all of the good ones to the list //if (box_inspector_image_models[i] //Above if will check if the parts on the list are within the tolerance //if they are then add them to a list of good parts using a for loop with number of good parts ////then in the same for loop check if the parts are missing and then add those to a list //check again for extra parts //pushback these lists to update inspection. // //} //THIS IS WRONG...but an example of how to get models from image and sort into category vectors for (int i=0;i<num_parts_seen;i++) { orphan_models_wrt_world.push_back(box_inspector_image_.models[i]); } } //intent of this function is, get a snapshot from the box-inspection camera; //parse the image data to see if a shipping box is present //if not, return false //if seen, transform box pose to box pose w/rt world frame, // copy data to reference arg box_pose_wrt_world // and return "true" bool BoxInspector::get_box_pose_wrt_world(geometry_msgs::PoseStamped &box_pose_wrt_world) { geometry_msgs::Pose cam_pose, box_pose; //cam_pose is w/rt world, but box_pose is w/rt camera //get a new snapshot of the box-inspection camera: get_new_snapshot_from_box_cam(); //ROS_INFO("got box-inspection camera snapshot"); //look for box in model list: int num_models = box_inspector_image_.models.size(); //how many models did the camera see? if (num_models == 0) return false; string box_name("shipping_box"); //does a model match this name? osrf_gear::Model model; cam_pose = box_inspector_image_.pose; ROS_INFO("box cam sees %d models", num_models); for (int imodel = 0; imodel < num_models; imodel++) { model = box_inspector_image_.models[imodel]; string model_name(model.type); if (model_name == box_name) { box_pose = model.pose; ROS_INFO_STREAM("get_box_pose_wrt_world(): found box at pose " << box_pose << endl); //ROS_WARN("USE THIS INFO TO COMPUTE BOX POSE WRT WORLD AND POPULATE box_pose_wrt_world"); box_pose_wrt_world = compute_stPose(cam_pose, box_pose); ROS_INFO_STREAM("box_pose_wrt_world: " << box_pose_wrt_world << endl); return true; } } //if reach here, did not find shipping_box ROS_WARN("get_box_pose_wrt_world(): shipping-box not seen!"); return false; } //helper function: //given a camera pose and a part-pose (or box-pose) w/rt camera, compute part pose w/rt world //xform_utils library should help here geometry_msgs::PoseStamped BoxInspector::compute_stPose(geometry_msgs::Pose cam_pose, geometry_msgs::Pose part_pose) { geometry_msgs::PoseStamped stPose_part_wrt_world; //compute part-pose w/rt world and return as a pose-stamped message object Eigen::Affine3d cam_wrt_world, part_wrt_cam, part_wrt_world; cam_wrt_world = xformUtils_.transformPoseToEigenAffine3d(cam_pose); part_wrt_cam = xformUtils_.transformPoseToEigenAffine3d(part_pose); part_wrt_world = cam_wrt_world*part_wrt_cam; geometry_msgs::Pose pose_part_wrt_world = xformUtils_.transformEigenAffine3dToPose(part_wrt_world); geometry_msgs::PoseStamped part_pose_stamped; part_pose_stamped.header.stamp = ros::Time::now(); part_pose_stamped.header.frame_id = "world"; part_pose_stamped.pose = pose_part_wrt_world; return part_pose_stamped; } //rosmsg show osrf_gear/LogicalCameraImage: /* osrf_gear/Model[] models string type geometry_msgs/Pose pose geometry_msgs/Point position float64 x float64 y float64 z geometry_msgs/Quaternion orientation float64 x float64 y float64 z float64 w geometry_msgs/Pose pose geometry_msgs/Point position float64 x float64 y float64 z geometry_msgs/Quaternion orientation float64 x float64 y float64 z float64 w */
[ "axd481@case.edu" ]
axd481@case.edu
6e403564bfab9c0620a293af73db11d722a49d2e
f103061f4624bb0e5f724ab06a33c196cb60a816
/src/Stack.h
cad9f0ccf272a5b95b1496ae20c5c57227fc547a
[]
no_license
undisputed98/C-graf-implementacija
dcb19f2e9456388844595a5476862330d629f855
2d8e243b4544007a5295fb548f4cda8adee1f17b
refs/heads/master
2022-12-09T21:23:22.791386
2020-09-10T09:29:11
2020-09-10T09:29:11
294,321,553
0
0
null
null
null
null
UTF-8
C++
false
false
256
h
#ifndef _STACK_H #define _STACK_H #include "Vector.h" class Stack : public Vector<int> { const unsigned min_resize; public: Stack(); Stack(unsigned, unsigned = 5); Stack(Stack&); void push(int); void pop(); int peek() const; }; #endif // _STACK_H
[ "noreply@github.com" ]
undisputed98.noreply@github.com
1fe29e17b5b819e0ef76d3332a6fb8e693a206d5
d158af22290eed3794493d0a108b783b50fbe562
/include/xdisplay.h
5bc1ce78bdc82b37a3baa6c763cc6a8403a77006
[]
no_license
kozal/dt_xdemo
deac70dfe10a8cc153ad600c7d188774f88b5477
625f460c00e92af0ec7252b47a1a5a27604c8196
refs/heads/master
2021-01-01T19:41:22.955719
2017-08-23T17:56:20
2017-08-23T17:56:20
98,651,217
0
0
null
null
null
null
UTF-8
C++
false
false
1,505
h
#ifndef XDISPLAY_H #define XDISPLAY_H #include "xconfigure.h" #include "ximage.h" #include "XDevice.h" #define XDISPLAY_COLOR_GRAY 0 #define XDISPLAY_COLOR_SIN 1 #define XDISPLAY_COLOR_COS 2 #define XDISPLAY_COLOR_HOT 3 #define XDISPLAY_COLOR_JET 4 class XDDraw; struct XWindow { float gama; uint32_t start; uint32_t end; uint32_t max; }; class XDLL_EXPORT XDisplay { public: XDisplay(void); ~XDisplay(void); bool Open(uint32_t width, uint32_t height, uint32_t pixel_depth, HWND hwnd, uint32_t color_mode = 0); bool Open(XDevice* dev_, uint32_t line_num, HWND hwnd, uint32_t color_mode = 0); void Close(); bool GetIsOpen(); bool GetIsDDrawEnable(); uint32_t GetLastError(); void SetGama(float gama_val); float GetGama(); bool Display(XImage* image_); //void Display(uint8_t* data_); private: XDisplay(const XDisplay&); XDisplay& operator = (const XDisplay&); void GetGrayImage(); void RotateGrayImage(); void DdrawDisplay(); void AutoSetWindow(); bool CreateBMI(uint32_t color_mode); bool CreateLUT(); bool CreateGrayBuf(); //uint32_t GetPixelValue(uint32_t row, uint32_t col); bool _is_open; uint32_t _width; uint32_t _height; uint32_t _pixel_depth; uint32_t _pixel_byte; uint32_t _last_err; XImage* _raw_data_; uint8_t* _gray_data_; uint8_t* _rot_gray_data_; uint8_t* _lut_; XDDraw* _ddraw_; BITMAPINFO* _bmi_; HWND _hwnd; XWindow _window; }; #endif //XDISPLAY_H
[ "omer.kozal@metu.edu.tr" ]
omer.kozal@metu.edu.tr
04d8456391725d85880a9d1b3778e2246ae75f09
d07b896b228b7ff06732c960bd64793af74446a7
/headers/Bank.h
881bae7cde3528b326ddb881667b4f2ff4f80faf
[]
no_license
ChristopherOriolt/Bank
94e44994b46554ae9d11d0a0744d9533e6371d26
5582d8c9185a35f7a87d5bfb0dd4005f8c88cff0
refs/heads/master
2020-04-24T07:25:00.626579
2019-02-22T02:21:19
2019-02-22T02:21:19
171,798,593
0
0
null
null
null
null
UTF-8
C++
false
false
2,507
h
///////////////////////////////////// // Data Structures Project 1 // Author: Christopher Oriolt // 2/20/2019 ///////////////////////////////// #include "Senior.h" #include "Adult.h" #include "Student.h" #include "Account.h" #include "CheckingAccount.h" #include "SavingsAccount.h" #include <vector> using namespace std; #ifndef Bank_H_ #define Bank_H_ class Bank { private: vector<Account*> Accounts; Account* iterator(int a){ for(int i = 0; i < Accounts.size(); i++){ cout << Accounts.at(i) -> getCustomer() -> getCustomerNumber() << " " << a << endl; if(a == (Accounts.at(i) -> getCustomer() -> getCustomerNumber())){ cout << "intorator got here"; return Accounts.at(i); } } cout << "Account not found" << endl; return NULL; } public: Bank(){ Customer * person1 = new Senior("Bob", "Address", 71, 8053363, 111); Customer * person2 = new Senior("Jack", "Address", 83, 1674655, 112); Customer * person3 = new Student("kyle", "Address", 18, 3607784, 113); Customer * person4 = new Student("Karen", "Address", 19, 3345589, 114); Customer * person5 = new Adult("Ashley", "Address", 26, 3209951, 115); Customer * person6 = new Adult("Mike", "Address", 33, 5506378, 116); Account* sa1 = new SavingsAccount(person1, 200.10); Account* ch1 = new CheckingAccount(person2, 100); Account* sa2 = new SavingsAccount(person3, 1500.50); Account* ch2 = new CheckingAccount(person4, 550.20); Account* sa3 = new SavingsAccount(person5, 2000.25); Account* ch3 = new CheckingAccount(person6, 330); Accounts.push_back(sa1); Accounts.push_back(sa2); Accounts.push_back(sa3); Accounts.push_back(ch1); Accounts.push_back(ch2); Accounts.push_back(ch3); } void addAccount(Account*) { } void makeDeposit(int a, double amount) { Account* acc = iterator(a); acc -> deposit(amount); } void makeWithdrawal(int a, double amount) { Account* acc = iterator(a); acc -> withdrawal(amount); } Account* getAccount(int i) { return Accounts.at(i); } int accountsSize() { return Accounts.size(); } void printAccounts() { for(int i = 0; i< Accounts.size(); i++) { cout << Accounts.at(i) -> toString() << endl; } } }; #endif
[ "coriolt21@my.whitworth.edu" ]
coriolt21@my.whitworth.edu
42ea241b83baf69580fea8cff76967ac1755fffd
2b31b6a58a6677f23422a07b9aebbc0ae89e8cb0
/libvis/src/libvis/render_window_qt_vulkan.cc
1e3568738c0fd72ebfe221602d6d30936631d083
[ "BSD-3-Clause" ]
permissive
SnowCarter/surfelmeshing
eef27c8d8797432f0706502e8507e45adee7323b
5b1c8d160c1d64f5144b58309b725812d8e6e3ab
refs/heads/master
2020-04-03T06:25:35.202401
2018-10-02T12:31:55
2018-10-02T12:31:55
155,074,298
1
0
BSD-3-Clause
2018-10-28T13:30:43
2018-10-28T13:30:42
null
UTF-8
C++
false
false
34,700
cc
// Copyright 2018 ETH Zürich, Thomas Schöps // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // 3. Neither the name of the copyright holder 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 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 "libvis/render_window_qt_vulkan.h" #include <unordered_map> #if defined(VK_USE_PLATFORM_WIN32_KHR) #include <windows.h> #elif defined(VK_USE_PLATFORM_XCB_KHR) #include <QX11Info> #endif #include <glog/logging.h> #include <QResizeEvent> #include <QTimer> #include "libvis/qt_thread.h" namespace vis { RenderWidgetVulkan::RenderWidgetVulkan() : QWindow(), vulkan_initialized_(false) {} RenderWidgetVulkan::~RenderWidgetVulkan() { StopAndWaitForRendering(); DestroySurfaceDependentObjects(); vkDestroyCommandPool(device_.device(), command_pool_, nullptr); vkDestroySwapchainKHR(device_.device(), swap_chain_, nullptr); vkDestroySemaphore(device_.device(), image_available_semaphore_, nullptr); vkDestroySemaphore(device_.device(), render_finished_semaphore_, nullptr); vkDestroySurfaceKHR(instance_.instance(), surface_, nullptr); } void RenderWidgetVulkan::Render() { // Asynchronously get the next image from the swap chain. // image_available_semaphore_ will be signaled when the image becomes // available. The index refers to the swap_chain_images_ array. u32 image_index; VkResult result = vkAcquireNextImageKHR( device_.device(), swap_chain_, /* timeout */ numeric_limits<uint64_t>::max(), image_available_semaphore_, VK_NULL_HANDLE, &image_index); if (result == VK_ERROR_OUT_OF_DATE_KHR) { RecreateSwapChain(); return; } else if (result != VK_SUCCESS && result != VK_SUBOPTIMAL_KHR) { LOG(ERROR) << "Failed to acquire swap chain image."; return; } // Submit the right command buffer for the image. VkSubmitInfo submit_info = {}; submit_info.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO; // Wait with the color attachment output until the image_available_semaphore_ // was signaled. submit_info.waitSemaphoreCount = 1; VkSemaphore wait_semaphores[] = {image_available_semaphore_}; submit_info.pWaitSemaphores = wait_semaphores; // Could use VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, but then one must // create a dependency for the render pass to have the swap chain image // acquired, otherwise the image format transition at the start of the render // pass cannot work. VkPipelineStageFlags wait_stages[] = {VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT}; submit_info.pWaitDstStageMask = wait_stages; // Specify the command buffer(s) to submit. submit_info.commandBufferCount = 1; submit_info.pCommandBuffers = &command_buffers_[image_index]; // Signal the render_finished_semaphore_ after the command buffers finished. VkSemaphore signal_semaphores[] = {render_finished_semaphore_}; submit_info.signalSemaphoreCount = 1; submit_info.pSignalSemaphores = signal_semaphores; if (vkQueueSubmit(device_.graphics_queue(), 1, &submit_info, VK_NULL_HANDLE) != VK_SUCCESS) { LOG(ERROR) << "Failed to submit draw command buffer."; } // Put the image back into the swap chain for presentation. VkPresentInfoKHR present_info = {}; present_info.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR; present_info.waitSemaphoreCount = 1; present_info.pWaitSemaphores = signal_semaphores; VkSwapchainKHR swap_chains[] = {swap_chain_}; present_info.swapchainCount = 1; present_info.pSwapchains = swap_chains; present_info.pImageIndices = &image_index; // Only useful if using more than one swap chain. present_info.pResults = nullptr; result = vkQueuePresentKHR(device_.presentation_queue(), &present_info); if (result == VK_ERROR_OUT_OF_DATE_KHR || result == VK_SUBOPTIMAL_KHR) { RecreateSwapChain(); } else if (result != VK_SUCCESS) { LOG(ERROR) << "Failed to present swap chain image."; return; } } void RenderWidgetVulkan::resizeEvent(QResizeEvent* event) { if (event->size().width() == 0 || event->size().height() == 0) { return; } if (!vulkan_initialized_) { InitializeVulkan(); } else { RecreateSwapChain(); } } bool RenderWidgetVulkan::InitializeVulkan() { // Enable debug layers in debug builds only. CMake's RelWithDebInfo defines // NDEBUG by default and will therefore not enable debug layers. #ifdef NDEBUG constexpr bool kEnableDebugLayers = false; #else constexpr bool kEnableDebugLayers = true; #endif vector<string> instance_extensions; vector<string> device_extensions; // Choose the instance extensions to enable. // Since this Vulkan instance is used for rendering with the output being // presented on the screen, we need to enable the surface extensions. instance_extensions.push_back(VK_KHR_SURFACE_EXTENSION_NAME); #if VK_USE_PLATFORM_WIN32_KHR instance_extensions.push_back(VK_KHR_WIN32_SURFACE_EXTENSION_NAME); #elif VK_USE_PLATFORM_XCB_KHR instance_extensions.push_back(VK_KHR_XCB_SURFACE_EXTENSION_NAME); #else LOG(ERROR) << "No supported surface extension for this platform."; return false; #endif // For the same reason, the swap chain device extension is needed. device_extensions.push_back(VK_KHR_SWAPCHAIN_EXTENSION_NAME); // Initialize the Vulkan instance. if (!instance_.Initialize(instance_extensions, kEnableDebugLayers)) { return false; } // Create the VkSurfaceKHR, which represents the surface to present rendered // images to. This should be done before the physical device selection because // some devices may not be able to present to the created surface. #if VK_USE_PLATFORM_WIN32_KHR VkWin32SurfaceCreateInfoKHR create_info = {}; create_info.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR; create_info.hinstance = GetModuleHandle(nullptr); create_info.hwnd = reinterpret_cast<HWND> (this->winId()); auto vkCreateWin32SurfaceKHR = (PFN_vkCreateWin32SurfaceKHR) vkGetInstanceProcAddr(instance_.instance(), "vkCreateWin32SurfaceKHR"); if (!vkCreateWin32SurfaceKHR) { LOG(ERROR) << "vkCreateWin32SurfaceKHR() not available."; return false; } if (vkCreateWin32SurfaceKHR(instance_.instance(), &create_info, nullptr, &surface_) != VK_SUCCESS) { LOG(ERROR) << "vkCreateWin32SurfaceKHR() failed."; return false; } #elif VK_USE_PLATFORM_XCB_KHR VkXcbSurfaceCreateInfoKHR create_info = {}; create_info.sType = VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR; create_info.connection = QX11Info::connection(); create_info.window = static_cast<xcb_window_t>(this->winId()); auto vkCreateXcbSurfaceKHR = (PFN_vkCreateXcbSurfaceKHR) vkGetInstanceProcAddr(instance_.instance(), "vkCreateXcbSurfaceKHR"); if (!vkCreateXcbSurfaceKHR) { LOG(ERROR) << "vkCreateXcbSurfaceKHR() not available."; return false; } if (vkCreateXcbSurfaceKHR(instance_.instance(), &create_info, nullptr, &surface_) != VK_SUCCESS) { LOG(ERROR) << "vkCreateXcbSurfaceKHR() failed."; return false; } #endif // Find the best suited physical device. // TODO: The scoring of the devices should be also be influenced by some model // of the renderer that will be used, which may request certain // features. std::multimap<float, VulkanPhysicalDevice*> scored_devices; // Holds the index of a suitable queue family for each device. std::unordered_map<VulkanPhysicalDevice*, u32> selected_graphics_queue_family_indices; std::unordered_map<VulkanPhysicalDevice*, u32> selected_presentation_queue_family_indices; for (const shared_ptr<VulkanPhysicalDevice>& device : instance_.physical_devices()) { // Check for support of the required queues. bool has_graphics_queue = false; bool has_presentation_queue = false; for (u32 queue_family_index = 0; queue_family_index < device->queue_families().size(); ++ queue_family_index) { const VkQueueFamilyProperties& family_properties = device->queue_families().at(queue_family_index); // NOTE: For compatibility reasons, it may be good not to require a queue // count higher than 1: On an Intel Ivy Bridge integrated GPU, only // one queue is available (using the driver available to me at the // time of writing, January 2017). if (family_properties.queueCount > 0 && family_properties.queueFlags & VK_QUEUE_GRAPHICS_BIT) { selected_graphics_queue_family_indices[device.get()] = queue_family_index; has_graphics_queue = true; } VkBool32 presentation_support = false; vkGetPhysicalDeviceSurfaceSupportKHR(device->device(), queue_family_index, surface_, &presentation_support); if (family_properties.queueCount > 0 && presentation_support) { selected_presentation_queue_family_indices[device.get()] = queue_family_index; has_presentation_queue = true; } // If we found a queue which supports both graphics and presentation, // do an early exit. if (has_graphics_queue && has_presentation_queue && selected_graphics_queue_family_indices[device.get()] == selected_presentation_queue_family_indices[device.get()]) { break; } } if (!has_graphics_queue || !has_presentation_queue) { continue; } // Check for support of the required extensions. float device_score = 0; for (const string& requested_extension : device_extensions) { bool found = false; for (const VkExtensionProperties& extension_properties : device->available_extensions()) { if (requested_extension == extension_properties.extensionName) { found = true; break; } } if (!found) { device_score = -1; break; } } if (device_score < 0) { continue; } // Check for support of the required swap chain details given our surface. // This query must be done after the extensions check (because the swap // chain extension might not be available). VulkanSwapChainSupport swap_chain_support; device->QuerySwapChainSupport(surface_, &swap_chain_support); bool swap_chain_support_ok = !swap_chain_support.formats.empty() && !swap_chain_support.present_modes.empty(); if (!swap_chain_support_ok) { continue; } // Score the device according to its type. if (device->properties().deviceType == VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU) { device_score += 10; } else if (device->properties().deviceType == VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU) { device_score += 8; } else if (device->properties().deviceType == VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU) { device_score += 6; } else if (device->properties().deviceType == VK_PHYSICAL_DEVICE_TYPE_CPU) { device_score += 4; } scored_devices.insert(make_pair(device_score, device.get())); } if (scored_devices.empty()) { LOG(ERROR) << "No suitable Vulkan device found."; return false; } selected_physical_device_ = scored_devices.crbegin()->second; u32 selected_graphics_queue_family_index = selected_graphics_queue_family_indices.at(selected_physical_device_); u32 selected_presentation_queue_family_index = selected_presentation_queue_family_indices.at(selected_physical_device_); // Create a logical device for the selected physical device. if (!device_.Initialize(selected_physical_device_->device(), device_extensions, selected_graphics_queue_family_index, selected_presentation_queue_family_index, instance_)) { return false; } // Create command pool. VkCommandPoolCreateInfo pool_info = {}; pool_info.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; pool_info.queueFamilyIndex = selected_graphics_queue_family_index; // Possible flags: // - VK_COMMAND_POOL_CREATE_TRANSIENT_BIT: // Hint that command buffers are re-recorded very often. // - VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT: // Allows command buffers to be re-recorded individually. pool_info.flags = 0; if (vkCreateCommandPool(device_.device(), &pool_info, nullptr, &command_pool_) != VK_SUCCESS) { LOG(ERROR) << "Failed to create a command pool."; return false; } // Create semaphores. VkSemaphoreCreateInfo semaphore_info = {}; semaphore_info.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO; if (vkCreateSemaphore(device_.device(), &semaphore_info, nullptr, &image_available_semaphore_) != VK_SUCCESS || vkCreateSemaphore(device_.device(), &semaphore_info, nullptr, &render_finished_semaphore_) != VK_SUCCESS) { LOG(ERROR) << "Failed to create a semaphore."; return false; } // Create surface dependent objects. if (!CreateSurfaceDependentObjects(VK_NULL_HANDLE)) { return false; } vulkan_initialized_ = true; // Start rendering timer for continuous rendering. render_timer_ = new QTimer(this); render_timer_->setInterval(1); connect(render_timer_, &QTimer::timeout, this, &RenderWidgetVulkan::Render); render_timer_->start(); return true; } void RenderWidgetVulkan::RecreateSwapChain() { StopAndWaitForRendering(); // TODO: It seems like a more elaborate solution to find the objects to // recreate could pay off here. For example, some dependent objects // may only need to be recreated if the swap chain's format changes, // which is extremely unlikely. DestroySurfaceDependentObjects(); CreateSurfaceDependentObjects(swap_chain_); // Restart rendering. // TODO: Should not be done for event-based rendering. render_timer_->start(); } void RenderWidgetVulkan::StopAndWaitForRendering() { render_timer_->stop(); vkDeviceWaitIdle(device_.device()); } bool RenderWidgetVulkan::CreateSurfaceDependentObjects(VkSwapchainKHR old_swap_chain) { // Gather information for creating a swap chain. VulkanSwapChainSupport swap_chain_support; selected_physical_device_->QuerySwapChainSupport(surface_, &swap_chain_support); if (VLOG_IS_ON(1)) { VLOG(1) << "Selected swap chain:"; VLOG(1) << " minImageCount: " << swap_chain_support.capabilities.minImageCount; VLOG(1) << " maxImageCount: " << swap_chain_support.capabilities.maxImageCount; VLOG(1) << " currentExtent: (" << swap_chain_support.capabilities.currentExtent.width << ", " << swap_chain_support.capabilities.currentExtent.height << ")"; VLOG(1) << " minImageExtent: (" << swap_chain_support.capabilities.minImageExtent.width << ", " << swap_chain_support.capabilities.minImageExtent.height << ")"; VLOG(1) << " maxImageExtent: (" << swap_chain_support.capabilities.maxImageExtent.width << ", " << swap_chain_support.capabilities.maxImageExtent.height << ")"; VLOG(1) << " maxImageArrayLayers: " << swap_chain_support.capabilities.maxImageArrayLayers; VLOG(1) << " supportedTransforms: " << swap_chain_support.capabilities.supportedTransforms; VLOG(1) << " currentTransform: " << swap_chain_support.capabilities.currentTransform; VLOG(1) << " supportedCompositeAlpha: " << swap_chain_support.capabilities.supportedCompositeAlpha; VLOG(1) << " supportedUsageFlags: " << swap_chain_support.capabilities.supportedUsageFlags; VLOG(1) << " #supported formats: " << swap_chain_support.formats.size(); string present_mode_names; for (VkPresentModeKHR mode : swap_chain_support.present_modes) { if (!present_mode_names.empty()) { present_mode_names += ", "; } if (mode == VK_PRESENT_MODE_IMMEDIATE_KHR) { present_mode_names += "immediate"; } else if (mode == VK_PRESENT_MODE_MAILBOX_KHR) { present_mode_names += "mailbox"; } else if (mode == VK_PRESENT_MODE_FIFO_KHR) { present_mode_names += "fifo"; } else if (mode == VK_PRESENT_MODE_FIFO_RELAXED_KHR) { present_mode_names += "fifo_relaxed"; } } VLOG(1) << " supported present modes: " << present_mode_names; } // Find the best available surface format. This determines the way colors are // represented. We prefer a standard 32 bits-per-pixel unsigned normalized // format in BGRA pixel ordering (the corresponding RGBA format wasn't // available on an Intel IvyBridge mobile GPU), and sRGB color space. // NOTE: The only other available format on the IvyBridge mobile GPU is: // VK_FORMAT_R8G8B8A8_SRGB. // TODO: Test this and see how it differs. VkSurfaceFormatKHR preferred_surface_format; preferred_surface_format.format = VK_FORMAT_B8G8R8A8_UNORM; preferred_surface_format.colorSpace = VK_COLOR_SPACE_SRGB_NONLINEAR_KHR; VkSurfaceFormatKHR selected_surface_format; if (swap_chain_support.formats.size() == 1 && swap_chain_support.formats[0].format == VK_FORMAT_UNDEFINED) { // Any format is allowed. Choose our preferred one. selected_surface_format = preferred_surface_format; } else { // Go through the list of supported formats to see if the preferred format // is supported. bool found = false; for (const auto& available_format : swap_chain_support.formats) { if (available_format.format == preferred_surface_format.format && available_format.colorSpace == preferred_surface_format.colorSpace) { selected_surface_format = preferred_surface_format; found = true; break; } } if (!found) { // The preferred surface format is not available. Simply choose the first // available one. // TODO: Could rank the available formats and choose the best. LOG(WARNING) << "The preferred surface format for the swap chain is not available. Choosing format: " << swap_chain_support.formats[0].format; LOG(WARNING) << "Available formats:"; for (const auto& available_format : swap_chain_support.formats) { LOG(WARNING) << " VkFormat " << available_format.format << " VkColorSpaceKHR " << available_format.colorSpace; } selected_surface_format = swap_chain_support.formats[0]; } } swap_chain_image_format_ = selected_surface_format.format; // Find the best available presentation mode. // Out of the 4 modes offered by Vulkan, 2 are interesing for us (since they // are the ones to avoid tearing): // VK_PRESENT_MODE_FIFO_KHR: The swap chain is a queue. On a vertical blank, // the first image is taken and displayed. If the queue is full, the // application has to wait. Similar to VSync. This mode is guaranteed to // be supported. // VK_PRESENT_MODE_MAILBOX_KHR: Differing from the mode above, if the queue is // full, new images can replace the existing ones. Can be used to // implement triple buffering. // Policy: Choose VK_PRESENT_MODE_MAILBOX_KHR is available, otherwise // VK_PRESENT_MODE_FIFO_KHR. VkPresentModeKHR selected_present_mode = VK_PRESENT_MODE_FIFO_KHR; for (VkPresentModeKHR present_mode : swap_chain_support.present_modes) { if (present_mode == VK_PRESENT_MODE_MAILBOX_KHR) { selected_present_mode = VK_PRESENT_MODE_MAILBOX_KHR; break; } } // Choose the resolution of the swap chain images equal to the window size, // if possible. if (swap_chain_support.capabilities.currentExtent.width != std::numeric_limits<uint32_t>::max()) { // The extent that shall be used is given. swap_chain_extent_ = swap_chain_support.capabilities.currentExtent; } else { // We can choose the extent ourselves. swap_chain_extent_ = {static_cast<u32>(width()), static_cast<u32>(height())}; swap_chain_extent_.width = std::max(swap_chain_support.capabilities.minImageExtent.width, std::min(swap_chain_support.capabilities.maxImageExtent.width, swap_chain_extent_.width)); swap_chain_extent_.height = std::max(swap_chain_support.capabilities.minImageExtent.height, std::min(swap_chain_support.capabilities.maxImageExtent.height, swap_chain_extent_.height)); } // Decide on the number of images in the swap chain. // Policy: If VK_PRESENT_MODE_MAILBOX_KHR is available, use triple buffering: // Ideally, one frame is used for display, while one is being rendered to, and // the third frame is ready for display. Thus, the frame which is ready can be // updated until it is put on display. Con: frames may be rendered and never // shown; It is not clear which frame will be displayed in the end, so it is // not clear at which time the application state should be rendered if // something is moving, so movements will not be completely fluid. If // VK_PRESENT_MODE_FIFO_KHR is used, use double buffering to // reduce the latency. u32 image_count = (selected_present_mode == VK_PRESENT_MODE_MAILBOX_KHR) ? 3 : 2; image_count = std::max(image_count, swap_chain_support.capabilities.minImageCount); if (swap_chain_support.capabilities.maxImageCount > 0 && image_count > swap_chain_support.capabilities.maxImageCount) { image_count = swap_chain_support.capabilities.maxImageCount; } // Create the swap chain. VkSwapchainCreateInfoKHR swap_chain_create_info = {}; swap_chain_create_info.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR; swap_chain_create_info.surface = surface_; swap_chain_create_info.minImageCount = image_count; swap_chain_create_info.imageFormat = selected_surface_format.format; swap_chain_create_info.imageColorSpace = selected_surface_format.colorSpace; swap_chain_create_info.imageExtent = swap_chain_extent_; swap_chain_create_info.imageArrayLayers = 1; // Potentially use VK_IMAGE_USAGE_TRANSFER_DST_BIT here if the scene is // rendered to a different image first and then transferred to the output: swap_chain_create_info.imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT; u32 shared_queue_family_indices[] = {static_cast<u32>(device_.graphics_queue_family_index()), static_cast<u32>(device_.presentation_queue_family_index())}; if (device_.graphics_queue_family_index() != device_.presentation_queue_family_index()) { // NOTE: VK_SHARING_MODE_EXCLUSIVE would also be possible using explicit // ownership transfers. swap_chain_create_info.imageSharingMode = VK_SHARING_MODE_CONCURRENT; swap_chain_create_info.queueFamilyIndexCount = 2; swap_chain_create_info.pQueueFamilyIndices = shared_queue_family_indices; } else { swap_chain_create_info.imageSharingMode = VK_SHARING_MODE_EXCLUSIVE; swap_chain_create_info.queueFamilyIndexCount = 0; swap_chain_create_info.pQueueFamilyIndices = nullptr; } // Do not use any special transforms. At the time of writing (January 2017), // the potentially available transformations are rotation and mirroring of // the image. swap_chain_create_info.preTransform = swap_chain_support.capabilities.currentTransform; // Do not use the alpha channel to blend with other windows in the window // system. swap_chain_create_info.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR; swap_chain_create_info.presentMode = selected_present_mode; // Do not care about the colors of pixels that are obscured (for example by // other windows in the window system). swap_chain_create_info.clipped = VK_TRUE; swap_chain_create_info.oldSwapchain = old_swap_chain; if (vkCreateSwapchainKHR(device_.device(), &swap_chain_create_info, nullptr, &swap_chain_) != VK_SUCCESS) { LOG(ERROR) << "Swap chain creation failed."; return false; } if (old_swap_chain != VK_NULL_HANDLE) { vkDestroySwapchainKHR(device_.device(), old_swap_chain, nullptr); } // Get the handles of the images in the swap chain. // NOTE: image_count passed into swap_chain_create_info.minImageCount only // specifies the minimum image count. More images could have been // actually created. vkGetSwapchainImagesKHR(device_.device(), swap_chain_, &image_count, nullptr); VLOG(1) << "Swap chain image count: " << image_count; swap_chain_images_.resize(image_count); vkGetSwapchainImagesKHR(device_.device(), swap_chain_, &image_count, swap_chain_images_.data()); // Create image views for each image in the swap chain. swap_chain_image_views_.resize(swap_chain_images_.size()); for (usize i = 0; i < swap_chain_image_views_.size(); ++ i) { VkImageViewCreateInfo image_view_create_info = {}; image_view_create_info.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO; image_view_create_info.image = swap_chain_images_[i]; image_view_create_info.viewType = VK_IMAGE_VIEW_TYPE_2D; image_view_create_info.format = swap_chain_image_format_; // Do not use any color channel swizzling or constant 0 / 1 mapping. image_view_create_info.components.r = VK_COMPONENT_SWIZZLE_IDENTITY; image_view_create_info.components.g = VK_COMPONENT_SWIZZLE_IDENTITY; image_view_create_info.components.b = VK_COMPONENT_SWIZZLE_IDENTITY; image_view_create_info.components.a = VK_COMPONENT_SWIZZLE_IDENTITY; image_view_create_info.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; image_view_create_info.subresourceRange.baseMipLevel = 0; image_view_create_info.subresourceRange.levelCount = 1; image_view_create_info.subresourceRange.baseArrayLayer = 0; image_view_create_info.subresourceRange.layerCount = 1; if (vkCreateImageView(device_.device(), &image_view_create_info, nullptr, &swap_chain_image_views_[i]) != VK_SUCCESS) { LOG(ERROR) << "Failed to create an image view."; return false; } } // Create render subpass. VkAttachmentReference color_attachment_ref = {}; // This references the index in render_pass_info.pAttachments. color_attachment_ref.attachment = 0; color_attachment_ref.layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; VkSubpassDescription subpass = {}; subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; subpass.colorAttachmentCount = 1; // The index of the attachment in this array will be referenced from shaders, // for example: layout(location = 0) out vec4 out_color subpass.pColorAttachments = &color_attachment_ref; // Create render pass. VkAttachmentDescription color_attachment = {}; color_attachment.format = swap_chain_image_format_; // Do not use multisampling: color_attachment.samples = VK_SAMPLE_COUNT_1_BIT; // Alternatives: // - VK_ATTACHMENT_LOAD_OP_LOAD: Retain the previous content. // - VK_ATTACHMENT_LOAD_OP_DONT_CARE: Start with undefined content. color_attachment.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; color_attachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE; // Ignore the stencil buffer: color_attachment.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; color_attachment.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; // Do not care about the previous image format. This prevents preserving the // contents, but this does not matter here as the image is cleared. color_attachment.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; // The image should be ready for presentation after rendering. color_attachment.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; VkRenderPassCreateInfo render_pass_info = {}; render_pass_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO; render_pass_info.attachmentCount = 1; render_pass_info.pAttachments = &color_attachment; render_pass_info.subpassCount = 1; render_pass_info.pSubpasses = &subpass; if (vkCreateRenderPass(device_.device(), &render_pass_info, nullptr, &render_pass_) != VK_SUCCESS) { LOG(ERROR) << "Failed to create a render pass."; return false; } // Create a framebuffer for each swap chain image to be able to bind it as an // attachment to the render pass. A framebuffer references all attachments, // but here we only use one color image. swap_chain_framebuffers_.resize(swap_chain_image_views_.size()); for (usize i = 0; i < swap_chain_image_views_.size(); ++ i) { VkImageView attachments[] = {swap_chain_image_views_[i]}; VkFramebufferCreateInfo framebuffer_info = {}; framebuffer_info.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO; framebuffer_info.renderPass = render_pass_; framebuffer_info.attachmentCount = 1; framebuffer_info.pAttachments = attachments; framebuffer_info.width = swap_chain_extent_.width; framebuffer_info.height = swap_chain_extent_.height; framebuffer_info.layers = 1; if (vkCreateFramebuffer(device_.device(), &framebuffer_info, nullptr, &swap_chain_framebuffers_[i]) != VK_SUCCESS) { LOG(ERROR) << "Failed to create a framebuffer."; return false; } } // Create command buffers: one for each framebuffer. command_buffers_.resize(swap_chain_framebuffers_.size()); VkCommandBufferAllocateInfo command_buffers_info = {}; command_buffers_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO; command_buffers_info.commandPool = command_pool_; // Primary buffers can be submitted directly, while secondary buffers can be // called from primary buffers. command_buffers_info.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; command_buffers_info.commandBufferCount = command_buffers_.size(); if (vkAllocateCommandBuffers(device_.device(), &command_buffers_info, command_buffers_.data()) != VK_SUCCESS) { LOG(ERROR) << "Failed to allocate command buffers."; return false; } for (size_t i = 0; i < command_buffers_.size(); i++) { // Begin recording. VkCommandBufferBeginInfo begin_info = {}; begin_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO; // Possible values: // - VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT indicates that each // recording of the command buffer will only be submitted once, and the // command buffer will be reset and recorded again between each // submission. // - VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT indicates that a // secondary command buffer is considered to be entirely inside a render // pass. If this is a primary command buffer, then this bit is ignored. // - Setting VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT allows the command // buffer to be resubmitted to a queue or recorded into a primary command // buffer while it is pending execution. begin_info.flags = VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT; begin_info.pInheritanceInfo = nullptr; // This resets a buffer if it had been recorded before. vkBeginCommandBuffer(command_buffers_[i], &begin_info); // Start the render pass. VkRenderPassBeginInfo render_pass_info = {}; render_pass_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO; render_pass_info.renderPass = render_pass_; render_pass_info.framebuffer = swap_chain_framebuffers_[i]; render_pass_info.renderArea.offset = {0, 0}; render_pass_info.renderArea.extent = swap_chain_extent_; VkClearValue clear_color; clear_color.color.float32[0] = 0.8f; clear_color.color.float32[1] = 0.2f; clear_color.color.float32[2] = 0.2f; clear_color.color.float32[3] = 1.0f; render_pass_info.clearValueCount = 1; render_pass_info.pClearValues = &clear_color; // If contents is VK_SUBPASS_CONTENTS_INLINE, the contents of the subpass // will be recorded inline in the primary command buffer, and secondary // command buffers must not be executed within the subpass. If contents is // VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS, the contents are recorded // in secondary command buffers that will be called from the primary command // buffer, and vkCmdExecuteCommands is the only valid command on the command // buffer until vkCmdNextSubpass or vkCmdEndRenderPass. vkCmdBeginRenderPass(command_buffers_[i], &render_pass_info, VK_SUBPASS_CONTENTS_INLINE); // No actual rendering commands yet. They would be placed here. // End the render pass. vkCmdEndRenderPass(command_buffers_[i]); // End recording. if (vkEndCommandBuffer(command_buffers_[i]) != VK_SUCCESS) { LOG(ERROR) << "Failed to record a command buffer."; return false; } } // TODO: Continue with shaders. #include "shader.frag.h" and #include "shader.vert.h" from the build directory. return true; } void RenderWidgetVulkan::DestroySurfaceDependentObjects() { vkFreeCommandBuffers(device_.device(), command_pool_, command_buffers_.size(), command_buffers_.data()); for (const VkFramebuffer& framebuffer : swap_chain_framebuffers_) { vkDestroyFramebuffer(device_.device(), framebuffer, nullptr); } vkDestroyRenderPass(device_.device(), render_pass_, nullptr); for (const VkImageView& image_view : swap_chain_image_views_) { vkDestroyImageView(device_.device(), image_view, nullptr); } } RenderWindowQtVulkan::RenderWindowQtVulkan(const string& title, int width, int height, const shared_ptr<RenderWindowCallbacks>& callbacks) : RenderWindowQt(title, width, height, callbacks) { QtThread::Instance()->RunInQtThreadBlocking([&](){ // Add the Vulkan render widget to the window created by the parent class. render_widget_ = new RenderWidgetVulkan(); window_->setCentralWidget(QWidget::createWindowContainer(render_widget_)); }); } void RenderWindowQtVulkan::RenderFrame() { // TODO } }
[ "tom.schoeps@gmail.com" ]
tom.schoeps@gmail.com
f8af0244c80ad7d3056f4ae29bb799ca955d2c75
e63c1e59b2d1bfb5c03d7bf9178cf3b8302ce551
/uri/uri_cpp/paradigmas/p1084.cpp
c6e6ab3ac8569054b1f64b3ec02da8bee90f2104
[]
no_license
GabrielEstevam/icpc_contest_training
b8d97184ace8a0e13e1c0bf442baa36c853a6837
012796c2ceb901cf7aa25d44a93614696a7d9c58
refs/heads/master
2020-04-24T06:15:16.826669
2019-10-08T23:13:15
2019-10-08T23:13:15
171,758,893
5
0
null
null
null
null
UTF-8
C++
false
false
1,001
cpp
#include <iostream> #include <sstream> #include <string> #include <stdlib.h> #include <stdio.h> #include <vector> using namespace std; int main() { int n, d, i, j; unsigned k; string entry; vector <char> input; cin >> n; cin >> d; while (n != 0) { cin >> entry; for (k = 0; k < entry.size(); k++) input.push_back(entry[k]); i = 0; j = 1; while (i < d) { if (input[j] > input[j-1]) { input.erase(input.begin()+j-1); i++; if (j > 1) j--; } else if (j+1 < input.size()) { j++; } else { while (i < d) { input.pop_back(); i++; } } } for (k = 0; k < input.size(); k++) cout << input[k]; cout << endl; input.clear(); cin >> n; cin >> d; } return 0; }
[ "gabrielestevam@hotmail.com" ]
gabrielestevam@hotmail.com
6ccd6befeacb4f3acf77a7c792a8a004a29146d6
4185c1099535893911ff0325dfd41136f03a80f0
/11抽象工厂模式/AbstractFactory.h
9be51fefbfd408ed2239202d75f268686a84bcfa
[]
no_license
ruan875417/DesignPattern
ec3076185f7088f279fc3b4ac1db76a365631b34
cc2a0a9e38ee067f27e89043339eea1d248ba170
refs/heads/master
2021-01-23T14:05:23.700334
2014-11-30T02:44:15
2014-11-30T02:44:15
25,769,676
2
0
null
null
null
null
GB18030
C++
false
false
1,304
h
#ifndef ABSTTACTFACTORY_H #define ABSTTACTFACTORY_H #include<iostream> using namespace std; ////////////////////////////////////////// //抽象产品类A, //定义了具体产品类A统一的接口 class Linux{ public: virtual void create()=0; }; //抽象产品类B //定义了具体产品类B统一的接口 class Windows{ public: virtual void create()=0; }; /////////////////////////////////////////// //具体产品 class LinuxMobile:public Linux{ public: void create(); }; class LinuxPC:public Linux{ public: void create(); }; class WindowsMobile:public Windows{ public: void create(); }; class WindowsPC:public Windows{ public: void create(); }; ////////////////////////////////////////////////// //抽象工厂,它里面应该包含 //所有产品创建的抽象方法 class AbstractFactory{ public: virtual Linux* createLinux()=0; virtual Windows* createWindows()=0; }; //具体工厂,创建具有特定 //实现的产品对象 class MobileFactory:public AbstractFactory{ public: Linux* createLinux(); Windows* createWindows(); }; class PCFactory:public AbstractFactory{ public: Linux* createLinux(); Windows* createWindows(); }; #endif
[ "ruan875417@qq.com" ]
ruan875417@qq.com
c7b2cd3dde1cb257c40edf32f2a59902e53cb749
9f81d77e028503dcbb6d7d4c0c302391b8fdd50c
/google/cloud/storage/examples/storage_signed_url_v2_samples.cc
25c5912b5108c7126cb88e0ae9b17d50eab64892
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
googleapis/google-cloud-cpp
b96a6ee50c972371daa8b8067ddd803de95f54ba
178d6581b499242c52f9150817d91e6c95b773a5
refs/heads/main
2023-08-31T09:30:11.624568
2023-08-31T03:29:11
2023-08-31T03:29:11
111,860,063
450
351
Apache-2.0
2023-09-14T21:52:02
2017-11-24T00:19:31
C++
UTF-8
C++
false
false
5,063
cc
// Copyright 2020 Google LLC // // 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 // // https://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 "google/cloud/storage/client.h" #include "google/cloud/storage/examples/storage_examples_common.h" #include "google/cloud/internal/getenv.h" #include <iostream> namespace { void CreateGetSignedUrlV2(google::cloud::storage::Client client, std::vector<std::string> const& argv) { //! [sign url v2] [START storage_generate_signed_url_v2] namespace gcs = ::google::cloud::storage; using ::google::cloud::StatusOr; [](gcs::Client client, std::string const& bucket_name, std::string const& object_name, std::string const& signing_account) { StatusOr<std::string> signed_url = client.CreateV2SignedUrl( "GET", std::move(bucket_name), std::move(object_name), gcs::ExpirationTime(std::chrono::system_clock::now() + std::chrono::minutes(15)), gcs::SigningAccount(signing_account)); if (!signed_url) throw std::move(signed_url).status(); std::cout << "The signed url is: " << *signed_url << "\n\n" << "You can use this URL with any user agent, for example:\n" << "curl '" << *signed_url << "'\n"; } //! [sign url v2] [END storage_generate_signed_url_v2] (std::move(client), argv.at(0), argv.at(1), argv.at(2)); } void CreatePutSignedUrlV2(google::cloud::storage::Client client, std::vector<std::string> const& argv) { //! [create put signed url v2] namespace gcs = ::google::cloud::storage; using ::google::cloud::StatusOr; [](gcs::Client client, std::string const& bucket_name, std::string const& object_name, std::string const& signing_account) { StatusOr<std::string> signed_url = client.CreateV2SignedUrl( "PUT", std::move(bucket_name), std::move(object_name), gcs::ExpirationTime(std::chrono::system_clock::now() + std::chrono::minutes(15)), gcs::ContentType("application/octet-stream"), gcs::SigningAccount(signing_account)); if (!signed_url) throw std::move(signed_url).status(); std::cout << "The signed url is: " << *signed_url << "\n\n" << "You can use this URL with any user agent, for example:\n" << "curl -X PUT -H 'Content-Type: application/octet-stream'" << " --upload-file my-file '" << *signed_url << "'\n"; } //! [create put signed url v2] (std::move(client), argv.at(0), argv.at(1), argv.at(2)); } void RunAll(std::vector<std::string> const& argv) { namespace examples = ::google::cloud::storage::examples; namespace gcs = ::google::cloud::storage; if (!argv.empty()) throw examples::Usage{"auto"}; examples::CheckEnvironmentVariablesAreSet({ "GOOGLE_CLOUD_PROJECT", "GOOGLE_CLOUD_CPP_STORAGE_TEST_BUCKET_NAME", "GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_SERVICE_ACCOUNT", }); auto const project_id = google::cloud::internal::GetEnv("GOOGLE_CLOUD_PROJECT").value(); auto const bucket_name = google::cloud::internal::GetEnv( "GOOGLE_CLOUD_CPP_STORAGE_TEST_BUCKET_NAME") .value(); auto const signing_account = google::cloud::internal::GetEnv( "GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_SERVICE_ACCOUNT") .value(); auto generator = google::cloud::internal::DefaultPRNG(std::random_device{}()); auto const object_name = examples::MakeRandomObjectName(generator, "cloud-cpp-test-examples-"); auto client = gcs::Client(); if (examples::UsingEmulator()) { std::cout << "Signed URL examples are only runnable against production\n"; return; } std::cout << "\nRunning CreatePutSignedUrlV2() example" << std::endl; CreatePutSignedUrlV2(client, {bucket_name, object_name, signing_account}); std::cout << "\nRunning CreateGetSignedUrlV2() example" << std::endl; CreateGetSignedUrlV2(client, {bucket_name, object_name, signing_account}); } } // namespace int main(int argc, char* argv[]) { namespace examples = ::google::cloud::storage::examples; auto make_entry = [](std::string const& name, examples::ClientCommand const& cmd) { return examples::CreateCommandEntry( name, {"<bucket-name>", "<object-name>", "<signing-account>"}, cmd); }; examples::Example example({ make_entry("create-get-signed-url-v2", CreateGetSignedUrlV2), make_entry("create-put-signed-url-v2", CreatePutSignedUrlV2), {"auto", RunAll}, }); return example.Run(argc, argv); }
[ "noreply@github.com" ]
googleapis.noreply@github.com
35cbefdcc55c48c74b15cbaf5a5d88c7438ef253
be3c35d27245654e53c47619a485ef3d0e50901d
/C++/CPPDemos/vs code/advanceCPPconcept/advanceCPPconcept/dog.h
a661e11f34712febef6e112449852d8476c3b147
[]
no_license
zzhan08/Exercises
9aa6a439e36222806310eef50199250353291c4d
1be3566206ead9cc329c809c7ad1a2f03c010056
refs/heads/main
2023-03-03T05:52:30.539181
2021-02-07T20:43:03
2021-02-07T20:43:03
336,820,822
0
0
null
null
null
null
UTF-8
C++
false
false
262
h
#ifndef DOG #define DOG #include <string> #include<iostream> class dog { public: dog(std::string name) { std::cout<< name <<"dog name"<< std::endl; }; //void destroyMe() { delete this; } private: ~dog() { std::cout << "dog destory" << std::endl; }; }; #endif
[ "zhangz@innopharmalabs.com" ]
zhangz@innopharmalabs.com
9b89254c1be3dedee01e13f76cb3abaefa38a9fb
012f0800c635f23d069f0c400768bc58cc1a0574
/hhvm/hhvm-3.17/third-party/thrift/src/thrift/lib/cpp2/server/Cpp2Worker.h
7663e7d30306e4fb776e4e1dbef0d533d5b746cd
[ "Apache-2.0", "Zend-2.0", "BSD-3-Clause", "PHP-3.01" ]
permissive
chrispcx/es-hhvm
c127840387ee17789840ea788e308b711d3986a1
220fd9627b1b168271112d33747a233a91e8a268
refs/heads/master
2021-01-11T18:13:42.713724
2017-02-07T02:02:10
2017-02-07T02:02:10
79,519,670
5
0
null
null
null
null
UTF-8
C++
false
false
6,382
h
/* * Copyright 2014 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef CPP2_WORKER_H_ #define CPP2_WORKER_H_ 1 #include <folly/io/async/AsyncServerSocket.h> #include <thrift/lib/cpp/async/TAsyncSSLSocket.h> #include <folly/io/async/HHWheelTimer.h> #include <thrift/lib/cpp2/server/ThriftServer.h> #include <thrift/lib/cpp2/server/TLSHelper.h> #include <folly/io/async/EventBase.h> #include <folly/io/async/EventHandler.h> #include <thrift/lib/cpp/server/TServer.h> #include <unordered_set> #include <wangle/acceptor/ConnectionManager.h> #include <wangle/acceptor/Acceptor.h> #include <wangle/acceptor/PeekingAcceptorHandshakeHelper.h> namespace apache { namespace thrift { // Forward declaration of classes class Cpp2Connection; class ThriftServer; /** * Cpp2Worker drives the actual I/O for ThriftServer connections. * * The ThriftServer itself accepts incoming connections, then hands off each * connection to a Cpp2Worker running in another thread. There should * typically be around one Cpp2Worker thread per core. */ class Cpp2Worker : public wangle::Acceptor, private wangle::PeekingAcceptorHandshakeHelper::PeekCallback, public std::enable_shared_from_this<Cpp2Worker> { protected: enum { kPeekCount = 9 }; struct DoNotUse {}; public: /** * Cpp2Worker is the actual server object for existing connections. * One or more of these should be created by ThriftServer (one per * CPU core is recommended). * * @param server the ThriftServer which created us. * @param serverChannel existing server channel to use, only for duplex server */ static std::shared_ptr<Cpp2Worker> create(ThriftServer* server, const std::shared_ptr<HeaderServerChannel>& serverChannel = nullptr, folly::EventBase* eventBase = nullptr) { std::shared_ptr<Cpp2Worker> worker(new Cpp2Worker(server, {})); worker->construct(server, serverChannel, eventBase); return worker; } void init( folly::AsyncServerSocket* serverSocket, folly::EventBase* eventBase, wangle::SSLStats* stats = nullptr) override { securityProtocolCtxManager_.addPeeker(this); Acceptor::init(serverSocket, eventBase, stats); } /** * Get underlying server. * * @returns pointer to ThriftServer */ ThriftServer* getServer() const { return server_; } /** * Count the number of pending fds. Used for overload detection. * Not thread-safe. */ int computePendingCount(); /** * Cached pending count. Thread-safe. */ int getPendingCount() const; /** * SSL stats hook */ void updateSSLStats( const folly::AsyncTransportWrapper* sock, std::chrono::milliseconds acceptLatency, wangle::SSLErrorEnum error, wangle::SecureTransportType type = wangle::SecureTransportType::TLS) noexcept override; protected: Cpp2Worker(ThriftServer* server, DoNotUse /* ignored, never call constructor directly */) : Acceptor(server->getServerSocketConfig()), wangle::PeekingAcceptorHandshakeHelper::PeekCallback(kPeekCount), server_(server), activeRequests_(0), pendingCount_(0), pendingTime_(std::chrono::steady_clock::now()) { } void construct(ThriftServer* server, const std::shared_ptr<HeaderServerChannel>& serverChannel, folly::EventBase* eventBase) { auto observer = std::dynamic_pointer_cast<folly::EventBaseObserver>( server_->getObserver()); if (serverChannel) { eventBase = serverChannel->getEventBase(); } else if (!eventBase) { eventBase = folly::EventBaseManager::get()->getEventBase(); } init(nullptr, eventBase); if (serverChannel) { // duplex useExistingChannel(serverChannel); } if (observer) { eventBase->setObserver(observer); } } void onNewConnection(folly::AsyncTransportWrapper::UniquePtr, const folly::SocketAddress*, const std::string&, wangle::SecureTransportType, const wangle::TransportInfo&) override; SSLPolicy getSSLPolicy() { return server_->getSSLPolicy(); } void plaintextConnectionReady( folly::AsyncTransportWrapper::UniquePtr sock, const folly::SocketAddress& clientAddr, const std::string& nextProtocolName, wangle::SecureTransportType secureTransportType, wangle::TransportInfo& tinfo) override; private: /// The mother ship. ThriftServer* server_; folly::AsyncSocket::UniquePtr makeNewAsyncSocket(folly::EventBase* base, int fd) override { return folly::AsyncSocket::UniquePtr(new apache::thrift::async::TAsyncSocket(base, fd)); } folly::AsyncSSLSocket::UniquePtr makeNewAsyncSSLSocket( const std::shared_ptr<folly::SSLContext>& ctx, folly::EventBase* base, int fd) override { return folly::AsyncSSLSocket::UniquePtr( new apache::thrift::async::TAsyncSSLSocket( ctx, base, fd, true, /* set server */ true /* defer the security negotiation until sslAccept. */)); } /** * For a duplex Thrift server, use an existing channel */ void useExistingChannel( const std::shared_ptr<HeaderServerChannel>& serverChannel); uint32_t activeRequests_; int pendingCount_; std::chrono::steady_clock::time_point pendingTime_; wangle::AcceptorHandshakeHelper::UniquePtr getHelper( const std::vector<uint8_t>& bytes, wangle::Acceptor* acceptor, const folly::SocketAddress& clientAddr, std::chrono::steady_clock::time_point acceptTime, wangle::TransportInfo& tinfo) override; friend class Cpp2Connection; friend class ThriftServer; }; }} // apache::thrift #endif // #ifndef CPP2_WORKER_H_
[ "peiqiang@huawei.com" ]
peiqiang@huawei.com
08c2e337822ff1cf0c6da76c47c35780842714e3
f435486913aa9c997319146fa0b71479d4c09846
/h/directlightDlg.h
bd2a16b7286a1a2203b9bf2a7b1592d53ce77767
[]
no_license
SnowyOwl-KHY/3DStudio
a60051e211c88e7e0034ed581437ffe64c8d586f
3323aa3db689a372d719fea3821628f9ce0fae7e
refs/heads/master
2020-04-09T05:13:50.200929
2015-08-31T18:53:06
2015-08-31T18:53:06
null
0
0
null
null
null
null
GB18030
C++
false
false
826
h
#pragma once #include "afxwin.h" // directlightDlg 对话框 class directlightDlg : public CDialog { DECLARE_DYNAMIC(directlightDlg) DirectLight &light; public: directlightDlg(DirectLight& l, CWnd* pParent = NULL); // 标准构造函数 virtual ~directlightDlg(); // 对话框数据 enum { IDD = IDD_DIALOG_DIRECTLIGHT }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 DECLARE_MESSAGE_MAP() public: virtual BOOL OnInitDialog(); CEdit mEditX; CEdit mEditY; CEdit mEditZ; CEdit mEditAR; CEdit mEditAG; CEdit mEditAB; CEdit mEditAA; CEdit mEditDR; CEdit mEditDG; CEdit mEditDB; CEdit mEditDA; CEdit mEditSR; CEdit mEditSG; CEdit mEditSB; CEdit mEditSA; CEdit mEditX2; CEdit mEditY2; CEdit mEditZ2; CEdit mEditCutoff; CEdit mEditExpo; virtual void OnOK(); };
[ "kehycs@foxmail.com" ]
kehycs@foxmail.com
a551659c8548d521bb5aca315f37dff820e35f3f
e2e993e83a4b766813f0f2d79acdfdd3680dafd5
/CardGame2/CardGame2.cpp
b8a6b89840a13999a65746c2271132f87eb0135c
[]
no_license
jaconstantin/CardGames
ef97e1153fa0f47260b49b77ec4eeea1931a7472
6a9c527a7779b74fcefcbb75d8525c440ef2d95e
refs/heads/master
2021-01-13T10:46:57.762438
2016-11-15T01:00:23
2016-11-15T01:00:23
72,382,690
0
0
null
null
null
null
UTF-8
C++
false
false
7,140
cpp
// CardGame2.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "card.h" int main() { CardDeck *deck0 = new CardDeck(); deck0->show(); deck0->shuffle(); deck0->show(); cout << endl << endl << endl; OneCard a(deck0->draw()); cout << a.getHandString() << " " << a.getValue() << endl << endl; //manual test for getting the value of a single card for (int i = 0; i < 13; ++i) { a.setCard(Card(clover,static_cast<cardNum_t>(i))); cout << a.getHandString() << " " << a.getValue() << " " << a.isAllowed() << endl << endl; } for (int i = 0; i < 4; ++i) { a.setCard(Card(static_cast<cardSuit_t>(i), three)); cout << a.getHandString() << " " << a.getValue() << endl << endl; } //manual test for pairCards, allowed and getValue Card b[2] = { Card(clover,three),Card(heart,three) }; PairCard pc1(b); cout << pc1.getHandString() << " " << pc1.getValue() << " " << pc1.isAllowed() << endl << endl; b[0] = Card(diamond, four); b[1] = Card(spade, four); pc1.setCard(b); cout << pc1.getHandString() << " " << pc1.getValue() << " " << pc1.isAllowed() << endl << endl; b[0] = Card(clover, four); b[1] = Card(spade, five); pc1.setCard(b); cout << pc1.getHandString() << " " << pc1.getValue() << " " << pc1.isAllowed() << endl << endl; //manual test for FiveCards, constructor and sort Card c[5] = { Card(clover,three), Card(heart,four), Card(spade,five), Card(diamond,six), Card(clover,ace) }; FiveCard fc1(c); cout << fc1.getHandString() << " "; cout << fc1.getHandString() << endl << endl; for (int i = 0; i < 5; ++i) { c[i] = deck0->draw(); } fc1.setCard(c); cout << fc1.getHandString() << " "; fc1.sort(); cout << fc1.getHandString() << endl << endl; //manual test for allowed straight/flush/full house //need to make is##### functions public if you want to remove the comment parts c[0] = Card(clover,ace); c[1] = Card(clover,two); c[2] = Card(heart,three); c[3] = Card(spade,four); c[4] = Card(diamond,five); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(clover, ace); c[1] = Card(clover, two); c[2] = Card(heart, jack); c[3] = Card(spade, queen); c[4] = Card(diamond, king); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(clover, three); c[1] = Card(clover, four); c[2] = Card(heart, six); c[3] = Card(spade, seven); c[4] = Card(diamond, five); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(clover, three); c[1] = Card(clover, four); c[2] = Card(heart, three); c[3] = Card(spade, six); c[4] = Card(diamond, five); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(clover, three); c[1] = Card(clover, four); c[2] = Card(clover, six); c[3] = Card(clover, seven); c[4] = Card(clover, five); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, jack); c[1] = Card(spade, queen); c[2] = Card(spade, two); c[3] = Card(spade, ten); c[4] = Card(spade, eight); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(heart, three); c[1] = Card(heart, four); c[2] = Card(heart, three); c[3] = Card(heart, six); c[4] = Card(heart, five); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, three); c[1] = Card(heart, eight); c[2] = Card(spade, eight); c[3] = Card(clover, three); c[4] = Card(diamond, eight); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, two); c[1] = Card(heart, eight); c[2] = Card(spade, eight); c[3] = Card(clover, two); c[4] = Card(diamond, two); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, two); c[1] = Card(heart, king); c[2] = Card(spade, eight); c[3] = Card(clover, two); c[4] = Card(diamond, two); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, eight); c[1] = Card(heart, eight); c[2] = Card(diamond, eight); c[3] = Card(clover, eight); c[4] = Card(diamond, two); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; c[0] = Card(spade, ace); c[1] = Card(heart, ace); c[2] = Card(spade, eight); c[3] = Card(clover, ace); c[4] = Card(diamond, ace); fc1.setCard(c); //cout << fc1.getHandString() << " " << fc1.isStraight() << " " << fc1.isFlush() << " " << fc1.isFullHouse() << " " << fc1.isQuadro() << endl << endl; cout << fc1.getHandString() << " " << fc1.getStringType() << " " << fc1.isAllowed() << " " << fc1.getValue() << endl; delete deck0; return 0; }
[ "oteph113@gmail.com" ]
oteph113@gmail.com
b54ad031f023bce744f0fd657b6284eb763ca6ab
493ac26ce835200f4844e78d8319156eae5b21f4
/flow_simulation/ideal_flow/processor3/0.74/nut
e0825757aa6e833589042bf2308f88d9de66cbfd
[]
no_license
mohan-padmanabha/worm_project
46f65090b06a2659a49b77cbde3844410c978954
7a39f9384034e381d5f71191122457a740de3ff0
refs/heads/master
2022-12-14T14:41:21.237400
2020-08-21T13:33:10
2020-08-21T13:33:10
289,277,792
0
0
null
null
null
null
UTF-8
C++
false
false
20,814
/*--------------------------------*- 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 volScalarField; location "0.74"; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 1431 ( 0.00436885 0.0115136 0.000882688 0.000971078 0.00151103 0.00856951 0.00209371 0.0094519 0.00706619 0.00121656 0.00417052 0.0125391 0.0151268 0.00224894 0.00165117 0.00179473 0.00202077 0.001182 0.0020786 0.00162322 0.00554473 0.00532232 0.0056374 0.0150819 0.00592671 0.0116571 0.00370096 0.001619 0.000886314 0.000703739 0.00203205 0.00256479 0.00191608 0.00124844 0.0128361 0.00154725 0.011806 0.000945299 0.000580113 0.00231683 0.00563217 0.00768015 0.0135563 0.00120682 0.00387843 0.00192385 0.0035747 0.0035054 0.0023403 0.00140578 0.0124801 0.00115826 0.0139 0.0127186 0.00893091 0.00754553 0.000908169 0.0134969 0.00176171 0.00100526 0.00146467 0.000492737 0.000464178 0.000426655 0.000274921 0.000365704 0.000787403 0.000611859 0.000819033 0.00124507 0.00368834 0.0011686 0.000495935 0.000856873 0.00149331 0.00097619 0.00058448 0.000318034 0.000620536 0.00106243 0.00171416 0.00063996 0.012206 0.00413101 0.00648227 0.00218356 0.00168483 0.00307392 0.0102397 0.0128208 0.00153619 0.00147229 0.00182716 0.00167436 0.00802708 0.00066294 0.0118996 0.0196143 0.00108324 0.00122128 0.0106624 0.000791096 0.00267256 0.00108501 0.00043025 0.00235136 0.00296682 0.0032715 0.00428437 0.00226335 0.00111574 0.0157095 0.0057247 0.0047311 0.0109922 0.00125387 0.00138731 0.000601012 0.000571021 0.000371424 0.00130676 0.00158213 0.00246229 0.00125348 0.00255918 0.000457696 0.000599294 0.00267111 0.00102761 0.00366694 0.00132986 0.00109131 0.00410977 0.00156694 0.0017573 0.00163355 0.000901627 0.00117757 0.013332 0.000424433 0.000349325 0.00192492 0.00148676 0.000658768 0.00548275 0.00180466 0.000561647 0.0126129 0.00152426 0.000983816 0.00102198 0.00103063 0.00245158 0.000621232 0.00330723 0.00168999 0.00995707 0.0165462 0.0131138 0.00324868 0.0183201 0.0158546 0.00071735 0.00228567 0.00276214 0.00421909 0.00402739 0.00972119 0.00130276 0.0169691 0.0176126 0.0143468 0.00219579 0.0134031 0.0139789 0.00935246 0.00371325 0.00626618 0.0139222 0.0138451 0.000434536 0.000950045 0.00839983 0.0180677 0.00681291 0.00131764 0.0015189 0.016394 0.00239753 0.00734088 0.00225363 0.00242855 0.00255547 0.0036521 0.000566876 0.0180538 0.0201412 0.0126391 0.000947627 0.00154467 0.00971973 0.000916579 0.00418308 0.00234994 0.0156977 0.00237207 0.00231874 0.000729874 0.0146076 0.00223017 0.00198128 0.000569125 0.00293927 0.00237341 0.0120517 0.00152564 0.00273516 0.0129268 0.00910741 0.0040354 0.00313474 0.00789341 0.00260392 0.0014766 0.00343849 0.0162676 0.00441137 0.0183393 0.00278159 0.00304778 0.00613353 0.00202731 0.00237434 0.00248613 0.00267861 0.0189834 0.00291952 0.00263796 0.00216517 0.00624643 0.0038894 0.0136178 0.0153965 0.00253284 0.00244593 0.0041724 0.0026663 0.00391566 0.0033056 0.0012966 0.00261926 0.0139493 0.00284 0.00123822 0.00233261 0.00731403 0.00238181 0.017049 0.0205975 0.0026061 0.00169587 0.0130643 0.0086726 0.00342247 0.00366299 0.00475295 0.0111707 0.00449538 0.00345442 0.000639224 0.00448935 0.00289368 0.00931136 0.00377781 0.017016 0.00203601 0.016036 0.00320194 0.000997528 0.00150406 0.0152733 0.0127769 0.00179538 0.00955137 0.00567022 0.0184356 0.00716898 0.0205274 0.00565916 0.0118059 0.00058243 0.00927781 0.0191459 0.0148182 0.002641 0.00256777 0.00183475 0.00147946 0.00222264 0.00104257 0.0138802 0.000668082 0.00734083 0.0148263 0.00295823 0.0019273 0.0143147 0.00243354 0.00870381 0.0153146 0.0180381 0.00038495 0.000431547 0.00133933 0.00840057 0.0198961 0.0128475 0.00713237 0.00156524 0.0137821 0.0144305 0.0191311 0.000777381 0.0125717 0.0107518 0.00099882 0.000825088 0.00724895 0.0129858 0.00108793 0.00115616 0.00180623 0.00757072 0.00605849 0.00378632 0.0147884 0.0071819 0.0191831 0.00999823 0.00129995 0.000374894 0.0146508 0.0151257 0.00522534 0.00758906 0.00231965 0.00979306 0.0155329 0.0169742 0.0150101 0.00723224 0.00132655 0.012586 0.0157129 0.00163142 0.00610401 0.00773887 0.00184574 0.011995 0.00644602 0.00555572 0.00131486 0.00108879 0.00555494 0.00167952 0.00515377 0.00654551 0.017659 0.00262157 0.0020005 0.00394859 0.00226348 0.0115393 0.0123909 0.00548049 0.0183745 0.0161145 0.00238884 0.0126765 0.0186135 0.0160081 0.00869009 0.00315752 0.0015423 0.0169383 0.00826949 0.0147412 0.00728905 0.0107742 0.0128836 0.0039446 0.0148818 0.0148868 0.00154134 0.0201989 0.0134438 0.0144206 0.0140027 0.00606255 0.00978283 0.0162583 0.00558591 0.020626 0.00735838 0.00534628 0.0139785 0.00795139 0.000532677 0.00468073 0.0142611 0.0171292 0.0120027 0.0145291 0.0146716 0.00730595 0.000871814 0.0148759 0.000521662 0.010215 0.0147662 0.00368718 0.0152092 0.00970724 0.0152834 0.0150017 0.00206533 0.00179812 0.00374704 0.005633 0.0140879 0.0152578 0.0149081 0.0146877 0.0146962 0.0146995 0.0149543 0.015355 0.0145478 0.0155144 0.0148607 0.00176514 0.0135343 0.00170338 0.00148075 0.00110353 0.00131185 0.00157718 0.00160712 0.00444232 0.00461221 0.00416788 0.00163998 0.0021417 0.00117989 0.00207405 0.00216053 0.005608 0.016162 0.00118229 0.00171164 0.00509205 0.00123688 0.0154869 0.0018782 0.00209222 0.00142659 0.00116164 0.0148572 0.00166896 0.0141389 0.0014975 0.00137385 0.00122329 0.00623149 0.0134004 0.0134277 0.00192458 0.00111681 0.00141636 0.00147605 0.00636609 0.00148154 0.0134445 0.00146144 0.0013369 0.0060204 0.00145828 0.00121109 0.00121489 0.00256275 0.0131631 0.00142432 0.00207833 0.00535066 0.00488303 0.00171735 0.00309977 0.0125706 0.00158462 0.00215772 0.00920458 0.00890872 0.00136183 0.00124704 0.0122516 0.0137563 0.00192027 0.00236491 0.00279084 0.00195688 0.00647123 0.00514559 0.00142928 0.00440832 0.00114684 0.00179017 0.00949078 0.0078189 0.00531888 0.0133878 0.00402767 0.00475654 0.00290605 0.00127597 0.0105134 0.00225964 0.0114966 0.00228117 0.00168036 0.000555843 0.0113122 0.00974122 0.0129597 0.00600532 0.0140582 0.00814432 0.00346936 0.00173309 0.0108677 0.00174835 0.0152864 0.00162443 0.00505022 0.00740452 0.00355568 0.00373256 0.0106537 0.00158731 0.0148816 0.0130498 0.0144223 0.00133554 0.00568676 0.014694 0.00147768 0.00367532 0.00268183 0.00935707 0.00163163 0.00641442 0.0132298 0.0119341 0.019102 0.0130785 0.00919126 0.00857766 0.00585988 0.00186363 0.0138653 0.00761885 0.0156592 0.0114671 0.0158871 0.00454969 0.00119547 0.0108455 0.00157141 0.00164917 0.0161161 0.0150607 0.0156031 0.00935433 0.00434578 0.0146822 0.0154135 0.0031309 0.00241846 0.00913169 0.00140933 0.00278781 0.0157331 0.00163107 0.012221 0.0120149 0.00354979 0.0147524 0.00517292 0.0146601 0.0180732 0.0139455 0.00170645 0.0131569 0.0137537 0.0083732 0.0124025 0.0081982 0.00183959 0.0157944 0.00121081 0.00163354 0.00186977 0.0109604 0.0148254 0.0163156 0.0052333 0.0071629 0.00483553 0.00357574 0.0134964 0.0140058 0.013218 0.0127053 0.00109131 0.0146089 0.0135684 0.00723526 0.0138381 0.00229935 0.0138183 0.00523676 0.0148971 0.0116351 0.000315404 0.0161959 0.0156663 0.0135913 0.0103655 0.00434615 0.00436308 0.00891556 0.00562426 0.0200012 0.00356687 0.0140891 0.00164637 0.0132677 0.0113844 0.0109101 0.00422751 0.0145786 0.0137919 0.00992569 0.00148296 0.0145849 0.00201247 0.00931811 0.00661755 0.00783747 0.0113033 0.0150263 0.019704 0.0134449 0.0137023 0.014901 0.0097576 0.00437542 0.00226834 0.00936742 0.0130111 0.0011373 0.015222 0.0115192 0.00170406 0.0151796 0.0137409 0.00333247 0.00172764 0.00632985 0.00503574 0.00576298 0.00800021 0.00615005 0.0145391 0.00169901 0.00063129 0.000837221 0.0158462 0.00482196 0.00198284 0.000886089 0.00529128 0.00278849 0.00494736 0.000774583 0.000553764 0.0140406 0.00143322 0.00438969 0.000469428 0.0151932 0.00119491 0.0141515 0.0155192 0.000665775 0.00170553 0.00178919 0.00138097 0.00131062 0.01198 0.0102521 0.00614583 0.00333603 0.00273188 0.00333912 0.00176772 0.00477235 0.0140773 0.00310779 0.00256643 0.00483029 0.0052463 0.00238845 0.0134601 0.0157113 0.00248185 0.00763292 0.00351846 0.0137233 0.00342085 0.00454867 0.00123547 0.0160127 0.0138958 0.00332889 0.006721 0.00298671 0.00500789 0.00157098 0.00167991 0.00308199 0.000761326 0.00701835 0.00389901 0.00468331 0.0154725 0.00794893 0.00524657 0.00118238 0.00518757 0.00135095 0.0108184 0.00703258 0.00652612 0.00146765 0.0156507 0.00520155 0.00628082 0.00144419 0.00756695 0.000592953 0.0175441 0.00625459 0.00333122 0.00183335 0.00127266 0.00299901 0.00177671 0.00207838 0.0133849 0.00418797 0.0116449 0.00236269 0.00477792 0.00526281 0.00584562 0.0125518 0.000428832 0.00775772 0.0110939 0.00183815 0.0145566 0.000686134 0.0156954 0.0018581 0.00100066 0.0129139 0.0068512 0.014203 0.00230838 0.0135487 0.00608792 0.0015837 0.00245708 0.0122492 0.00241742 0.000422049 0.00298591 0.00233968 0.00241034 0.015637 0.00241687 0.00608703 0.00116046 0.0152352 0.0157702 0.0116868 0.00250492 0.00861875 0.00808917 0.00650348 0.0167974 0.00260011 0.00954015 0.0112402 0.00964419 0.0168902 0.0155314 0.00202832 0.0132696 0.00538932 0.00141223 0.00476635 0.0151182 0.0151011 0.00109897 0.000774043 0.00746751 0.00191878 0.00214709 0.00124845 0.0139022 0.0016914 0.00161006 0.00234244 0.0134208 0.0133147 0.00298677 0.0138906 0.0154446 0.00704872 0.0157203 0.00374533 0.00147364 0.00243644 0.0150854 0.018401 0.00122057 0.017024 0.007497 0.0196191 0.00288746 0.00194862 0.0131912 0.0059965 0.000845249 0.000637612 0.00437157 0.00562661 0.000912176 0.000708791 0.00589414 0.0144449 0.00652317 0.0112086 0.0161215 0.0107542 0.0162257 0.00137551 0.0148058 0.0117014 0.0156387 0.0106602 0.0107622 0.00118282 0.0039648 0.00120001 0.0022964 0.00194089 0.00995299 0.00366831 0.0132831 0.00232253 0.00420482 0.00412678 0.0118901 0.0145177 0.00726758 0.000820963 0.000861132 0.000828553 0.000721447 0.000766158 0.000954453 0.000847375 0.00058306 0.000701336 0.000624876 0.000632568 0.000691278 0.00105043 0.00071217 0.000632623 0.000637201 0.000746295 0.000797328 0.00075123 0.000739062 0.000714938 0.000721001 0.000710422 0.00074525 0.0159415 0.016522 0.00134284 0.0102968 0.00782457 0.00488946 0.00269591 0.00842523 0.00239554 0.00205257 0.00369697 0.00129418 0.00302447 0.016075 0.00538688 0.00166198 0.0179455 0.00481584 0.0163852 0.00394423 0.00200318 0.0176723 0.00125396 0.000753113 0.0123527 0.0138443 0.000609842 0.0041523 0.0107882 0.00176529 0.00475095 0.0155191 0.0058763 0.012744 0.0150471 0.0116126 0.00169592 0.000949368 0.00209119 0.00192569 0.0156588 0.000984421 0.000706492 0.0106542 0.0140855 0.00763216 0.0046873 0.0011244 0.00682818 0.000920003 0.0105246 0.0155474 0.014708 0.00197943 0.0012415 0.00549486 0.00370009 0.000687759 0.00245736 0.000407391 0.0143872 0.00237646 0.00143033 0.00142812 0.00360432 0.00124539 0.0152596 0.001848 0.0151969 0.013029 0.00265928 0.00103724 0.0107401 0.0124742 0.019061 0.00187173 0.00127857 0.00341119 0.00255703 0.00168004 0.015394 0.00239075 0.00678424 0.0130598 0.00072052 0.0126856 0.00179166 0.00230134 0.00554377 0.00350083 0.00244658 0.00284369 0.00366564 0.00381909 0.0151096 0.00115262 0.00957516 0.00320191 0.00171395 0.00465709 0.00249892 0.00196611 0.000821447 0.0140849 0.0131741 0.0143564 0.00106434 0.0146407 0.0141344 0.00813991 0.00696978 0.00190716 0.000788795 0.000673718 0.00269778 0.0125604 0.0146165 0.000705293 0.00737503 0.00200422 0.0181212 0.0121851 0.00299803 0.00338142 0.00276099 0.0139631 0.00178344 0.00676994 0.00980379 0.0143443 0.00037343 0.0041251 0.000307822 0.0089361 0.0101528 0.00210772 0.0121064 0.0115023 0.0146205 0.00903907 0.00556201 0.0126546 0.00309198 0.00372136 0.000920225 0.0036275 0.00116195 0.0145665 0.0118381 0.00909403 0.0147018 0.0115821 0.0177528 0.000635194 0.000853585 0.0163386 0.00196727 0.0112299 0.00222553 0.0135491 0.0156285 0.00192534 0.000727337 0.0017854 0.00167946 0.00164146 0.00221282 0.00196014 0.00187048 0.00178287 0.00189008 0.000222287 0.000218881 0.000189015 0.000195538 0.000143503 0.000180912 0.0156396 0.00318145 0.0133239 0.00254539 0.00871474 0.00069568 0.00114284 0.0147483 0.00156647 0.00242484 0.0147798 0.00131876 0.00289962 0.0055285 0.000439141 0.0015591 0.00191955 0.00956874 0.0150065 0.00312394 0.0114196 0.00316642 0.00190038 0.0143749 0.0155406 0.00303127 0.0016234 0.00339071 0.0132303 0.0030495 0.00959503 0.0072263 0.0013236 0.00961242 0.000678783 0.00258443 0.00271197 0.000627489 0.00489411 0.00115926 0.000786287 0.00431021 0.00156491 0.00140461 0.014687 0.0105202 0.00185153 0.00458126 0.0115327 0.00352185 0.00134296 0.00605481 0.0105398 0.00529975 0.00792878 0.00351615 0.00114549 0.00493379 0.00708667 0.00115135 0.0136176 0.00374362 0.00372651 0.0111443 0.000653481 0.00264048 0.00269413 0.00152777 0.0095307 0.00711058 0.0155897 0.00734147 0.00188729 0.00936024 0.0173266 0.0022834 0.0110573 0.00160479 0.000821331 0.00158492 0.00113348 0.00300048 0.00123028 0.0136502 0.0157515 0.00185686 0.00565446 0.0146138 0.00413967 0.0122463 0.00237017 0.00374514 0.00631723 0.00336322 0.0124576 0.00110842 0.00428389 0.0063722 0.00533343 0.0119793 0.001401 0.000738075 0.00175876 0.00354267 0.00925508 0.0128676 0.00489344 0.0106492 0.00797892 0.00150752 0.0165975 0.00159438 0.00469423 0.00594782 0.00278953 0.00158777 0.0101889 0.00169774 0.00118925 0.00288038 0.0109599 0.00259913 0.0152661 0.0109162 0.00583914 0.00140821 0.00152076 0.000454469 0.0113707 0.00364883 0.0124663 0.00835393 0.0136397 0.015719 0.0147445 0.00187284 0.00164605 0.00210954 0.00158332 0.0107215 0.00184686 0.014378 0.0186738 0.00225558 0.00372801 0.0143509 0.0112124 0.0138477 0.00100502 0.00520684 0.0064367 0.0020636 0.00779548 0.0046589 0.00437367 0.006443 0.00209178 0.0115317 0.00368819 0.00211813 0.0124083 0.00720952 0.00859041 0.00588284 0.00793467 0.0116773 0.012492 0.0144379 0.00446077 0.00114627 0.00372476 0.00393974 0.00187272 0.0143068 0.00829465 0.0139181 0.0144674 0.00108595 0.00155621 0.00228475 0.0139149 0.00200326 0.00184177 0.0107621 0.0141747 0.0113548 0.00227449 0.0147509 0.0122009 0.0156101 0.006458 0.00342308 0.000720368 0.000634795 0.0014983 0.00288739 0.00216581 0.00240042 0.00322574 0.0155349 0.0148769 0.00123411 0.00570674 0.0134694 0.00380216 0.00227867 0.00290478 0.00179672 0.0139859 0.00926657 0.00105397 0.000929003 0.0182151 0.0102601 0.0123317 0.00144146 0.00224449 0.00392795 0.00457011 0.0105137 0.00101536 0.00245967 0.00241346 0.0175415 0.000259614 0.00772094 0.0130981 0.00465095 0.0037295 0.00698003 0.0116556 0.0128376 0.0019158 0.00302483 0.00126747 0.00657701 0.00165722 0.00185261 0.010686 0.00141287 0.00868902 0.00108966 0.0130927 0.000960368 0.000968981 0.000343773 0.0070192 0.00335235 0.00319445 0.00117694 0.0135751 0.0025218 0.0025076 0.00678004 0.0104629 0.00249414 0.00233198 0.00247537 0.00158958 0.00258089 0.0104448 0.0173619 0.00254031 0.0106989 0.00243871 0.00157107 0.00185728 0.00244783 0.00264116 0.00978178 0.00180506 0.00186703 0.00201086 0.00247567 0.0122239 0.0024361 0.000501313 0.00255975 0.00252596 0.00138041 0.00333097 0.00988113 0.00464135 0.00204262 0.00193514 0.00220029 0.00296203 0.000719656 0.000316231 0.0113783 0.00957823 0.00238495 0.00445142 0.00192408 0.00104779 0.000948037 0.00292485 0.00113735 0.00113056 0.00150252 0.0014021 0.00108557 0.0018044 0.0165622 0.00233617 0.00209804 0.0156935 0.00353703 0.0109358 0.0136827 0.00165459 0.00271369 0.00129719 0.000982874 0.00416064 0.0010919 0.00556232 0.0012546 0.00105669 0.000485449 0.00177332 0.000408368 0.00184785 0.000390943 0.00243426 0.00289313 0.00180664 0.0019031 0.000739102 0.00126318 0.000933647 0.00113934 0.00150114 0.000665038 0.000799963 0.00166927 0.00159525 0.000574503 0.000332257 0.00144153 0.00161226 0.00097659 0.000787611 ) ; boundaryField { frontAndBack { type empty; } wallOuter { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 96 ( 0.000105453 8.47549e-05 7.99333e-05 0.000195052 0.000197544 0.000194524 0.000106529 9.39466e-05 6.83926e-05 0.000166326 5.82475e-05 0.000140561 8.13189e-05 0.000204047 0.00015312 0.000181052 0.000192509 9.12091e-05 5.34154e-05 0.000119284 5.24196e-05 0.000130097 9.26629e-05 0.000193829 0.000185096 9.86751e-05 0.000102532 9.88361e-05 8.65357e-05 9.16929e-05 0.000113925 0.000100957 7.0423e-05 8.42803e-05 7.53473e-05 7.62837e-05 8.35519e-05 0.000124727 8.56036e-05 7.65172e-05 7.71073e-05 8.95785e-05 9.52374e-05 8.99368e-05 8.87638e-05 8.57411e-05 8.646e-05 8.54605e-05 8.92776e-05 9.01984e-05 0.000116513 8.50557e-05 8.26444e-05 5.08354e-05 0.000165849 8.64324e-05 0.00013609 9.4324e-05 8.12676e-05 8.49034e-05 0.000203538 4.65934e-05 3.84016e-05 0.000237403 0.000222812 0.000249569 0.000218431 8.72533e-05 0.000203755 0.000192545 0.000188515 0.00024826 0.000222055 0.000212676 0.000203476 0.000214726 2.54168e-05 2.63516e-05 2.18412e-05 2.19464e-05 1.4782e-05 2.02093e-05 8.37735e-05 5.47959e-05 7.5776e-05 7.88318e-05 0.000162724 5.66664e-05 0.000210206 0.000209677 8.64222e-05 7.67148e-05 3.23079e-05 0.000217367 0.000128615 4.28973e-05 ) ; } inlet { type calculated; value nonuniform 0(); } outlet { type calculated; value nonuniform List<scalar> 9(0.017659 0.0169383 0.00183959 0.0156507 0.0116868 0.00696978 0.00210772 0.00352185 0.0105398); } wallInner { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 126 ( 0.000201855 0.000119572 0.000170911 6.04909e-05 5.65935e-05 5.18724e-05 3.28478e-05 4.48201e-05 9.52391e-05 7.4827e-05 9.97176e-05 0.000145977 0.000397525 0.000137295 6.18878e-05 0.000102397 0.000172734 0.000117119 7.16843e-05 3.87647e-05 7.54881e-05 0.000125002 0.000196838 7.72279e-05 0.000141501 0.000148059 0.00016122 7.46852e-05 7.04237e-05 4.49523e-05 0.000152911 0.00018297 0.000272963 0.000146797 0.000284313 5.57806e-05 7.35775e-05 0.000155556 0.000128699 5.0212e-05 4.1984e-05 0.000172499 7.96098e-05 6.88739e-05 0.000118709 0.000124227 7.64083e-05 0.00030434 5.31783e-05 0.000153205 0.000175647 7.01208e-05 0.000223789 7.77048e-05 0.000117957 0.000173217 7.15238e-05 0.000209273 0.000170676 0.000123011 7.14574e-05 4.65915e-05 5.31222e-05 0.00015656 0.000119163 9.72727e-05 0.000135673 0.000151932 4.01705e-05 0.000210106 0.000152877 0.000128191 6.29419e-05 6.01328e-05 0.000147007 0.000136038 6.61291e-05 0.000198542 0.000187453 0.000182958 0.000156436 0.000187756 0.000137869 0.00018944 0.000160948 0.000186466 0.000195427 0.000126361 3.81478e-05 0.000188072 0.000171772 0.000194364 0.000160864 6.79154e-05 0.000139268 0.000219145 0.000107513 0.000214909 0.000114119 0.000115594 0.000151943 0.000115898 0.000128401 0.000147923 0.000121101 5.72566e-05 4.8236e-05 4.80223e-05 0.000270468 0.000318093 0.000205823 0.000216495 8.90901e-05 0.000111067 0.000133609 0.000173644 8.04033e-05 9.55426e-05 0.00019107 0.000182301 7.03469e-05 4.05723e-05 0.000167629 0.000185926 0.000115623 9.52693e-05 ) ; } procBoundary3to1 { type processor; value nonuniform List<scalar> 48 ( 0.0112735 0.00459712 0.00579667 0.00944536 0.00363861 0.00346038 0.00459712 0.0115219 0.0146536 0.00123504 0.00123504 0.00118742 0.00118742 0.00171431 0.00228576 0.00119396 0.00137158 0.00122609 0.00137158 0.00156847 0.00141465 0.00286287 0.00156847 0.00193043 0.00115896 0.00136545 0.0051544 0.00286287 0.00718182 0.00127548 0.00127548 0.00991321 0.00991321 0.0146536 0.00152409 0.00303367 0.0131426 0.00115896 0.0131509 0.00319242 0.00171431 0.0143794 0.0149297 0.00156847 0.00249056 0.00105588 0.00362841 0.00131633 ) ; } procBoundary3to2 { type processor; value nonuniform List<scalar> 29 ( 0.0018879 0.0018879 0.000454313 0.000505857 0.000671673 0.000604512 0.000413963 0.0016837 0.00258334 0.00210929 0.00113315 0.0012498 0.00106237 0.00180401 0.00139472 0.00145753 0.00192078 0.00244816 0.00208905 0.00179629 0.00162523 0.00192078 0.000238186 0.00244816 0.000903478 0.000965788 0.00244816 0.00224382 0.00224382 ) ; } } // ************************************************************************* //
[ "mohan.2611@gmail.com" ]
mohan.2611@gmail.com
c920249bb24d45df93f0535776be6cc3c0cd678a
b0add032985c446093c20b0f00b57452a1b215b5
/ReVA_AI/src/TP2/compute_histogram.cpp
f2d95e69dd6e3d0231dc25e10f1fa4c6b610f5be
[]
no_license
Alzahra/Tp_Analyse-Image
95efdc01515a38553b44b13bb6f5f1e5b1548d12
685a220dc0a6f1d5756d1f62bf09c9da47d1a0b1
refs/heads/master
2020-04-01T09:27:09.816450
2018-10-15T08:07:22
2018-10-15T08:07:22
153,075,527
0
0
null
null
null
null
UTF-8
C++
false
false
2,615
cpp
#include "compute_histogram.h" using namespace cv; using namespace std; /*contient les fonctions permettant - de calculer - d’afficher l’histogramme d’une image en niveaux de gris*/ //void Compute_Histogram::setImage(Mat prec) //{ // cout<<"setImage"<<endl; // image =prec; // // cout<<"fin setImage"<<endl; // //} Compute_Histogram::Compute_Histogram(Mat imagebase){ image = imagebase; } void Compute_Histogram::CalculHist() { /***HISTO IMAGE DE BASE****/ int nbpixel = image.rows * image.cols; indmax =0; //Initialisation for (int i = 0; i <255; ++i){ histogram[i] = 0; } // calculate the number of pixels for each intensity values for(int y = 0; y < image.rows; y++) for(int x = 0; x < image.cols; x++) histogram[(int)image.at<uchar>(y,x)]++; // find the maximum intensity element from histogram max = histogram[0]; for(int i = 0; i < 255; i++) if(max < histogram[i]){ max = histogram[i]; indmax = i; } //Frequence for(int i = 0; i<255;i++) histd[i] = histogram[i]*100./(double)nbpixel; //cout<<"indmax"<<indmax<<"histd[indmax] = "<<histd[indmax]<<endl; /******HISTO IMAGE ETENDUE*****/ //Pour l'expansion on cherche les bornes max = -1; int i = 255; while (max <0 && i>0){ if(histogram[i]) max = i; i--; } //cout<<"max"<<max<<endl; min = -1; i =0; while(min <0 && i<255){ if(histogram[i]) min = i; i++; } //cout<<"min"<<min<<endl; /* Calcul dans la classe image!expansion.cpp grâce aux bornes*/ /* Affichage de l'image reajuste */ } void Compute_Histogram::Affiche() { //bins = intervals int width = 512; int height = 100; int bin_w = 2; //cvRound((double) hist_w/256); Mat histImage(height, width, CV_8UC1, Scalar(255)); //Draw Histo de base for(int i = 0; i < 255; i++) line(histImage, Point(bin_w*i, height), Point(bin_w*i, height - histd[i]*100/histd[indmax]), Scalar(0)); //Affichage de l'image namedWindow("Display window"); /* Create a window for display */ imshow( "Display window", image ); /* Show our image inside it */ // display histogram de base namedWindow("Intensity Histogram", CV_WINDOW_AUTOSIZE); imshow("Intensity Histogram", histImage); } double Compute_Histogram::getMax(){ return max; } double Compute_Histogram::getMin(){ return min; }
[ "h13003041@l-024110a018-20.local" ]
h13003041@l-024110a018-20.local
01f2accbf3a5deff450bdeb0bdf4ab22da3db29e
44293e98bd059b47a9bb79ede3402c6ffa471416
/RemoveDuplicatesFromSortedList/RemoveDuplicatesFromSortedList.cpp
0761480141205558e3af0e22c6a3712c0bdb8d7b
[]
no_license
ishaofeng/LeetCode
17a30885286a2e93da53493bd07fc87c5cd505fb
eaf2e67343e3d913eb1a9b833e300b73baa407c6
refs/heads/master
2016-09-05T08:56:40.120656
2014-11-27T00:24:49
2014-11-27T00:24:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,795
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode *deleteDuplicates(ListNode *head) { if (head == NULL || head->next == NULL) { return head; } ListNode *node = head->next, *prev = head; while (node != NULL) { if (node->val == prev->val) { prev->next = node->next; delete node; node = prev->next; } else { prev = node; node = node->next; } } return head; } ListNode *reverseList(ListNode *head) { if (head == NULL || head->next == NULL) { return head; } ListNode *next = NULL, *node = NULL; node = head->next; head->next = NULL; while (node) { next = node->next; node->next = head; head = node; node = next; } return head; } void print(ListNode *head) { if ( head != NULL) { cout << head->val << " "; print(head->next); } else { cout << endl; } } }; int main() { int val[] = {5, 5, 4, 4, 3, 2, 1, 1}; int len = sizeof(val) / sizeof(val[0]); ListNode head(0), *newnode; for (int i = 0; i < len; ++i) { newnode = new ListNode(val[i]); newnode->next = head.next; head.next = newnode; } Solution s; ListNode *h = s.deleteDuplicates(head.next); s.print(h); return 0; }
[ "ishaofeng@foxmail.com" ]
ishaofeng@foxmail.com
90183ab7690fab869dab6725eff6cf1b7c40b14b
64e4fabf9b43b6b02b14b9df7e1751732b30ad38
/src/chromium/services/network/public/cpp/url_request_mojom_traits.h
f71832d291c6f053af02c93848dab294b0bb1f96
[ "BSD-3-Clause" ]
permissive
ivan-kits/skia-opengl-emscripten
8a5ee0eab0214c84df3cd7eef37c8ba54acb045e
79573e1ee794061bdcfd88cacdb75243eff5f6f0
refs/heads/master
2023-02-03T16:39:20.556706
2020-12-25T14:00:49
2020-12-25T14:00:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,895
h
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_NETWORK_PUBLIC_CPP_URL_REQUEST_MOJOM_TRAITS_H_ #define SERVICES_NETWORK_PUBLIC_CPP_URL_REQUEST_MOJOM_TRAITS_H_ #include <string> #include <utility> #include "base/component_export.h" #include "base/memory/scoped_refptr.h" #include "mojo/public/cpp/base/file_mojom_traits.h" #include "mojo/public/cpp/base/file_path_mojom_traits.h" #include "mojo/public/cpp/base/time_mojom_traits.h" #include "mojo/public/cpp/bindings/enum_traits.h" #include "mojo/public/cpp/bindings/struct_traits.h" #include "net/base/request_priority.h" #include "services/network/public/cpp/data_element.h" #include "services/network/public/cpp/resource_request.h" #include "services/network/public/cpp/resource_request_body.h" #include "services/network/public/mojom/chunked_data_pipe_getter.mojom-shared.h" #include "services/network/public/mojom/data_pipe_getter.mojom.h" #include "services/network/public/mojom/url_loader.mojom-shared.h" namespace mojo { template <> struct COMPONENT_EXPORT(NETWORK_CPP_BASE) EnumTraits<network::mojom::RequestPriority, net::RequestPriority> { static network::mojom::RequestPriority ToMojom(net::RequestPriority priority); static bool FromMojom(network::mojom::RequestPriority in, net::RequestPriority* out); }; template <> struct COMPONENT_EXPORT(NETWORK_CPP_BASE) EnumTraits<network::mojom::URLRequestReferrerPolicy, net::URLRequest::ReferrerPolicy> { static network::mojom::URLRequestReferrerPolicy ToMojom( net::URLRequest::ReferrerPolicy policy); static bool FromMojom(network::mojom::URLRequestReferrerPolicy in, net::URLRequest::ReferrerPolicy* out); }; template <> struct COMPONENT_EXPORT(NETWORK_CPP_BASE) StructTraits<network::mojom::URLRequestDataView, network::ResourceRequest> { static const std::string& method(const network::ResourceRequest& request) { return request.method; } static const GURL& url(const network::ResourceRequest& request) { return request.url; } static const GURL& site_for_cookies(const network::ResourceRequest& request) { return request.site_for_cookies; } static const base::Optional<url::Origin>& top_frame_origin( const network::ResourceRequest& request) { return request.top_frame_origin; } static bool attach_same_site_cookies( const network::ResourceRequest& request) { return request.attach_same_site_cookies; } static bool update_first_party_url_on_redirect( const network::ResourceRequest& request) { return request.update_first_party_url_on_redirect; } static const base::Optional<url::Origin>& request_initiator( const network::ResourceRequest& request) { return request.request_initiator; } static const GURL& referrer(const network::ResourceRequest& request) { return request.referrer; } static net::URLRequest::ReferrerPolicy referrer_policy( const network::ResourceRequest& request) { return request.referrer_policy; } static bool is_prerendering(const network::ResourceRequest& request) { return request.is_prerendering; } static const net::HttpRequestHeaders& headers( const network::ResourceRequest& request) { return request.headers; } static const net::HttpRequestHeaders& cors_exempt_headers( const network::ResourceRequest& request) { return request.cors_exempt_headers; } static int32_t load_flags(const network::ResourceRequest& request) { return request.load_flags; } static bool allow_credentials(const network::ResourceRequest& request) { return request.allow_credentials; } static int32_t plugin_child_id(const network::ResourceRequest& request) { return request.plugin_child_id; } static int32_t resource_type(const network::ResourceRequest& request) { return request.resource_type; } static net::RequestPriority priority( const network::ResourceRequest& request) { return request.priority; } static int32_t appcache_host_id(const network::ResourceRequest& request) { return request.appcache_host_id; } static bool should_reset_appcache(const network::ResourceRequest& request) { return request.should_reset_appcache; } static bool is_external_request(const network::ResourceRequest& request) { return request.is_external_request; } static network::mojom::CorsPreflightPolicy cors_preflight_policy( const network::ResourceRequest& request) { return request.cors_preflight_policy; } static bool originated_from_service_worker( const network::ResourceRequest& request) { return request.originated_from_service_worker; } static bool skip_service_worker(const network::ResourceRequest& request) { return request.skip_service_worker; } static bool corb_detachable(const network::ResourceRequest& request) { return request.corb_detachable; } static bool corb_excluded(const network::ResourceRequest& request) { return request.corb_excluded; } static network::mojom::FetchRequestMode fetch_request_mode( const network::ResourceRequest& request) { return request.fetch_request_mode; } static network::mojom::FetchCredentialsMode fetch_credentials_mode( const network::ResourceRequest& request) { return request.fetch_credentials_mode; } static network::mojom::FetchRedirectMode fetch_redirect_mode( const network::ResourceRequest& request) { return request.fetch_redirect_mode; } static const std::string& fetch_integrity( const network::ResourceRequest& request) { return request.fetch_integrity; } static int32_t fetch_request_context_type( const network::ResourceRequest& request) { return request.fetch_request_context_type; } static const scoped_refptr<network::ResourceRequestBody>& request_body( const network::ResourceRequest& request) { return request.request_body; } static bool keepalive(const network::ResourceRequest& request) { return request.keepalive; } static bool has_user_gesture(const network::ResourceRequest& request) { return request.has_user_gesture; } static bool enable_load_timing(const network::ResourceRequest& request) { return request.enable_load_timing; } static bool enable_upload_progress(const network::ResourceRequest& request) { return request.enable_upload_progress; } static bool do_not_prompt_for_login(const network::ResourceRequest& request) { return request.do_not_prompt_for_login; } static int32_t render_frame_id(const network::ResourceRequest& request) { return request.render_frame_id; } static bool is_main_frame(const network::ResourceRequest& request) { return request.is_main_frame; } static int32_t transition_type(const network::ResourceRequest& request) { return request.transition_type; } static bool allow_download(const network::ResourceRequest& request) { return request.allow_download; } static bool report_raw_headers(const network::ResourceRequest& request) { return request.report_raw_headers; } static int32_t previews_state(const network::ResourceRequest& request) { return request.previews_state; } static bool initiated_in_secure_context( const network::ResourceRequest& request) { return request.initiated_in_secure_context; } static bool upgrade_if_insecure(const network::ResourceRequest& request) { return request.upgrade_if_insecure; } static bool is_revalidating(const network::ResourceRequest& request) { return request.is_revalidating; } static const base::Optional<base::UnguessableToken>& throttling_profile_id( const network::ResourceRequest& request) { return request.throttling_profile_id; } static const net::HttpRequestHeaders& custom_proxy_pre_cache_headers( const network::ResourceRequest& request) { return request.custom_proxy_pre_cache_headers; } static const net::HttpRequestHeaders& custom_proxy_post_cache_headers( const network::ResourceRequest& request) { return request.custom_proxy_post_cache_headers; } static bool custom_proxy_use_alternate_proxy_list( const network::ResourceRequest& request) { return request.custom_proxy_use_alternate_proxy_list; } static const base::Optional<base::UnguessableToken>& fetch_window_id( const network::ResourceRequest& request) { return request.fetch_window_id; } static const base::Optional<std::string>& devtools_request_id( const network::ResourceRequest& request) { return request.devtools_request_id; } static bool Read(network::mojom::URLRequestDataView data, network::ResourceRequest* out); }; template <> struct COMPONENT_EXPORT(NETWORK_CPP_BASE) StructTraits<network::mojom::URLRequestBodyDataView, scoped_refptr<network::ResourceRequestBody>> { static bool IsNull(const scoped_refptr<network::ResourceRequestBody>& r) { return !r; } static void SetToNull(scoped_refptr<network::ResourceRequestBody>* output) { output->reset(); } static const std::vector<network::DataElement>& elements( const scoped_refptr<network::ResourceRequestBody>& r) { return *r->elements(); } static uint64_t identifier( const scoped_refptr<network::ResourceRequestBody>& r) { return r->identifier_; } static bool contains_sensitive_info( const scoped_refptr<network::ResourceRequestBody>& r) { return r->contains_sensitive_info_; } static bool Read(network::mojom::URLRequestBodyDataView data, scoped_refptr<network::ResourceRequestBody>* out); }; template <> struct COMPONENT_EXPORT(NETWORK_CPP_BASE) StructTraits<network::mojom::DataElementDataView, network::DataElement> { static const network::mojom::DataElementType& type( const network::DataElement& element) { return element.type_; } static base::span<const uint8_t> buf(const network::DataElement& element) { if (element.bytes_) { return base::make_span(reinterpret_cast<const uint8_t*>(element.bytes_), element.length_); } return base::make_span( reinterpret_cast<const uint8_t*>(element.buf_.data()), element.buf_.size()); } static const base::FilePath& path(const network::DataElement& element) { return element.path_; } static base::File file(const network::DataElement& element) { return std::move(const_cast<network::DataElement&>(element).file_); } static const std::string& blob_uuid(const network::DataElement& element) { return element.blob_uuid_; } static network::mojom::DataPipeGetterPtrInfo data_pipe_getter( const network::DataElement& element) { if (element.type_ != network::mojom::DataElementType::kDataPipe) return nullptr; return element.CloneDataPipeGetter().PassInterface(); } static network::mojom::ChunkedDataPipeGetterPtrInfo chunked_data_pipe_getter( const network::DataElement& element) { if (element.type_ != network::mojom::DataElementType::kChunkedDataPipe) return nullptr; return const_cast<network::DataElement&>(element) .ReleaseChunkedDataPipeGetter(); } static uint64_t offset(const network::DataElement& element) { return element.offset_; } static uint64_t length(const network::DataElement& element) { return element.length_; } static const base::Time& expected_modification_time( const network::DataElement& element) { return element.expected_modification_time_; } static bool Read(network::mojom::DataElementDataView data, network::DataElement* out); }; } // namespace mojo #endif // SERVICES_NETWORK_PUBLIC_CPP_URL_REQUEST_MOJOM_TRAITS_H_
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
acf10a90d2d5eadc89d7448b9b57324f7beac592
81d46ffe3d0489af96ef47e9ad253073ccfc0751
/juce_patches/src/patches.cpp
bb688ee8a9c1be10af61573286c615011cff0339
[]
no_license
jzrake/patches
fdadee9468fe1f843026db8d5c231cf5938f37df
73110e5a797e816b2b3d79d1990b2bf4b50c5374
refs/heads/master
2020-04-10T11:02:53.075157
2019-02-05T21:54:30
2019-02-05T21:54:30
160,982,366
1
0
null
null
null
null
UTF-8
C++
false
false
13,629
cpp
#include <ostream> #include <vector> #include <map> #include "patches.hpp" using namespace patches2d; // ============================================================================ std::string patches2d::to_string(MeshLocation location) { switch (location) { case MeshLocation::vert: return "vert"; case MeshLocation::cell: return "cell"; case MeshLocation::face_i: return "face_i"; case MeshLocation::face_j: return "face_j"; } } std::string patches2d::to_string(Field field) { switch (field) { case Field::cell_volume: return "cell_volume"; case Field::cell_coords: return "cell_coords"; case Field::vert_coords: return "vert_coords"; case Field::face_area_i: return "face_area_i"; case Field::face_area_j: return "face_area_j"; case Field::face_velocity_i: return "face_velocity_i"; case Field::face_velocity_j: return "face_velocity_j"; case Field::conserved: return "conserved"; case Field::primitive: return "primitive"; } } std::string patches2d::to_string(Database::Index index) { return to_string(index, to_string(std::get<3>(index))); } std::string patches2d::to_string(Database::Index index, std::string field_name) { auto i = std::get<0>(index); auto j = std::get<1>(index); auto p = std::get<2>(index); return std::to_string(p) + "." + std::to_string(i) + "-" + std::to_string(j) + "/" + field_name; } MeshLocation patches2d::parse_location(std::string str) { if (str == "vert") return MeshLocation::vert; if (str == "cell") return MeshLocation::cell; if (str == "face_i") return MeshLocation::face_i; if (str == "face_j") return MeshLocation::face_j; throw std::invalid_argument("unknown location: " + str); } Field patches2d::parse_field(std::string str) { if (str == "cell_volume") return Field::cell_volume; if (str == "cell_coords") return Field::cell_coords; if (str == "vert_coords") return Field::vert_coords; if (str == "face_area_i") return Field::face_area_i; if (str == "face_area_j") return Field::face_area_j; if (str == "face_velocity_i") return Field::face_velocity_i; if (str == "face_velocity_j") return Field::face_velocity_j; if (str == "conserved") return Field::conserved; if (str == "primitive") return Field::primitive; throw std::invalid_argument("unknown field: " + str); } Database::Index patches2d::parse_index(std::string str) { auto dot = str.find('.'); auto dash = str.find('-'); auto slash = str.find('/'); int level = std::stoi(str.substr(0, dot)); int i = std::stoi(str.substr(dot + 1, dash)); int j = std::stoi(str.substr(dash + 1, slash)); auto field = parse_field(str.substr(slash + 1)); return std::make_tuple(i, j, level, field); } // ============================================================================ FieldDescriptor::FieldDescriptor(int num_fields, MeshLocation location) : num_fields(num_fields) , location(location) { } // ============================================================================ Database::Database(int ni, int nj, Header header) : ni(ni) , nj(nj) , header(header) { } void Database::set_boundary_value(BoundaryValue b) { boundary_value = b; } void Database::insert(Index index, Array data) { patches[index].become(check_shape(data, index).copy()); } auto Database::erase(Index index) { return patches.erase(index); } void Database::clear() { patches.clear(); } void Database::commit(Index index, Array data, double rk_factor) { auto target = patches.at(index); if (rk_factor == 0.0) { target = data; } else { target = data * (1 - rk_factor) + target * rk_factor; } } Database::Array Database::fetch(Index index, int guard) const { return fetch(index, guard, guard, guard, guard); } Database::Array Database::fetch(Index index, int ngil, int ngir, int ngjl, int ngjr) const { if (location(index) != MeshLocation::cell) { throw std::invalid_argument("can only fetch cell data (for now)"); } auto _ = nd::axis::all(); auto mi = ni + ngil + ngir; auto mj = nj + ngjl + ngjr; auto shape = std::array<int, 3>{mi, mj, num_fields(index)}; auto res = nd::array<double, 3>(shape); auto i = std::get<0>(index); auto j = std::get<1>(index); auto p = std::get<2>(index); auto f = std::get<3>(index); auto Ri = std::make_tuple(i + 1, j, p, f); auto Li = std::make_tuple(i - 1, j, p, f); auto Rj = std::make_tuple(i, j + 1, p, f); auto Lj = std::make_tuple(i, j - 1, p, f); res.select(_|ngil|ni+ngil, _|ngjl|nj+ngjl, _) = patches.at(index); // i-left boundary // ======================================================================== if (ngil > 0) { auto neighbor = locate(Li); auto bv = neighbor.empty() ? boundary_value(index, PatchBoundary::il, ngil, patches.at(index)) : neighbor.select(_|ni-ngil|ni, _, _); res.select(_|0|ngil, _|ngjl|nj+ngjl, _) = bv; } // i-right boundary // ======================================================================== if (ngir > 0) { auto neighbor = locate(Ri); auto bv = neighbor.empty() ? boundary_value(index, PatchBoundary::ir, ngir, patches.at(index)) : neighbor.select(_|0|ngir, _, _); res.select(_|mi-ngir|mi, _|ngjl|nj+ngjl, _) = bv; } // j-left boundary // ======================================================================== if (ngjl > 0) { auto neighbor = locate(Lj); auto bv = neighbor.empty() ? boundary_value(index, PatchBoundary::jl, ngjl, patches.at(index)) : neighbor.select(_, _|nj-ngjl|nj, _); res.select(_|ngil|ni+ngil, _|0|ngjl, _) = bv; } // j-right boundary // ======================================================================== if (ngjr > 0) { auto neighbor = locate(Rj); auto bv = neighbor.empty() ? boundary_value(index, PatchBoundary::jr, ngjr, patches.at(index)) : neighbor.select(_, _|0|ngjr, _); res.select(_|ngil|ni+ngil, _|mj-ngjr|mj, _) = bv; } return res; } Database::Array Database::assemble(int i0, int i1, int j0, int j1, int level, Field field) const { auto _ = nd::axis::all(); int mi = 0, mj = 0; switch (header.at(field).location) { case MeshLocation::cell : mi = (i1 - i0) * ni + 0; mj = (j1 - j0) * nj + 0; break; case MeshLocation::vert : mi = (i1 - i0) * ni + 1; mj = (j1 - j0) * nj + 1; break; case MeshLocation::face_i: mi = (i1 - i0) * ni + 1; mj = (j1 - j0) * nj + 0; break; case MeshLocation::face_j: mi = (i1 - i0) * ni + 0; mj = (j1 - j0) * nj + 1; break; } auto res = Array(mi, mj, header.at(field).num_fields); for (int i = i0; i < i1; ++i) { for (int j = j0; j < j1; ++j) { int di = 0, dj = 0; switch (header.at(field).location) { case MeshLocation::cell : di = (i == i1 - 1) * 0; dj = (j == j1 - 1) * 0; break; case MeshLocation::vert : di = (i == i1 - 1) * 1; dj = (j == j1 - 1) * 1; break; case MeshLocation::face_i: di = (i == i1 - 1) * 1; dj = (j == j1 - 1) * 0; break; case MeshLocation::face_j: di = (i == i1 - 1) * 0; dj = (j == j1 - 1) * 1; break; } const auto& patch = patches.at(std::make_tuple(i, j, level, field)); res.select(_|i*ni|(i+1)*ni+di, _|j*nj|(j+1)*nj+dj, _) = patch.select(_|0|ni+di, _|0|nj+dj, _); } } return res; } const Database::Array& Database::at(Index index) const { return patches.at(index); } const Database::Array& Database::at(Index index, Field which) const { std::get<3>(index) = which; return patches.at(index); } std::map<Database::Index, Database::Array> Database::all(Field which) const { auto res = std::map<Index, Array>(); for (const auto& patch : patches) { if (std::get<3>(patch.first) == which) { res.insert(patch); } } return res; } std::size_t Database::count(Field which) const { std::size_t n = 0; for (const auto& patch : patches) { if (std::get<3>(patch.first) == which) { ++n; } } return n; } std::size_t Database::num_cells(Field which) const { return count(which) * ni * nj; } void Database::print(std::ostream& os) const { os << std::string(52, '=') << "\n"; os << "Database:\n\n"; os << "block size: " << ni << " " << nj << "\n"; os << "mesh patches:\n\n"; for (const auto& patch : patches) { os << "\t" << to_string(patch.first) << "\n"; } os << "\n"; } void Database::dump(const Serializer& ser) const { ser.write_header(header); ser.write_block_size({ni, nj}); for (const auto& patch : patches) { ser.write_array(to_string(patch.first), patch.second); } } Database Database::load(const Serializer& ser, std::set<Field> fields, std::function<bool()> bailout) { auto header = ser.read_header(); auto blocks = ser.read_block_size(); auto database = Database(blocks[0], blocks[1], header); for (auto patch : ser.list_patches()) { for (auto field : ser.list_fields(patch)) { if (fields.empty() || fields.count(parse_field (field))) { auto ind = patch + "/" + field; database.insert(parse_index(ind), ser.read_array(ind)); if (bailout && bailout()) { return database; } } } } return database; } // ======================================================================== int Database::num_fields(Index index) const { return header.at(std::get<3>(index)).num_fields; } MeshLocation Database::location(Index index) const { return header.at(std::get<3>(index)).location; } Database::Array Database::check_shape(Array& array, Index index) const { if (array.shape() != expected_shape(index)) { throw std::invalid_argument("input patch data has the wrong shape"); } return array; } Database::Index Database::coarsen(Index index) const { std::get<0>(index) /= 2; std::get<1>(index) /= 2; std::get<2>(index) -= 1; return index; } std::array<Database::Index, 4> Database::refine(Index index) const { auto i = std::get<0>(index); auto j = std::get<1>(index); auto p = std::get<2>(index); auto f = std::get<3>(index); return { std::make_tuple(i * 2 + 0, j * 2 + 0, p + 1, f), std::make_tuple(i * 2 + 0, j * 2 + 1, p + 1, f), std::make_tuple(i * 2 + 1, j * 2 + 0, p + 1, f), std::make_tuple(i * 2 + 1, j * 2 + 1, p + 1, f), }; } std::array<int, 3> Database::expected_shape(Index index) const { switch (location(index)) { case MeshLocation::cell: return {ni + 0, nj + 0, num_fields(index)}; case MeshLocation::vert: return {ni + 1, nj + 1, num_fields(index)}; case MeshLocation::face_i: return {ni + 1, nj + 0, num_fields(index)}; case MeshLocation::face_j: return {ni + 0, nj + 1, num_fields(index)}; } throw; } nd::array<double, 3> Database::locate(Index index) const { if (patches.count(index)) { return patches.at(index); } if (patches.count(coarsen(index))) { auto i = std::get<0>(index); auto j = std::get<1>(index); return prolongation(quadrant(patches.at(coarsen(index)), i % 2, j % 2)); } if (contains_all(refine(index))) { return restriction(tile(refine(index))); } return nd::array<double, 3>(); } nd::array<double, 3> Database::quadrant(const nd::array<double, 3>& A, int I, int J) const { auto _ = nd::axis::all(); if (I == 0 && J == 0) return A.select(_|0 |ni/2, _|0 |nj/2, _); if (I == 0 && J == 1) return A.select(_|0 |ni/2, _|nj/2|nj, _); if (I == 1 && J == 0) return A.select(_|ni/2|ni, _|0 |nj/2, _); if (I == 1 && J == 1) return A.select(_|ni/2|ni, _|nj/2|nj, _); throw std::invalid_argument("quadrant: I and J must be 0 or 1"); } nd::array<double, 3> Database::tile(std::array<Index, 4> indexes) const { auto _ = nd::axis::all(); nd::array<double, 3> res(ni * 2, nj * 2, num_fields(indexes[0])); res.select(_|0 |ni*1, _|0 |nj*1, _) = patches.at(indexes[0]); res.select(_|0 |ni*1, _|nj|nj*2, _) = patches.at(indexes[1]); res.select(_|ni|ni*2, _|0 |nj*1, _) = patches.at(indexes[2]); res.select(_|ni|ni*2, _|nj|nj*2, _) = patches.at(indexes[3]); return res; } nd::array<double, 3> Database::prolongation(const nd::array<double, 3>& A) const { auto _ = nd::axis::all(); nd::array<double, 3> res(ni, nj, A.shape(2)); res.select(_|0|ni|2, _|0|nj|2, _) = A; res.select(_|0|ni|2, _|1|nj|2, _) = A; res.select(_|1|ni|2, _|0|nj|2, _) = A; res.select(_|1|ni|2, _|1|nj|2, _) = A; return res; } nd::array<double, 3> Database::restriction(const nd::array<double, 3>& A) const { auto _ = nd::axis::all(); auto mi = A.shape(0); auto mj = A.shape(1); auto B = std::array<nd::array<double, 3>, 4> { A.select(_|0|mi|2, _|0|mj|2, _), A.select(_|0|mi|2, _|1|mj|2, _), A.select(_|1|mi|2, _|0|mj|2, _), A.select(_|1|mi|2, _|1|mj|2, _), }; return (B[0] + B[1] + B[2] + B[3]) * 0.25; }
[ "jonathan.zrake@gmail.com" ]
jonathan.zrake@gmail.com
29f88198b52d9f7b5310bf9f398ea8fcf0e4c9ca
1198a3d2e58feb180bfc7f17919e3db34cf2d78d
/src/Audio/AudioPlayer.cpp
8acbfaa4959c376e67ab92e87d2a2b6c38d60a06
[]
no_license
RyanSwann1/SFML-CPP-Platformer
0e3e8daae27df8e432eec8b52b4c8f4f7582f09b
a1e6d53bf404d6a03c825a2ca15a932a44958396
refs/heads/master
2020-06-22T07:13:40.457556
2016-12-01T14:45:30
2016-12-01T14:45:30
74,751,319
1
0
null
null
null
null
UTF-8
C++
false
false
3,628
cpp
#include "Audio\AudioPlayer.h" #include "Managers\AudioManager.h" #include "SharedContext.h" #include <iostream> #include <fstream> #include <sstream> #include <algorithm> AudioPlayer::AudioPlayer(const SharedContext& sharedContext) : m_sharedContext(sharedContext), m_currentAudioClips(nullptr) {} AudioPlayer::~AudioPlayer() {} void AudioPlayer::registerOwner(const std::string & ownerID) { m_currentOwner = ownerID; auto cIter = m_owners.find(ownerID); if (cIter != m_owners.cend()) { m_currentAudioClips = &cIter->second; } else { std::cerr << "\nOwner not found.\n"; } } void AudioPlayer::registerAudioClip(const std::string& audioOwner, const std::string & audioClipName) { AudioManager& audioManager = *m_sharedContext.m_audioManager; sf::Sound* const audioClip = new sf::Sound; auto owner = m_owners.find(audioOwner); if (owner != m_owners.cend()) { owner->second.emplace_back(new AudioClip(audioManager, audioOwner, audioClipName, *audioClip)); } else { m_owners.emplace(audioOwner, std::vector<AudioClip*>{new AudioClip(audioManager, audioOwner, audioClipName, *audioClip)}); } } void AudioPlayer::removeAudioClip(const std::string & audioOwner, const std::string & audioClipName) { auto iter = m_owners.find(audioOwner); if (iter != m_owners.cend()) { auto audioClip = std::find_if(iter->second.begin(), iter->second.end(), [audioClipName](AudioClip* audioClip) {return audioClip->m_name == audioClipName; }); if (audioClip != iter->second.end()) { iter->second.erase(audioClip); return; } } } void AudioPlayer::removeOwner(const std::string & audioOwner) { AudioManager& audioManager = *m_sharedContext.m_audioManager; auto iter = m_owners.find(audioOwner); if (iter != m_owners.cend()) { m_owners.erase(iter); } } void AudioPlayer::play(const std::string & audioClipName, const bool& loop) { sf::Sound* const audioClip = findAudioClip(audioClipName); if (audioClip) { audioClip->play(); audioClip->setLoop(loop); } } void AudioPlayer::stop(const std::string & audioClipName) { sf::Sound* const audioClip = findAudioClip(audioClipName); if (audioClip) { audioClip->stop(); } } sf::Sound* AudioPlayer::findAudioClip(const std::string & audioClipName) const { if (m_currentAudioClips) { auto cIter = std::find_if(m_currentAudioClips->cbegin(), m_currentAudioClips->cend(), [audioClipName](AudioClip* audioClip) {return audioClip->m_name == audioClipName; }); if (cIter != m_currentAudioClips->cend()) { return (*cIter)->m_audioClip; } } auto owner = m_owners.find(m_currentOwner); if (owner != m_owners.cend()) { auto audioClips = owner->second; auto cIter = std::find_if(audioClips.cbegin(), audioClips.cend(), [audioClipName](AudioClip* audioClip) {return audioClip->m_name == audioClipName; }); if (cIter != audioClips.cend()) { return (*cIter)->m_audioClip; }/* for (auto audioClip = audioClips.begin(); audioClip != audioClips.end(); ++audioClip) { if ((*audioClip)->m_name == audioClipName) { return (*audioClip)->m_audioClip; } }*/ } //not found return nullptr; } void AudioPlayer::loadInAudioClips(const std::string & fileName) { std::ifstream file; file.open(fileName); if (!file.is_open()) { std::cerr << "Couldn't open file: " << fileName << "\n"; return; } std::string line; while (std::getline(file, line)) { std::stringstream keyStream(line); std::string owner; std::string audioClipName; } file.close(); }
[ "noreply@github.com" ]
RyanSwann1.noreply@github.com
802530f7f5b85133af1f469ecaff91adfe7b1fb1
1e31ca8eded98e4ec4de4d732710b9b5bdcd531a
/week_5_ParticleDraw/src/Particle.h
6d372bb0bf34ffa1d62750eb5e3b1fc81634a9c7
[]
no_license
josephrmoore/moore_algo2013
6ac4c8c48faeccd7d76edb5ca1005ab77cb38ce6
493e713c7f8ccc236188386ee2b1783dc5440955
refs/heads/master
2021-01-23T16:35:57.861000
2013-12-13T23:09:06
2013-12-13T23:09:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
548
h
// // Particle.h // SingleParticle // // Created by Charlie Whitney on 9/23/13. // // #pragma once #include "ofMain.h" class Particle { public: Particle(); void update(); void draw(float radius, ofColor color); void setParams( float px, float py, float vx, float vy ); void addForce( ofVec2f force ); void addDampingForce(); void resetForces(); ofVec2f pos; ofVec2f vel; ofVec2f frc; ofVec2f damping; // could also be a ofVec2f ofVideoPlayer img; ofColor color; };
[ "josephrmoore@gmail.com" ]
josephrmoore@gmail.com
a94483da4c546adcb7b01e8aa2f0fa28b0526803
83705af196092b503a108cdaf4c622f436a3a853
/Data Structure/ar_insert_deletion.cpp
171985395c379264429faa71bbcc3fff4c306db9
[]
no_license
Born0/Academic-Code-Practice-AIUB-
01a806e83bd305f05befcafdc2023e53d30e8e75
8cab3d71c8704f7626c51a53dc94bf44171a4faa
refs/heads/master
2023-02-14T23:19:23.450973
2021-01-02T07:36:41
2021-01-02T07:36:41
304,325,657
0
0
null
null
null
null
UTF-8
C++
false
false
1,246
cpp
#include <iostream> void insert(int arr[],int count,int newPosition,int newValue){ int i; for (i=count-1; i>=newPosition; i--) { arr[i+1]=arr[i]; } arr[newPosition]=newValue; count++; std::cout << "After insert" << '\n'; for ( i = 0; i < count; i++) { std::cout<< arr[i]<<'\n'; } } void deleteAny(int arr[],int count,int delPosition, int newValue){ int i; for ( i = delPosition; i < count; i++) { arr[i]=arr[i+1]; } std::cout << "After insert" << '\n'; for ( i = 0; i < count; i++) { std::cout<< arr[i]<<'\n'; } } int main() { int arr[10] , count; std::cout<<"Enter Array size:"; std::cin>>count; std::cout << "Enter elements:" << '\n'; for (size_t i = 0; i < count; i++) { std::cin >> arr[i]; } std::cout << "Entered Array" << '\n'; for (size_t i = 0; i < count; i++) { std::cout<< arr[i]<<'\n'; } std::cout << "Enter the newPosition of new element:" << '\n'; int newPosition; std::cin >> newPosition; std::cout << "Enter new value:" << '\n'; int newValue; std::cin >> newValue; insert(arr, count,newPosition, newValue); std::cout << "Enter delete delete Position" << '\n'; int delPosition; std::cin >> delPosition; deleteAny(arr, count,delPosition, newValue); }
[ "40140598+Born0@users.noreply.github.com" ]
40140598+Born0@users.noreply.github.com
267ce17161a1c152af3e592f455728a66819364f
006f035d65012b7c5af15d54716407a276a096a8
/dependencies/include/cgal/CGAL/Number_types/internal_functions_comparison_root_of_2.h
22f61afe64910ddce4cb07959b0011aa697e1c5f
[]
no_license
rosecodym/space-boundary-tool
4ce5b67fd96ec9b66f45aca60e0e69f4f8936e93
300db4084cd19b092bdf2e8432da065daeaa7c55
refs/heads/master
2020-12-24T06:51:32.828579
2016-08-12T16:13:51
2016-08-12T16:13:51
65,566,229
7
0
null
null
null
null
UTF-8
C++
false
false
6,371
h
// Copyright (c) 2005,2006 INRIA Sophia-Antipolis (France) // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/releases/CGAL-4.1-branch/Number_types/include/CGAL/Number_types/internal_functions_comparison_root_of_2.h $ // $Id: internal_functions_comparison_root_of_2.h 67093 2012-01-13 11:22:39Z lrineau $ // // // Author(s) : Sylvain Pion, Monique Teillaud, Athanasios Kakargias // Olivier Devillers #ifndef CGAL_NUMBER_TypeS_ROOT_OF_COMPARISON_FUNCTIONS_22_H #define CGAL_NUMBER_TypeS_ROOT_OF_COMPARISON_FUNCTIONS_22_H #include <CGAL/enum.h> #include <CGAL/kernel_assertions.h> namespace CGAL { namespace internal { // Maybe we can trash this /*1 1*/template <class FT> /*1 1*/Comparison_result compare_11_11( const FT& A1, const FT& B1, const FT& A2, const FT& B2 ) { // Compares roots of (A1 X + B1) and (A2 X + B2). CGAL_precondition( A1 > 0 & A2 > 0 ); return CGAL_NTS compare(B2*A1, B1*A2); } /*2 1*/template <class FT> /*1 1*/Comparison_result compare_21_11(const FT& A2, const FT& B2, const FT& C2, const FT& A1, const FT& B1 ) { // Compares roots of (A1 X + B1) and the smaller of (A2 X^2 + B2 X + C2). CGAL_precondition(A2 > 0); // First, we compare the root of P1 to the root of the derivative of P2. int cmp = compare_11_11<FT>(A1, B1, A2*2, B2); if (cmp > 0) return LARGER; // If it doesn't work, we evaluate the sign of P2 at the root of P1. FT p2 = B1 * (A1*B2 - A2*B1) - C2 * CGAL_NTS square(A1); return CGAL_NTS sign(p2); } /*2 2*/template <class FT> /*2 1*/Comparison_result compare_22_21( const FT& A1p, const FT& B1p, const FT& C1p, const FT& A2p, const FT& B2p, const FT& C2p ) { // Compares the larger root of (A1 X^2 + B1 X + C1) // to the smaller root of (A2 X^2 + B2 X + C2) // It boils down to the code from the DFMT paper // by multiplying A* and C* by 2, and B* by -1. CGAL_precondition(A1p > 0 & A2p > 0); FT A1 = 2 * A1p; FT C1 = 2 * C1p; FT B1 = -B1p; FT A2 = 2 * A2p; FT C2 = 2 * C2p; FT B2 = -B2p; // Now compares the larger root of (A1 X^2 -2B1 X + C1) // to the smaller root of (A2 X^2 -2B2 X + C2) FT J = calcJ(A1,B1,A2,B2); if ( J < 0 ) return LARGER; // r1 > l2 FT K = calcK(A1,B1,C1,A2,B2,C2); if ( K < 0 ) return LARGER; // r1 > l2 FT Jp = calcJp(B1,C1,B2,C2); if ( Jp < 0 ) return SMALLER; // r1 < l2 FT P4 = calcP4(J,Jp,A1,C1,A2,C2); return - CGAL_NTS sign(P4); // if ( P4< FT(0) ) return LARGER; // r1 > l2 // if ( P4> FT(0) ) return SMALLER; // r1 < l2 // return EQUAL; } /*2 2*/template <class FT> inline /*1 2*/Comparison_result compare_22_12( const FT& A1, const FT& B1, const FT& C1, const FT& A2, const FT& B2, const FT& C2 ) { // _22_12 boils down to _22_21 by : // - swapping the two polynomials // - changing the sign of the result return - compare_22_21(A2, B2, C2, A1, B1, C1); } /*2 2*/template <class FT> /*1 1*/Comparison_result compare_22_11( const FT& A1p, const FT& B1p, const FT& C1p, const FT& A2p, const FT& B2p, const FT& C2p ) { // Compares the smaller root of (A1 X^2 + B1 X + C1) // to the smaller root of (A2 X^2 + B2 X + C2) // It boils down to the code from the DFMT paper // by multiplying A* and C* by 2, and B* by -1. CGAL_precondition(A1p > 0 & A2p > 0); FT A1 = 2 * A1p; FT C1 = 2 * C1p; FT B1 = -B1p; FT A2 = 2 * A2p; FT C2 = 2 * C2p; FT B2 = -B2p; // Compares the smaller root of (A1 X^2 -2B1 X + C1) // to the smaller root of (A2 X^2 -2B2 X + C2) FT J = calcJ(A1,B1,A2,B2); FT K = calcK(A1,B1,C1,A2,B2,C2); if (J > 0) { if (K > 0) return SMALLER; // l1 < l2 FT I1= calcI(A1,B1,C1); FT I2= calcI(A2,B2,C2); FT D = calcD(A1,I1,A2,I2); if (D > 0) return SMALLER; // l1 < l2 FT Jp = calcJp(B1,C1,B2,C2); if (Jp < 0) return LARGER; // l1 > l2 FT P4 = calcP4(I1,I2,K); return CGAL_NTS sign(P4); } // J <= 0 if (K > 0) return LARGER; // l1 > l2 FT I1= calcI(A1,B1,C1); FT I2= calcI(A2,B2,C2); FT D = calcD(A1,I1,A2,I2); if (D < 0) return LARGER; // l1 > l2 FT Jp = calcJp(B1,C1,B2,C2); if (Jp > 0) return SMALLER; // l1 < l2 FT P4 = calcP4(I1,I2,K); return - CGAL_NTS sign(P4); } /*2 2*/template <class FT> inline /*2 2*/Comparison_result compare_22_22( const FT& A1, const FT& B1, const FT& C1, const FT& A2, const FT& B2, const FT& C2 ) { // _22_22 boils down to _22_11 by : // - changing the sign of the two roots (X <-> -X in the polynomial) // - swapping the two polynomials return compare_22_11<FT>(A2, -B2, C2, A1, -B1, C1); } template <class FT> inline FT calcI(const FT& A, const FT& B, const FT& C) { return CGAL_NTS square(B)-A*C; } template <class FT> inline FT calcJ(const FT& A1, const FT& B1, const FT& A2, const FT& B2) { return A1*B2-A2*B1; } template <class FT> inline FT calcK(const FT& A1, const FT& B1, const FT& C1, const FT& A2, const FT& B2, const FT& C2) { return C1*A2+A1*C2-2*B1*B2; } template <class FT> inline FT calcJp(const FT& B1, const FT& C1, const FT& B2, const FT& C2) { return B1*C2-C1*B2; } template <class FT> inline FT calcP4(const FT& J, const FT& Jp, const FT& A1, const FT& C1, const FT& A2, const FT& C2) { return CGAL_NTS square(A1*C2-C1*A2)-4*J*Jp;} template <class FT> inline FT calcP4(const FT& I1, const FT& I2, const FT& K) { return CGAL_NTS square(K)-4*I1*I2;} template <class FT> inline FT calcD(const FT& A1, const FT& I1, const FT& A2, const FT& I2) { return I1*CGAL_NTS square(A2) - I2*CGAL_NTS square(A1);} } // namespace internal } // namespace CGAL #endif // CGAL_NUMBER_TypeS_ROOT_OF_COMPARISON_FUNCTIONS_22_H
[ "cmrose@lbl.gov" ]
cmrose@lbl.gov
81f0d57dffdeaa504556534ff705d68822defb12
14252979305feced12474a6ce9cc7b805777b6a4
/CMSSW_9_2_13/src/DataFormats/L1Trigger/interface/BxBlock.h
62a59306dd0ef784e225da5061c6651f01f7228e
[]
no_license
meshoaib/BtaggedJets_Efficiency
ac18305af6440caef26c479ea2f968fe926a69c2
f004fc3e97eb84b38b5fd7a8ad13693d2a8b1d89
refs/heads/master
2021-05-05T04:20:54.016096
2018-01-24T08:22:49
2018-01-24T08:22:49
118,557,382
0
0
null
null
null
null
UTF-8
C++
false
false
3,230
h
#ifndef DataFormats_L1Trigger_BxBlock_h #define DataFormats_L1Trigger_BxBlock_h #include <memory> #include <vector> #include <cmath> namespace l1t { class BxBlockHeader { public: BxBlockHeader() : id_(0), totalBx_(0), flags_(0) {}; BxBlockHeader(unsigned int id, unsigned int totalBx, unsigned int flags=0) : id_(id), totalBx_(totalBx), flags_(flags) {}; // Create a BX header: everything is contained in the raw uint32 BxBlockHeader(const uint32_t raw) : id_(((raw >> id_shift) & id_mask) / n_words) , totalBx_(((raw >> totalBx_shift) & totalBx_mask) / n_words) , flags_((raw >> flags_shift) & flags_mask) {}; bool operator<(const BxBlockHeader& o) const { return getBx() < o.getBx(); }; inline int getBx() const { return (int)id_ - (int)std::floor(totalBx_/2.); }; inline unsigned int getId() const { return id_; }; inline unsigned int getTotalBx() const { return totalBx_; }; inline unsigned int getFlags() const { return flags_; }; inline uint32_t raw() const { return (((id_ & id_mask) << id_shift) * n_words) | (((totalBx_ & totalBx_mask) << totalBx_shift) * n_words) | ((flags_ & flags_mask) << flags_shift); }; private: static const unsigned int n_words = 6; // every link transmits 6 32 bit words per bx static const unsigned int id_shift = 24; static const unsigned int id_mask = 0xff; static const unsigned int totalBx_shift = 16; static const unsigned int totalBx_mask = 0xff; static const unsigned int flags_shift = 0; static const unsigned int flags_mask = 0xffff; unsigned int id_; unsigned int totalBx_; unsigned int flags_; }; class BxBlock { public: BxBlock(std::vector<uint32_t>::const_iterator bx_start, std::vector<uint32_t>::const_iterator bx_end) : header_(*bx_start), payload_(bx_start+1, bx_end) {}; BxBlock(const BxBlockHeader& h, std::vector<uint32_t>::const_iterator payload_start, std::vector<uint32_t>::const_iterator payload_end) : header_(h), payload_(payload_start, payload_end) {}; BxBlock(unsigned int id, unsigned int totalBx, std::vector<uint32_t>::const_iterator payload_start, std::vector<uint32_t>::const_iterator payload_end, unsigned int flags=0) : header_(id, totalBx, flags), payload_(payload_start, payload_end) {}; BxBlock(unsigned int id, unsigned int totalBx, const std::vector<uint32_t>& payload, unsigned int flags=0) : header_(id, totalBx, flags), payload_(payload) {}; ~BxBlock() {}; bool operator<(const BxBlock& o) const { return header() < o.header(); }; inline unsigned int getSize() const { return payload_.size(); }; BxBlockHeader header() const { return header_; }; std::vector<uint32_t> payload() const { return payload_; }; private: BxBlockHeader header_; std::vector<uint32_t> payload_; }; typedef std::vector<BxBlock> BxBlocks; } #endif
[ "Muhammad.Shoaib@cern.ch" ]
Muhammad.Shoaib@cern.ch
8b8d818bd9ed4f80e62ae6ed2cbb2a4cfea70eb2
d732c881b57ef5e3c8f8d105b2f2e09b86bcc3fe
/src/module-ml/VType_Conv2d.cpp
46671d36358badfeb93c31ea014748f302836d62
[]
no_license
gura-lang/gurax
9180861394848fd0be1f8e60322b65a92c4c604d
d9fedbc6e10f38af62c53c1bb8a4734118d14ce4
refs/heads/master
2023-09-01T09:15:36.548730
2023-09-01T08:49:33
2023-09-01T08:49:33
160,017,455
10
0
null
null
null
null
UTF-8
C++
false
false
8,385
cpp
//============================================================================== // VType_Conv2d.cpp //============================================================================== #include "stdafx.h" Gurax_BeginModuleScope(ml) //------------------------------------------------------------------------------ // Help //------------------------------------------------------------------------------ static const char* g_docHelp_en = u8R"""( # Overview # Predefined Variable ${help.ComposePropertyHelp(ml.Conv2d, `en)} # Operator # Cast Operation ${help.ComposeConstructorHelp(ml.Conv2d, `en)} ${help.ComposeMethodHelp(ml.Conv2d, `en)} )"""; //------------------------------------------------------------------------------ // Implementation of constructor //------------------------------------------------------------------------------ // ml.Conv2d(nFilters as Number, nRowsFilter as Number, nColsFilter as Number, stride? as Number, padding? as Number) {block?} Gurax_DeclareConstructor(Conv2d) { Declare(VTYPE_Conv2d, Flag::None); DeclareArg("nFilters", VTYPE_Number, ArgOccur::Once, ArgFlag::None); DeclareArg("nRowsFilter", VTYPE_Number, ArgOccur::Once, ArgFlag::None); DeclareArg("nColsFilter", VTYPE_Number, ArgOccur::Once, ArgFlag::None); DeclareArg("stride", VTYPE_Number, ArgOccur::ZeroOrOnce, ArgFlag::None); DeclareArg("padding", VTYPE_Number, ArgOccur::ZeroOrOnce, ArgFlag::None); DeclareBlock(BlkOccur::ZeroOrOnce); AddHelp(Gurax_Symbol(en), u8R"""( Creates a `ml.Conv2d` instance. )"""); } Gurax_ImplementConstructor(Conv2d) { // Arguments ArgPicker args(argument); size_t nFilters = args.PickNumberPos<size_t>(); size_t nRowsFilter = args.PickNumberPos<size_t>(); size_t nColsFilter = args.PickNumberPos<size_t>(); size_t stride = args.IsValid()? args.PickNumberPos<size_t>() : 1; size_t padding = args.IsValid()? args.PickNumberNonNeg<size_t>() : 0; if (Error::IsIssued()) return Value::nil(); // Function body RefPtr<Conv2d> pConv2d(new Conv2d(nFilters, nRowsFilter, nColsFilter, stride, padding)); return argument.ReturnValue(processor, new Value_Conv2d(pConv2d.release())); } //----------------------------------------------------------------------------- // Implementation of class method //----------------------------------------------------------------------------- // Conv2d.Preset(filter as Array, bias? as Array, stride? as Number, padding? as Number) {block?} Gurax_DeclareClassMethod(Conv2d, Preset) { Declare(VTYPE_Number, Flag::None); DeclareArg("filter", VTYPE_Array, ArgOccur::Once, ArgFlag::None); DeclareArg("bias", VTYPE_Array, ArgOccur::ZeroOrOnce, ArgFlag::None); DeclareArg("stride", VTYPE_Number, ArgOccur::ZeroOrOnce, ArgFlag::None); DeclareArg("padding", VTYPE_Number, ArgOccur::ZeroOrOnce, ArgFlag::None); DeclareBlock(BlkOccur::ZeroOrOnce); AddHelp(Gurax_Symbol(en), u8R"""( )"""); } Gurax_ImplementClassMethod(Conv2d, Preset) { // Arguments ArgPicker args(argument); const Array& arrayFilter = args.Pick<Value_Array>().GetArray(); RefPtr<Array> pArrayBias(args.IsValid()? args.Pick<Value_Array>().GetArray().Reference() : Array::none()); size_t stride = args.IsValid()? args.PickNumberPos<size_t>() : 1; size_t padding = args.IsValid()? args.PickNumberNonNeg<size_t>() : 0; if (Error::IsIssued()) return Value::nil(); if (arrayFilter.GetDimSizes().size() != 4) { Error::Issue(ErrorType::SizeError, "filter must be an Array of four dimensions"); return Value::nil(); } if (!pArrayBias->IsNone() && pArrayBias->GetDimSizes().size() != 3) { Error::Issue(ErrorType::SizeError, "bias must be an Array of three dimensions"); return Value::nil(); } // Function body RefPtr<Conv2d> pConv2d(new Conv2d(arrayFilter.Reference(), pArrayBias.release(), stride, padding)); return argument.ReturnValue(processor, new Value_Conv2d(pConv2d.release())); } //----------------------------------------------------------------------------- // Implementation of property //----------------------------------------------------------------------------- // ml.Conv2d#nFilters Gurax_DeclareProperty_R(Conv2d, nFilters) { Declare(VTYPE_Number, Flag::None); } Gurax_ImplementPropertyGetter(Conv2d, nFilters) { auto& valueThis = GetValueThis(valueTarget); return new Value_Number(valueThis.GetConv2d().GetNFilters()); } // ml.Conv2d#nRowsFilter Gurax_DeclareProperty_R(Conv2d, nRowsFilter) { Declare(VTYPE_Number, Flag::None); } Gurax_ImplementPropertyGetter(Conv2d, nRowsFilter) { auto& valueThis = GetValueThis(valueTarget); return new Value_Number(valueThis.GetConv2d().GetNRowsFilter()); } // ml.Conv2d#nColsFilter Gurax_DeclareProperty_R(Conv2d, nColsFilter) { Declare(VTYPE_Number, Flag::None); } Gurax_ImplementPropertyGetter(Conv2d, nColsFilter) { auto& valueThis = GetValueThis(valueTarget); return new Value_Number(valueThis.GetConv2d().GetNColsFilter()); } // ml.Conv2d#stride Gurax_DeclareProperty_R(Conv2d, stride) { Declare(VTYPE_Number, Flag::None); } Gurax_ImplementPropertyGetter(Conv2d, stride) { auto& valueThis = GetValueThis(valueTarget); return new Value_Number(valueThis.GetConv2d().GetStride()); } // ml.Conv2d#padding Gurax_DeclareProperty_R(Conv2d, padding) { Declare(VTYPE_Number, Flag::None); } Gurax_ImplementPropertyGetter(Conv2d, padding) { auto& valueThis = GetValueThis(valueTarget); return new Value_Number(valueThis.GetConv2d().GetPadding()); } // ml.Conv2d#filter Gurax_DeclareProperty_R(Conv2d, filter) { Declare(VTYPE_Array, Flag::None); AddHelp(Gurax_Symbol(en), u8R"""( Skeleton. )"""); } Gurax_ImplementPropertyGetter(Conv2d, filter) { Conv2d& conv2d = GetValueThis(valueTarget).GetConv2d(); return conv2d.HasArrayFilter()? conv2d.GetArrayFilter().ToValue() : Value::nil(); } // ml.Conv2d#filterGrad Gurax_DeclareProperty_R(Conv2d, filterGrad) { Declare(VTYPE_Array, Flag::None); AddHelp(Gurax_Symbol(en), u8R"""( Skeleton. )"""); } Gurax_ImplementPropertyGetter(Conv2d, filterGrad) { Conv2d& conv2d = GetValueThis(valueTarget).GetConv2d(); return conv2d.HasArrayFilterGrad()? conv2d.GetArrayFilterGrad().ToValue() : Value::nil(); } // ml.Conv2d#bias Gurax_DeclareProperty_R(Conv2d, bias) { Declare(VTYPE_Array, Flag::None); AddHelp(Gurax_Symbol(en), u8R"""( Skeleton. )"""); } Gurax_ImplementPropertyGetter(Conv2d, bias) { Conv2d& conv2d = GetValueThis(valueTarget).GetConv2d(); return conv2d.HasArrayBias()? conv2d.GetArrayBias().ToValue() : Value::nil(); } // ml.Conv2d#biasGrad Gurax_DeclareProperty_R(Conv2d, biasGrad) { Declare(VTYPE_Array, Flag::None); AddHelp(Gurax_Symbol(en), u8R"""( Skeleton. )"""); } Gurax_ImplementPropertyGetter(Conv2d, biasGrad) { Conv2d& conv2d = GetValueThis(valueTarget).GetConv2d(); return conv2d.HasArrayBiasGrad()? conv2d.GetArrayBiasGrad().ToValue() : Value::nil(); } //------------------------------------------------------------------------------ // VType_Conv2d //------------------------------------------------------------------------------ VType_Conv2d VTYPE_Conv2d("Conv2d"); void VType_Conv2d::DoPrepare(Frame& frameOuter) { // Add help AddHelp(Gurax_Symbol(en), g_docHelp_en); // Declaration of VType Declare(VTYPE_Gear, Flag::Immutable, Gurax_CreateConstructor(Conv2d)); // Assignment of class method Assign(Gurax_CreateClassMethod(Conv2d, Preset)); // Assignment of property Assign(Gurax_CreateProperty(Conv2d, nFilters)); Assign(Gurax_CreateProperty(Conv2d, nRowsFilter)); Assign(Gurax_CreateProperty(Conv2d, nColsFilter)); Assign(Gurax_CreateProperty(Conv2d, stride)); Assign(Gurax_CreateProperty(Conv2d, padding)); Assign(Gurax_CreateProperty(Conv2d, filter)); Assign(Gurax_CreateProperty(Conv2d, filterGrad)); Assign(Gurax_CreateProperty(Conv2d, bias)); Assign(Gurax_CreateProperty(Conv2d, biasGrad)); } //------------------------------------------------------------------------------c // Value_Conv2d //------------------------------------------------------------------------------ VType& Value_Conv2d::vtype = VTYPE_Conv2d; String Value_Conv2d::ToString(const StringStyle& ss) const { return ToStringGeneric(ss, GetConv2d().ToString(ss)); } bool Value_Conv2d::DoSerialize(Stream& stream) const { return GetConv2d().Serialize(stream); } Value* VType_Conv2d::DoDeserialize(Stream& stream) const { RefPtr<Conv2d> pConv2d(Conv2d::Deserialize(stream)); return pConv2d? new Value_Conv2d(pConv2d.release()) : nullptr; } Gurax_EndModuleScope(ml)
[ "ypsitau@nifty.com" ]
ypsitau@nifty.com
7ac89d5649de43aa3b7d2d337b93a0925c83c6e2
2bdc300448862f0703cea9b26e314524b5e3f526
/youme_voice_engine/thirdparties/common/src/Ne10/modules/math/NE10_len.cpp
6f449b5c6e70af6cec946211064c49cfe941f1c1
[ "BSD-3-Clause" ]
permissive
gavinlwz/AVSDK2
217f233539071ccb241a8178dc502026fa52475b
848a087191e21ecd5e918f3e5334847fbf7bfd7d
refs/heads/master
2022-12-28T03:55:22.995809
2020-10-12T09:57:38
2020-10-12T09:57:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,765
cpp
/* * Copyright 2011-15 ARM Limited and Contributors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of ARM Limited 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 ARM LIMITED 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 ARM LIMITED AND 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. */ /* * NE10 Library : math/NE10_len.c */ #include "NE10_types.h" #include "macros.h" #include <assert.h> #include <math.h> namespace youme { ne10_result_t ne10_len_vec2f_c (ne10_float32_t * dst, ne10_vec2f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y) ; ); } ne10_result_t ne10_len_vec3f_c (ne10_float32_t * dst, ne10_vec3f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y + src[ itr ].z * src[ itr ].z); ); } ne10_result_t ne10_len_vec4f_c (ne10_float32_t * dst, ne10_vec4f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y + src[ itr ].z * src[ itr ].z + src[ itr ].w * src[ itr ].w); ); } } // namespace youme
[ "shuhuan_bruce@icloud.com" ]
shuhuan_bruce@icloud.com
008ccdcb6c8d208bae99ccf9c45bbe976eaa0a4f
2a73874f9cc48c9e2d907f89f187f7d320774dbc
/examples/arkode/CXX_serial/ark_advection_diffusion_reaction.cpp
746f7bdd9f4fcdd4e702590550fedc207240f944
[ "BSD-3-Clause" ]
permissive
opencor/sundials
234413604669ea6cc2c26d9aa4c3aaa8e725e368
2e08eee5347c0b030b55ea71e5db1c44f17dc3b9
refs/heads/master
2023-09-02T07:26:02.608451
2022-11-02T03:15:50
2022-11-02T03:15:50
91,432,417
3
0
null
null
null
null
UTF-8
C++
false
false
49,713
cpp
/* ----------------------------------------------------------------------------- * Programmer(s): David J. Gardner @ LLNL * ----------------------------------------------------------------------------- * SUNDIALS Copyright Start * Copyright (c) 2002-2022, Lawrence Livermore National Security * and Southern Methodist University. * All rights reserved. * * See the top-level LICENSE and NOTICE files for details. * * SPDX-License-Identifier: BSD-3-Clause * SUNDIALS Copyright End * ----------------------------------------------------------------------------- * This example simulates the 1D advection-diffusion-reaction equation, * * u_t = -c u_x + d u_xx + A - (w + 1) * u + v * u^2 * v_t = -c v_x + d u_xx + w * u - v * u^2 * w_t = -c w_x + d w_xx + (B - w) / eps - w * u * * where u, v, and w represent the concentrations of chemical species, c = 0.001 * is the advection speed, d = 0.01 is the diffusion rate, and the species with * constant concentration over time are A = 0.6 and B = 2.0. * * The problem is evolved for t in [0, 3] and x in [0, 1], with initial * conditions given by * * u(0,x) = A + 0.1 * sin(pi * x) * v(0,x) = B/A + 0.1 * sin(pi * x) * w(0,x) = B + 0.1 * sin(pi * x) * * and stationary boundary conditions i.e., * * u_t(t,0) = u_t(t,1) = 0, * v_t(t,0) = v_t(t,1) = 0, * w_t(t,0) = w_t(t,1) = 0. * * The system is advanced in time using one of the following approaches based on * the --integrator <int> flag value. The following options are available: * * 0. An explicit Runge-Kutta method with ERKStep. * * 1. An explicit, diagonally implicit, or IMEX Runge-Kutta method with * ARKStep. The method used depends on the value of the --splitting <int> * flag (denoted by IDX in the tables below). * * Advection-Diffusion-Reaction splittings * * | IDX | A | D | R | Description | * +-----+---+---+---+-------------------------------------------------+ * | 0 | E | E | E | fully explicit | * | 1 | E | E | I | implicit reaction, explicit advection-diffusion | * | 2 | E | I | E | implicit diffusion, explicit advection-reaction | * | 3 | E | I | I | implicit diffusion-reaction, explicit advection | * | 4 | I | E | E | implicit advection, explicit diffusion-reaction | * | 5 | I | E | I | implicit advection-reaction, explicit diffusion | * | 6 | I | I | E | implicit advection-diffusion, explicit reaction | * | 7 | I | I | I | fully implicit | * +-----+---+---+---+-------------------------------------------------+ * * Advection-Reaction splittings (use the --no-diffusion flag) * * | IDX | A | R | Description | * +-----+---+---+---------------------------------------+ * | 0 | E | E | fully explicit | * | 1 | E | I | implicit reaction, explicit advection | * | 2 | I | E | implicit advection, explicit reaction | * | 3 | I | I | fully implicit | * +-----+---+---+---------------------------------------+ * * Diffusion-Reaction splittings (use the --no-advection flag) * * | IDX | D | R | Description | * +-----+---+---+---------------------------------------+ * | 0 | E | E | fully explicit | * | 1 | E | I | explicit diffusion, implicit reaction | * | 2 | I | E | explicit reaction, implicit diffusion | * | 3 | I | I | fully implicit | * +-----+---+---+---------------------------------------+ * * 2. An explicit, implicit-solve-decoupled, or IMEX-solve-decoupled MRI-GARK * method with MRIStep. Advection is treated explicitly at the slow time * scale, diffusion implicitly at the slow time scale, and the reaction * terms are integrated using an explicit or implicit method from ARKStep * at the fast time scale depending on the value of the --splitting <int> * flag (denoted by IDX in the tables below). * * Advection-Diffusion-Reaction splittings * * | IDX | A | D | R | Description | * +-----+-----+-----+-----+----------------------------------------------+ * | 0 | S-E | S-I | F-E | Slow-explicit advection, | * | | | | | Slow-Implicit diffusion, | * | | | | | Fast-explicit reaction | * | 1 | S-E | S-I | F-I | Slow-explicit advection, | * | | | | | Slow-Implicit diffusion, | * | | | | | Fast-Implicit reaction | * +-----+-----+-----+-----+----------------------------------------------+ * * Advection-Reaction splittings (use the --no-diffusion flag) * * | IDX | A | R | Description | * +-----+-----+-----+-------------------------------------------------+ * | 0 | S-E | F-E | Slow-explicit advection, Fast-explicit reaction | * | 1 | S-E | F-I | Slow-explicit advection, Fast-Implicit reaction | * +-----+-----+-----+-------------------------------------------------+ * * Diffusion-Reaction splittings (use the --no-advection flag) * * | IDX | D | R | Description | * +-----+-----+-----+-------------------------------------------------+ * | 0 | S-I | F-E | Slow-implicit diffusion, Fast-explicit reaction | * | 1 | S-I | F-I | Slow-implicit diffusion, Fast-Implicit reaction | * +-----+-----+-----+-------------------------------------------------+ * * 3. An explicit, implicit-solve-decoupled, or IMEX-solve-decoupled MRI-GARK * method with MRIStep. Advection is treated explicitly at the slow time * scale, diffusion implicitly at the slow time scale, and the reaction * terms are integrated implicitly using a custom inner stepper wrapping * CVODE, * * Advection-Diffusion-Reaction splitting * * | A | D | R | Description | * +-----+-----+-----+----------------------------------------------+ * | S-E | S-I | F-I | Slow-explicit advection, | * | | | | Slow-Implicit diffusion, | * | | | | Fast-Implicit reaction | * +-----+-----+-----+----------------------------------------------+ * * Advection-Reaction splitting (use the --no-diffusion flag) * * | A | R | Description | * +-----+-----+-------------------------------------------------+ * | S-E | F-I | Slow-explicit advection, Fast-Implicit reaction | * +-----+-----+-------------------------------------------------+ * * Diffusion-Reaction splitting (use the --no-advection flag) * * | D | R | Description | * +-----+-----+-------------------------------------------------+ * | S-I | F-I | Slow-implicit diffusion, Fast-Implicit reaction | * +-----+-----+-------------------------------------------------+ * * Several command line options are available to change the problem parameters * and integrator settings. Use the flag --help for more information. * ---------------------------------------------------------------------------*/ #include "ark_advection_diffusion_reaction.hpp" int main(int argc, char* argv[]) { // SUNDIALS context object for this simulation sundials::Context ctx; // ----------------- // Setup the problem // ----------------- UserData udata; UserOptions uopts; vector<string> args(argv + 1, argv + argc); int flag = ReadInputs(args, udata, uopts, ctx); if (check_flag(flag, "ReadInputs")) return 1; flag = PrintSetup(udata, uopts); if (check_flag(flag, "PrintSetup")) return 1; // Create state vector and set initial condition N_Vector y = N_VNew_Serial(udata.neq, ctx); if (check_ptr(y, "N_VNew_Serial")) return 1; flag = SetIC(y, udata); if (check_flag(flag, "SetIC")) return 1; // -------------------- // Setup the integrator // -------------------- // ERKStep, ARKStep, or MRIStep memory structure void* arkode_mem = nullptr; // Matrix and linear solver for DIRK, IMEX, or MRI slow integrators SUNMatrix A = nullptr; SUNLinearSolver LS = nullptr; // Matrix and linear solver for MRI fast integrator SUNMatrix A_fast = nullptr; SUNLinearSolver LS_fast = nullptr; // Fast integrator for MRIStep MRIStepInnerStepper fast_mem = nullptr; // Create integrator switch(uopts.integrator) { case(0): flag = SetupERK(ctx, udata, uopts, y, &arkode_mem); break; case(1): flag = SetupARK(ctx, udata, uopts, y, &A, &LS, &arkode_mem); break; case(2): flag = SetupMRIARK(ctx, udata, uopts, y, &A, &LS, &A_fast, &LS_fast, &fast_mem, &arkode_mem); break; case(3): flag = SetupMRICVODE(ctx, udata, uopts, y, &A, &LS, &A_fast, &LS_fast, &fast_mem, &arkode_mem); break; default: flag = -1; } if (check_flag(flag, "Integrator setup")) return 1; // ---------------------- // Evolve problem in time // ---------------------- // Initial time, time between outputs, output time realtype t = ZERO; realtype dTout = udata.tf / uopts.nout; realtype tout = dTout; // Inital output flag = OpenOutput(udata, uopts); if (check_flag(flag, "OpenOutput")) return 1; flag = WriteOutput(t, y, udata, uopts); if (check_flag(flag, "WriteOutput")) return 1; // Loop over output times for (int iout = 0; iout < uopts.nout; iout++) { // Evolve switch(uopts.integrator) { case(0): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = ERKStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "ARKStepSetStopTime")) return 1; } // Advance in time flag = ERKStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(1): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = ARKStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "ARKStepSetStopTime")) return 1; } // Advance in time flag = ARKStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(2): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = MRIStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "MRIStepSetStopTime")) return 1; } // Advance in time flag = MRIStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(3): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = MRIStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "MRIStepSetStopTime")) return 1; } // Advance in time flag = MRIStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; default: flag = -1; } if (check_flag(flag, "Evolve")) break; // Output solution flag = WriteOutput(t, y, udata, uopts); if (check_flag(flag, "WriteOutput")) return 1; // Update output time tout += dTout; tout = (tout > udata.tf) ? udata.tf : tout; } // Close output flag = CloseOutput(uopts); if (check_flag(flag, "CloseOutput")) return 1; // ------------ // Output stats // ------------ if (uopts.output) { cout << "Final integrator statistics:" << endl; switch(uopts.integrator) { case(0): flag = OutputStatsERK(arkode_mem, udata); break; case(1): flag = OutputStatsARK(arkode_mem, udata); break; case(2): flag = OutputStatsMRIARK(arkode_mem, fast_mem, udata); break; case(3): flag = OutputStatsMRICVODE(arkode_mem, fast_mem, udata); break; default: flag = -1; } if (check_flag(flag, "OutputStats")) return 1; } // -------- // Clean up // -------- switch(uopts.integrator) { case(0): ERKStepFree(&arkode_mem); break; case(1): ARKStepFree(&arkode_mem); break; case(2): { void* inner_arkode_mem = nullptr; MRIStepInnerStepper_GetContent(fast_mem, &inner_arkode_mem); ARKStepFree(&inner_arkode_mem); MRIStepInnerStepper_Free(&fast_mem); MRIStepFree(&arkode_mem); break; } case(3): { void* inner_content = nullptr; MRIStepInnerStepper_GetContent(fast_mem, &inner_content); CVodeInnerStepperContent* content = (CVodeInnerStepperContent *) inner_content; CVodeFree(&(content->cvode_mem)); delete content; MRIStepInnerStepper_Free(&fast_mem); MRIStepFree(&arkode_mem); break; } } N_VDestroy(y); SUNMatDestroy(A); SUNLinSolFree(LS); SUNMatDestroy(A_fast); SUNLinSolFree(LS_fast); return 0; } // ----------------------------------------------------------------------------- // Setup the integrator // ----------------------------------------------------------------------------- int SetupERK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, void** arkode_mem) { // Problem configuration ARKRhsFn f_RHS; // explicit RHS function if (udata.diffusion && udata.advection) { // Explicit -- advection-diffusion-reaction f_RHS = f_adv_diff_react; } else if (!udata.diffusion && udata.advection) { // Explicit -- advection-reaction f_RHS = f_adv_react; } else if (udata.diffusion && !udata.advection) { // Explicit -- diffusion-reaction f_RHS = f_diff_react; } else { cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Create ERKStep memory *arkode_mem = ERKStepCreate(f_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ERKStepCreate")) return 1; // Specify tolerances int flag = ERKStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "ERKStepSStolerances")) return 1; // Attach user data flag = ERKStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "ERKStepSetUserData")) return 1; // Select method order flag = ERKStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "ERKStepSetOrder")) return 1; // Set fixed step size or adaptivity method if (uopts.fixed_h > ZERO) { flag = ERKStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "ERKStepSetFixedStep")) return 1; } else if (uopts.controller >= 0) { flag = ERKStepSetAdaptivityMethod(*arkode_mem, uopts.controller, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ERKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ERKStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "ERKStepSetMaxNumSteps")) return 1; // Set stopping time flag = ERKStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "ERKStepSetStopTime")) return 1; return 0; } int SetupARK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, void** arkode_mem) { // Problem configuration ARKRhsFn fe_RHS; // explicit RHS function ARKRhsFn fi_RHS; // implicit RHS function ARKLsJacFn Ji_RHS; // Jacobian of implicit RHS function // advection-diffusion-reaction if (udata.diffusion && udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_adv_diff_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit advection-diffusion, implicit reaction fe_RHS = f_adv_diff; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit advection-reaction, implicit diffusion fe_RHS = f_adv_react; fi_RHS = f_diffusion; Ji_RHS = J_diffusion; break; case(3): // IMEX -- explicit advection, implicit diffusion-reaction fe_RHS = f_advection; fi_RHS = f_diff_react; Ji_RHS = J_diff_react; break; case(4): // IMEX -- explicit diffusion-reaction, implicit advection fe_RHS = f_diff_react; fi_RHS = f_advection; Ji_RHS = J_advection; break; case(5): // IMEX -- explicit diffusion, implicit advection-reaction fe_RHS = f_diffusion; fi_RHS = f_adv_react; Ji_RHS = J_adv_react; break; case(6): // IMEX -- explicit reaction, implicit advection-diffusion fe_RHS = f_reaction; fi_RHS = f_adv_diff; Ji_RHS = J_adv_diff; break; case(7): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_adv_diff_react; Ji_RHS = J_adv_diff_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } // advection-reaction else if (!udata.diffusion && udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_adv_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit advection, implicit reaction fe_RHS = f_advection; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit reaction, implicit advection fe_RHS = f_reaction; fi_RHS = f_advection; Ji_RHS = J_advection; break; case(3): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_adv_react; Ji_RHS = J_adv_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } // diffusion-reaction else if (udata.diffusion && !udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_diff_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit diffusion, implicit reaction fe_RHS = f_diffusion; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit reaction, implicit diffusion fe_RHS = f_reaction; fi_RHS = f_diffusion; Ji_RHS = J_diffusion; break; case(4): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_diff_react; Ji_RHS = J_diff_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } else { cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Create ARKStep memory *arkode_mem = ARKStepCreate(fe_RHS, fi_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ARKStepCreate")) return 1; // Specify tolerances int flag = ARKStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "ARKStepSStolerances")) return 1; // Attach user data flag = ARKStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "ARKStepSetUserData")) return 1; // If implicit, setup solvers if (fi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = ARKStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "ARKStepSetLinearSolver")) return 1; // Attach Jacobian function flag = ARKStepSetJacFn(*arkode_mem, Ji_RHS); if (check_flag(flag, "ARKStepSetJacFn")) return 1; // Set the predictor method flag = ARKStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "ARKStepSetPredictorMethod")) return 1; // Set linear solver setup frequency flag = ARKStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "ARKStepSetLSetupFrequency")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = ARKStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "ARKStepSetLinear")) return 1; } } // Select method if (!fe_RHS && uopts.ark_dirk) { // Use the DIRK method from the default ARK method switch(uopts.order) { case(3): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK324L2SA_DIRK_4_2_3", "ARKODE_ERK_NONE"); break; case(4): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK436L2SA_DIRK_6_3_4", "ARKODE_ERK_NONE"); break; case(5): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK548L2SA_DIRK_8_4_5", "ARKODE_ERK_NONE"); break; default: cerr << "ERROR: Invalid order to use ARK DIRK method" << endl; return -1; break; } if (check_flag(flag, "ARKStepSetTableNum")) return 1; } else { // Select default method of a given order flag = ARKStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "ARKStepSetOrder")) return 1; } // Set fixed step size or adaptivity method if (uopts.fixed_h > ZERO) { flag = ARKStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "ARKStepSetFixedStep")) return 1; } else if (uopts.controller >= 0) { flag = ARKStepSetAdaptivityMethod(*arkode_mem, uopts.controller, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ARKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ARKStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "ARKStepSetMaxNumSteps")) return 1; // Set stopping time flag = ARKStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "ARKStepSetStopTime")) return 1; return 0; } int SetupMRIARK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, SUNMatrix* A_fast, SUNLinearSolver* LS_fast, MRIStepInnerStepper* fast_mem, void** arkode_mem) { // Problem configuration ARKRhsFn fse_RHS; // slow explicit RHS function ARKRhsFn fsi_RHS; // slow implicit RHS function ARKLsJacFn Jsi_RHS; // Jacobian of slow implicit RHS function ARKRhsFn ffe_RHS; // fast explicit RHS function ARKRhsFn ffi_RHS; // fast implicit RHS function ARKLsJacFn Jfi_RHS; // Jacobian of fast implicit RHS function // Slow time scale if (udata.diffusion && udata.advection) { // IMEX slow -- advection-diffusion fse_RHS = f_advection; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else if (!udata.diffusion && udata.advection) { // Explicit slow -- advection fse_RHS = f_advection; fsi_RHS = nullptr; Jsi_RHS = nullptr; } else if (udata.diffusion && !udata.advection) { // Implicit slow -- diffusion fse_RHS = nullptr; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else { // No slow time scale cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Fast time scale if (udata.splitting) { // Implicit fast -- reaction ffe_RHS = nullptr; ffi_RHS = f_reaction; Jfi_RHS = J_reaction; } else { // Explicit fast -- reaction ffe_RHS = f_reaction; ffi_RHS = nullptr; Jfi_RHS = nullptr; } // ------------------------- // Setup the fast integrator // ------------------------- // Create ARKStep memory void* fast_arkode_mem = ARKStepCreate(ffe_RHS, ffi_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ARKStepCreate")) return 1; // Specify tolerances int flag = ARKStepSStolerances(fast_arkode_mem, uopts.rtol_fast, uopts.atol_fast); if (check_flag(flag, "ARKStepSStolerances")) return 1; // Attach user data flag = ARKStepSetUserData(fast_arkode_mem, &udata); if (check_flag(flag, "ARKStepSetUserData")) return 1; // If implicit, setup solvers if (ffi_RHS) { // Create banded matrix *A_fast = SUNBandMatrix(udata.neq, 2, 2, ctx); if (check_ptr(*A_fast, "SUNBandMatrix")) return 1; // Create linear solver *LS_fast = SUNLinSol_Band(y, *A_fast, ctx); if (check_ptr(*LS_fast, "SUNLinSol_Band")) return 1; // Attach linear solver flag = ARKStepSetLinearSolver(fast_arkode_mem, *LS_fast, *A_fast); if (check_flag(flag, "ARKStepSetLinearSolver")) return 1; // Attach Jacobian function flag = ARKStepSetJacFn(fast_arkode_mem, Jfi_RHS); if (check_flag(flag, "ARKStepSetJacFn")) return 1; // Set the predictor method flag = ARKStepSetPredictorMethod(fast_arkode_mem, uopts.predictor_fast); if (check_flag(flag, "ARKStepSetPredictorMethod")) return 1; // Set linear solver setup frequency flag = ARKStepSetLSetupFrequency(fast_arkode_mem, uopts.ls_setup_freq_fast); if (check_flag(flag, "ARKStepSetLSetupFrequency")) return 1; } // Select method order flag = ARKStepSetOrder(fast_arkode_mem, uopts.order_fast); if (check_flag(flag, "ARKStepSetOrder")) return 1; // Set fixed step size or adaptivity method if (uopts.fixed_h_fast > ZERO) { flag = ARKStepSetFixedStep(fast_arkode_mem, uopts.fixed_h_fast); if (check_flag(flag, "ARKStepSetFixedStep")) return 1; } else if (uopts.controller_fast >= 0) { flag = ARKStepSetAdaptivityMethod(fast_arkode_mem, uopts.controller_fast, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ARKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ARKStepSetMaxNumSteps(fast_arkode_mem, uopts.maxsteps); if (check_flag(flag, "ARKStepSetMaxNumSteps")) return 1; // Wrap ARKODE as an MRIStepInnerStepper flag = ARKStepCreateMRIStepInnerStepper(fast_arkode_mem, fast_mem); if (check_flag(flag, "ARKStepCreateMRIStepInnerStepper")) return 1; // ------------------------- // Setup the slow integrator // ------------------------- // Create slow integrator for diffusion and attach fast integrator *arkode_mem = MRIStepCreate(fse_RHS, fsi_RHS, ZERO, y, *fast_mem, ctx); if (check_ptr(*arkode_mem, "MRIStepCreate")) return 1; // Set the slow step size flag = MRIStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "MRIStepSetFixedStep")) return 1; // Specify tolerances flag = MRIStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "MRIStepSStolerances")) return 1; // Attach user data flag = MRIStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "MRIStepSetUserData")) return 1; // If implicit, setup solvers if (fsi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = MRIStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "MRIStepSetLinearSolver")) return 1; // Attach Jacobian function flag = MRIStepSetJacFn(*arkode_mem, Jsi_RHS); if (check_flag(flag, "MRIStepSetJacFn")) return 1; // Set linear solver setup frequency flag = MRIStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "MRIStepSetLSetupFrequency")) return 1; // Set the predictor method flag = MRIStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "MRIStepSetPredictorMethod")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = MRIStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "MRIStepSetLinear")) return 1; } } // Select method order flag = MRIStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "MRIStepSetOrder")) return 1; // Set max steps between outputs flag = MRIStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "MRIStepSetMaxNumSteps")) return 1; // Set stopping time flag = MRIStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "MRIStepSetStopTime")) return 1; return 0; } int SetupMRICVODE(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, SUNMatrix* A_fast, SUNLinearSolver* LS_fast, MRIStepInnerStepper* fast_mem, void** arkode_mem) { // Problem configuration ARKRhsFn fse_RHS; // slow explicit RHS function ARKRhsFn fsi_RHS; // slow implicit RHS function ARKLsJacFn Jsi_RHS; // Jacobian of slow implicit RHS function ARKRhsFn ff_RHS; // fast RHS function ARKLsJacFn Jf_RHS; // Jacobian of fast RHS function // Slow time scale if (udata.diffusion && udata.advection) { // IMEX slow -- advection-diffusion fse_RHS = f_advection; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else if (!udata.diffusion && udata.advection) { // Explicit slow -- advection fse_RHS = f_advection; fsi_RHS = nullptr; Jsi_RHS = nullptr; } else if (udata.diffusion && !udata.advection) { // Implicit slow -- diffusion fse_RHS = nullptr; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else { // No slow time scale cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Fast time scale -- Implicit fast reaction ff_RHS = f_react_forcing; Jf_RHS = J_reaction; // ------------------------- // Setup the fast integrator // ------------------------- // Create the solver memory and specify the Adams methods void* cvode_mem = CVodeCreate(CV_BDF, ctx); if (check_ptr(cvode_mem, "CVodeCreate")) return(1); // Initialize the integrator memory int flag = CVodeInit(cvode_mem, ff_RHS, ZERO, y); if (check_flag(flag, "CVodeInit")) return(1); // Specify tolerances flag = CVodeSStolerances(cvode_mem, uopts.rtol_fast, uopts.atol_fast); if (check_flag(flag, "CVodeSVtolerances")) return(1); // Attach user data flag = CVodeSetUserData(cvode_mem, &udata); if (check_flag(flag, "CVodeSetUserData")) return 1; // Create banded matrix *A_fast = SUNBandMatrix(udata.neq, 2, 2, ctx); if (check_ptr(*A_fast, "SUNBandMatrix")) return 1; // Create linear solver *LS_fast = SUNLinSol_Band(y, *A_fast, ctx); if (check_ptr(*LS_fast, "SUNLinSol_Band")) return 1; // Attach linear solver flag = CVodeSetLinearSolver(cvode_mem, *LS_fast, *A_fast); if (check_flag(flag, "CVodeSetLinearSolver")) return 1; // Attach Jacobian function flag = CVodeSetJacFn(cvode_mem, Jf_RHS); if (check_flag(flag, "CVodeSetJacFn")) return 1; // Set linear solver setup frequency flag = CVodeSetLSetupFrequency(cvode_mem, uopts.ls_setup_freq_fast); if (check_flag(flag, "CVodeSetLSetupFrequency")) return 1; // Set max steps between outputs flag = CVodeSetMaxNumSteps(cvode_mem, uopts.maxsteps); if (check_flag(flag, "CVodeSetMaxNumSteps")) return 1; // Create the inner stepper wrapper flag = MRIStepInnerStepper_Create(ctx, fast_mem); if (check_flag(flag, "MRIStepInnerStepper_Create")) return 1; // Attach memory and operations CVodeInnerStepperContent* inner_content = new CVodeInnerStepperContent; inner_content->cvode_mem = cvode_mem; inner_content->user_data = &udata; inner_content->save_hinit = uopts.save_hinit; inner_content->save_hcur = uopts.save_hcur; inner_content->hcur_factor = uopts.hcur_factor; flag = MRIStepInnerStepper_SetContent(*fast_mem, inner_content); if (check_flag(flag, "MRIStepInnerStepper_SetContent")) return 1; flag = MRIStepInnerStepper_SetEvolveFn(*fast_mem, CVodeInnerStepper_Evolve); if (check_flag(flag, "MRIStepInnerStepper_SetEvolve")) return 1; flag = MRIStepInnerStepper_SetFullRhsFn(*fast_mem, CVodeInnerStepper_FullRhs); if (check_flag(flag, "MRIStepInnerStepper_SetFullRhsFn")) return 1; flag = MRIStepInnerStepper_SetResetFn(*fast_mem, CVodeInnerStepper_Reset); if (check_flag(flag, "MRIStepInnerStepper_SetResetFn")) return 1; // Attach inner stepper memory to user data udata.fast_mem = *fast_mem; // ------------------------- // Setup the slow integrator // ------------------------- // Create slow integrator for diffusion and attach fast integrator *arkode_mem = MRIStepCreate(fse_RHS, fsi_RHS, ZERO, y, *fast_mem, ctx); if (check_ptr(*arkode_mem, "MRIStepCreate")) return 1; // Set the slow step size flag = MRIStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "MRIStepSetFixedStep")) return 1; // Specify tolerances flag = MRIStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "MRIStepSStolerances")) return 1; // Attach user data flag = MRIStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "MRIStepSetUserData")) return 1; // If implicit, setup solvers if (fsi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = MRIStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "MRIStepSetLinearSolver")) return 1; // Attach Jacobian function flag = MRIStepSetJacFn(*arkode_mem, Jsi_RHS); if (check_flag(flag, "MRIStepSetJacFn")) return 1; // Set linear solver setup frequency flag = MRIStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "MRIStepSetLSetupFrequency")) return 1; // Set the predictor method flag = MRIStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "MRIStepSetPredictorMethod")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = MRIStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "MRIStepSetLinear")) return 1; } } // Select method order flag = MRIStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "MRIStepSetOrder")) return 1; // Set max steps between outputs flag = MRIStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "MRIStepSetMaxNumSteps")) return 1; // Set stopping time flag = MRIStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "MRIStepSetStopTime")) return 1; return 0; } // ----------------------------------------------------------------------------- // Custom inner stepper functions // ----------------------------------------------------------------------------- // Advance the fast ODE in time int CVodeInnerStepper_Evolve(MRIStepInnerStepper fast_mem, realtype t0, realtype tout, N_Vector y) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; // Set initial step size (if saved) if (content->save_hinit && content->hinit > ZERO) { flag = CVodeSetInitStep(content->cvode_mem, content->hinit); if (flag) return -1; } else if (content->save_hcur && content->hcur > ZERO) { flag = CVodeSetInitStep(content->cvode_mem, content->hcur_factor * content->hcur); if (flag) return -1; } // Evolve in time flag = CVodeSetStopTime(content->cvode_mem, tout); if (check_flag(flag, "CVodeSetStopTime")) return -1; realtype tret; flag = CVode(content->cvode_mem, tout, y, &tret, CV_NORMAL); if (flag < 0) return -1; // Save the initial step size if (content->save_hinit) { flag = CVodeGetActualInitStep(content->cvode_mem, &(content->hinit)); if (flag) return -1; } // Save the current step size if (content->save_hcur) { flag = CVodeGetCurrentStep(content->cvode_mem, &(content->hcur)); if (flag) return -1; } return 0; } // Compute the RHS of the fast ODE int CVodeInnerStepper_FullRhs(MRIStepInnerStepper fast_mem, realtype t, N_Vector y, N_Vector f, int mode) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; flag = f_reaction(t, y, f, content->user_data); if (flag) return -1; return 0; } // Reset the fast integrator to the given time and state int CVodeInnerStepper_Reset(MRIStepInnerStepper fast_mem, realtype tR, N_Vector yR) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; // Save current stats before reinit flag = UpdateCVodeStats(content); if (check_flag(flag, "UpdateCVodeStats")) return -1; // Reinitialize CVODE with new state flag = CVodeReInit(content->cvode_mem, tR, yR); if (check_flag(flag, "CVodeReInit")) return -1; return 0; } // ----------------------------------------------------------------------------- // Functions called by the integrator // ----------------------------------------------------------------------------- // Advection RHS function int f_advection(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute advection RHS realtype ul, ur; realtype vl, vr; realtype wl, wr; realtype c = -ONE * udata->c / (TWO * udata->dx); fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { ul = ydata[UIDX(i-1)]; ur = ydata[UIDX(i+1)]; vl = ydata[VIDX(i-1)]; vr = ydata[VIDX(i+1)]; wl = ydata[WIDX(i-1)]; wr = ydata[WIDX(i+1)]; fdata[UIDX(i)] = c * (ur - ul); fdata[VIDX(i)] = c * (vr - vl); fdata[WIDX(i)] = c * (wr - wl); } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Advection Jacobian function int J_advection(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; realtype c = -ONE * udata->c / (TWO * udata->dx); for (sunindextype i = 1; i < udata->nx - 1; i++) { SM_ELEMENT_B(J, UIDX(i), UIDX(i-1)) = -c; SM_ELEMENT_B(J, UIDX(i), UIDX(i+1)) = c; SM_ELEMENT_B(J, VIDX(i), VIDX(i-1)) = -c; SM_ELEMENT_B(J, VIDX(i), VIDX(i+1)) = c; SM_ELEMENT_B(J, WIDX(i), WIDX(i-1)) = -c; SM_ELEMENT_B(J, WIDX(i), WIDX(i+1)) = c; } return 0; } // Diffusion RHS function int f_diffusion(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute diffusion RHS realtype ul, uc, ur; realtype vl, vc, vr; realtype wl, wc, wr; realtype d = udata->d / (udata->dx * udata->dx); fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { ul = ydata[UIDX(i-1)]; uc = ydata[UIDX(i)]; ur = ydata[UIDX(i+1)]; vl = ydata[VIDX(i-1)]; vc = ydata[VIDX(i)]; vr = ydata[VIDX(i+1)]; wl = ydata[WIDX(i-1)]; wc = ydata[WIDX(i)]; wr = ydata[WIDX(i+1)]; fdata[UIDX(i)] = d * (ul - TWO * uc + ur); fdata[VIDX(i)] = d * (vl - TWO * vc + vr); fdata[WIDX(i)] = d * (wl - TWO * wc + wr); } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Diffusion Jacobian function int J_diffusion(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; realtype d = udata->d / (udata->dx * udata->dx); for (sunindextype i = 1; i < udata->nx - 1; i++) { SM_ELEMENT_B(J, UIDX(i), UIDX(i-1)) = d; SM_ELEMENT_B(J, UIDX(i), UIDX(i)) = -d * TWO; SM_ELEMENT_B(J, UIDX(i), UIDX(i+1)) = d; SM_ELEMENT_B(J, VIDX(i), VIDX(i-1)) = d; SM_ELEMENT_B(J, VIDX(i), VIDX(i)) = -d * TWO; SM_ELEMENT_B(J, VIDX(i), VIDX(i+1)) = d; SM_ELEMENT_B(J, WIDX(i), WIDX(i-1)) = d; SM_ELEMENT_B(J, WIDX(i), WIDX(i)) = -d * TWO; SM_ELEMENT_B(J, WIDX(i), WIDX(i+1)) = d; } return 0; } // Reaction RHS function int f_reaction(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute reaction RHS realtype u, v, w; fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { u = ydata[UIDX(i)]; v = ydata[VIDX(i)]; w = ydata[WIDX(i)]; fdata[UIDX(i)] = udata->A - (w + ONE) * u + v * u * u; fdata[VIDX(i)] = w * u - v * u * u; fdata[WIDX(i)] = ((udata->B - w) / udata->eps) - w * u; } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Diffusion Jacobian function int J_reaction(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Access data array realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return 1; realtype u, v, w; for (sunindextype i = 1; i < udata->nx - 1; i++) { u = ydata[UIDX(i)]; v = ydata[VIDX(i)]; w = ydata[WIDX(i)]; // all vars wrt u SM_ELEMENT_B(J, UIDX(i), UIDX(i)) = -(w + ONE) + TWO * u * v; SM_ELEMENT_B(J, VIDX(i), UIDX(i)) = w - TWO * u * v; SM_ELEMENT_B(J, WIDX(i), UIDX(i)) = -w; // all vars wrt v SM_ELEMENT_B(J, UIDX(i), VIDX(i)) = u * u; SM_ELEMENT_B(J, VIDX(i), VIDX(i)) = -u * u; // all vars wrt w SM_ELEMENT_B(J, UIDX(i), WIDX(i)) = -u; SM_ELEMENT_B(J, VIDX(i), WIDX(i)) = u; SM_ELEMENT_B(J, WIDX(i), WIDX(i)) = (-ONE / udata->eps) - u; } return 0; } // Advection-diffusion RHS function int f_adv_diff(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute diffusion flag = f_diffusion(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Advection-diffusion Jacobian function int J_adv_diff(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute diffusion Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_diffusion(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Advection-reaction RHS function int f_adv_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_adv_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Diffusion-reaction RHS function int f_diff_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion int flag = f_diffusion(t, y, f, user_data); if (flag) return flag; // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_diff_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_diffusion(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Advection-diffusion-reaction RHS function int f_adv_diff_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute diffusion flag = f_diffusion(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_adv_diff_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_diffusion(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Reaction RHS function with MRI forcing int f_react_forcing(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute reaction RHS int flag = f_reaction(t, y, f, user_data); if (flag) return flag; // Apply inner forcing for MRI + CVODE flag = MRIStepInnerStepper_AddForcing(udata->fast_mem, t, f); if (check_flag(flag, "MRIStepInnerStepper_AddForcing")) return -1; return 0; } // Compute the initial condition int SetIC(N_Vector y, UserData &udata) { realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype x, p; for (sunindextype i = 0; i < udata.nx; i++) { x = udata.xl + i * udata.dx; p = RCONST(0.1) * sin(PI * x); ydata[UIDX(i)] = udata.A + p; ydata[VIDX(i)] = udata.B / udata.A + p; ydata[WIDX(i)] = udata.B + p; } return 0; } //---- end of file ----
[ "agarny@hellix.com" ]
agarny@hellix.com
4cc6df30c141352dc972f1f2f0f39d44d060175a
92b377f464f61ed81afdcd89fa481d05c98f75e1
/src/timer.cpp
9b8c2df552a1fb24a527ed64a12e83a7ac75c5c1
[ "MIT" ]
permissive
crockeo/hc
d87507ade5be85b1041bd42f25c9c1c0ab5ae57b
a5f9eaa1051e8825fa765d120d8ea76682909a5a
refs/heads/master
2020-05-18T07:24:52.109471
2015-01-08T16:23:39
2015-01-08T16:23:39
28,546,458
0
0
null
null
null
null
UTF-8
C++
false
false
1,065
cpp
#include "timer.hpp" ////////////// // Includes // #include "delta.hpp" ////////// // Code // // Constructing a timer with a cap. Timer::Timer(float cap) { this->running = false; this->accum = 0; this->cap = cap; } // Constructing a default timer. Timer::Timer() { this->running = false; this->accum = 0; this->cap = 0; } // Starting the timer. void Timer::start() { if (!this->running) this->running = true; } // Stopping the timer (such that if it's void Timer::stop() { if (this->running) this->running = false; } // Resetting the accumulated time. void Timer::reset() { this->accum = 0; } // Updating the timer. void Timer::update() { if (this->cap != 0) if (this->accum > this->cap) this->accum -= this->cap; if (this->running) this->accum += this->delta.since(); } // Getting the time since the timer was started. float Timer::getTime() const { return this->accum; } // Checking if the timer is running. bool Timer::isRunning() const { return this->running; }
[ "crockeo@gmail.com" ]
crockeo@gmail.com
de89148aa5c3885dbded09991c40fba38770306f
3e995e5ffbf4b09c1ebdcac087fa2e2ac5d2ce5f
/main.cpp
c64bf254941d8b32e869b897ac92f83f1b32395d
[]
no_license
Feffote/P7E18_Arboles
f73dea82358820396ec7b74dd6b6e360acb78cf4
a03ddfdd2dbf16435a5a7b78cd1605a039a717b5
refs/heads/master
2020-04-03T21:09:54.893939
2018-11-02T14:57:47
2018-11-02T14:57:47
155,565,045
0
0
null
null
null
null
UTF-8
C++
false
false
9,217
cpp
#include <iostream> //#include<conio.h> #include<stdlib.h> #include "main.h" #include <vector> using namespace std; Nodo *arbol = NULL; int main(){ menu(); //getch(); return 0; } //funcion de menu void menu(){ int dato, opcion, contador=0; do{ cout<<"\t.:MENU:."<<endl; cout<<"1. Insertar un nuevo nodo"<<endl; cout<<"2. Mostrar el arbol completo"<<endl; cout<<"3. Buscar elemento en el arbol"<<endl; cout<<"4. Recorrer el arbol en preOrden"<<endl; cout<<"5. Recorrer el arbol en inOrden"<<endl; cout<<"6. Recorrer el arbol en inOrden"<<endl; cout<<"7. Eliminar nodo del arbol"<<endl; cout<<"8. Calcular peso del Arbol"<<endl; cout<<"9. Calcular cantidad de hojas"<<endl; cout<<"10. Elemento Repetido"<<endl; cout<<"11. Cantidad de elementos por nivel"<<endl; cout<<"12. Calcular altura del Arbol"<<endl; cout<<"13. Sumar todos los elementos del Arbol"<<endl; cout<<"14. Salir"<<endl; cout<<"Opcion: "; cin>>opcion; switch(opcion){ case 1: cout<<"\nDigite un número: "; cin>>dato; insertarNodo(arbol, dato, NULL); //inserta nuevo nodo cout<<"\n"; system("pause"); break; case 2: cout<<"\nMostrando el arbol completo:\n\n"; mostrarArbol(arbol, contador); cout<<"\n"; system("pause"); break; case 3: cout<<"\nDigite el elemento a buscar: "; cin>>dato; if(busqueda(arbol, dato) == true){ cout<<"\nElemento"<<dato<<" a sido encontrado en el arbol\n"; } else{ cout<<"\nElemento no encontrado\n"; } cout<<"\n"; system("pause"); break; case 4: cout<<"\nRecorrido en preOrden: "; preOrden(arbol); cout<<"\n\n"; system("pause"); break; case 5: cout<<"\nRecorrido en inOrden: "; inOrden(arbol); cout<<"\n\n"; system("pause"); break; case 6: cout<<"\nRecorrido en postOrden: "; postOrden(arbol); cout<<"\n\n"; system("pause"); break; case 7: cout<<"\nDigite el nodo que quiere eliminar: "; cin>>dato; eliminar(arbol,dato); cout<<"\n"; system("pause"); break; case 8: cout<<"\nPeso del arbol: "; calcularPeso(arbol); cout<<"\n"; system("pause"); break; case 9: ; case 10: cout<< "Número que desea buscar: "; cin>>dato; cout << "El número aparece "; nodoRepetido(arbol, dato); cout<< " veces."<< endl; cout << "\n"; break; case 11: ; case 12: cout<<"\nAltura del arbol: "<<calcularAltura(arbol); cout<<"\n"; system("pause"); break; case 13: cout<<"\nLa suma de todos los elementos del arbol: "; sumarElementos(arbol); cout<<"\n"; system("pause"); break; } system("cls"); }while(opcion !=14); } //funcion crear nuevo nodo para el arbol Nodo *crearNodo(int n, Nodo *padre){ Nodo *nuevo_nodo = new Nodo(); nuevo_nodo->dato = n; nuevo_nodo->der = NULL; nuevo_nodo->izq = NULL; nuevo_nodo->padre = padre; return nuevo_nodo; } //funcion insertar nodo en el arbol void insertarNodo(Nodo *&arbol, int n, Nodo *padre) { if (arbol == NULL) { Nodo *nuevo_nodo = crearNodo(n, padre); arbol = nuevo_nodo; } else { int valorRaiz = arbol->dato; // obtener valor de la raiz if (n < valorRaiz) { //si el elemento es menor a la raiz insertar lado izquierdo insertarNodo(arbol->izq, n, arbol); } else { //si el elemento es mayor a la raiz insertar lado derecho insertarNodo(arbol->der, n, arbol); } } } //funcion mostrar arbol void mostrarArbol(Nodo * arbol, int cont){ if(arbol == NULL){ return; } else{ mostrarArbol(arbol->der, cont+1); for(int i = 0; i<cont; i++){ cout<<" "; } cout<<arbol->dato<<endl; mostrarArbol(arbol->izq, cont+1); } } //funcion buscar elemento en el arbol bool busqueda(Nodo * arbol, int n){ if(arbol == NULL){ return false; } else if(arbol->dato == n){ return true; } else if(n<arbol->dato){ return busqueda(arbol->izq, n); } else{ return busqueda(arbol->der,n); } } //funcion reccorer arbol en profundidad - PreOrden void preOrden(Nodo * arbol) { if (arbol == NULL) { return; } else { cout << arbol->dato << " - "; preOrden(arbol->izq); preOrden(arbol->der); } } //funcion recorrer arbol en profundidad - inOrden void inOrden(Nodo * arbol) { if (arbol == NULL) { return; } else { inOrden(arbol->izq); cout << arbol->dato << " - "; inOrden(arbol->der); } } //funcion recorrer arbol en profundidad - postOrden void postOrden(Nodo * arbol) { if (arbol == NULL) { return; } else { postOrden(arbol->izq); postOrden(arbol->der); cout << arbol->dato << " - "; } } //determinar el nodo mas izquierdo posible Nodo *minimo(Nodo *arbol){ if(arbol == NULL){ return NULL; } if(arbol->izq){//si tiene hijo izquierdo return minimo(arbol->izq);//buscamos la parte mas izq posible } else{ //si no tiene hijo izq return arbol; //retorna mismo nodo } } //funcion eliminar nodo void eliminar(Nodo *arbol, int n){ if(arbol == NULL){ return; } else if(n < arbol->dato){ //si el valor es menor eliminar(arbol->izq, n); //buscar por la izquierda } else if(n > arbol->dato){ //si el valor es mayor eliminar(arbol->der, n); //busca por la derecha } else{ //si el valor es encontrado eliminarNodo(arbol); } } //funcion reemplazar dos nodos void reemplazar(Nodo *arbol, Nodo *nuevoNodo){ if(arbol->padre){ //arbol padre asignarle nuevo hijo if(arbol->dato == arbol->padre->izq->dato){//hijo izq arbol->padre->izq = nuevoNodo; } else if(arbol->dato == arbol->padre->der->dato){//hijo der arbol->padre->der = nuevoNodo; } } if(nuevoNodo){ //asignarle su nuevo padre nuevoNodo->padre = arbol->padre; } } //funcion destruir nodo void destruirNodo(Nodo *nodo){ nodo->izq = NULL; nodo->der = NULL; delete nodo; } //funcion para eliminar nodo encontrado void eliminarNodo(Nodo *nodoEliminar) { if (nodoEliminar->izq && nodoEliminar->der){ //si el nodo tiene hijo izquierdo y derecho Nodo *menor = minimo(nodoEliminar->der); nodoEliminar->dato = menor->dato; eliminarNodo(menor); } else if(nodoEliminar->izq){ reemplazar(nodoEliminar, nodoEliminar->izq); destruirNodo(nodoEliminar); } else if(nodoEliminar->der){ reemplazar(nodoEliminar, nodoEliminar->der); destruirNodo(nodoEliminar); } else{ //nodo sin hijos, nodo hoja reemplazar(nodoEliminar, NULL); destruirNodo(nodoEliminar); } } void vectorizar(Nodo *arbol, vector <int> &lista) { if (arbol != nullptr) { lista.push_back(arbol->dato); //agrega los números del árbol al vector “lista” vectorizar(arbol->izq, lista); vectorizar(arbol->der, lista); } } void calcularPeso(Nodo *arbol){ vector <int> lista ; vectorizar(arbol,lista); cout << lista.size() <<endl; } void calcularHojas(Nodo *arbol, int c){ vector<int> lista; vectorizar(arbol, lista); int cont1 = 0; if (arbol == nullptr){ cont1++; } } //void elementoPorNivel(int); //cantidad de veces que aparece un número dado en el árbol void nodoRepetido(Nodo *arbol, int n){ vector <int> lista; vectorizar(arbol, lista); int cont = 0; for (int i=0 ; i<lista.size(); i=i+1){//recorre el vector y cuando encuentra el número, cont+1 if (n == lista[i]){ cont++; } } cout<<cont<<endl; } int calcularAltura(Nodo *arbol) { // Base case: empty tree has height 0 if (arbol == nullptr) return 0; // recurse for left and right subtree and consider maximum depth return max(calcularAltura(arbol->izq), calcularAltura(arbol->der)) + 1; } void sumarElementos (Nodo *arbol){ vector <int> lista ; vectorizar(arbol,lista); int sum = 0; for (int i = 0; i<lista.size(); i++){ sum += lista[i]; } cout<< sum<<endl; }
[ "zinnifederico@gmail.com" ]
zinnifederico@gmail.com
6ca6c3d860e2425a11f40638661ff3af8bb64700
a7764174fb0351ea666faa9f3b5dfe304390a011
/inc/OSD_FontMgr.hxx
622f450b5bad75b6c1a29c96e3cba9f422ff2f9a
[]
no_license
uel-dataexchange/Opencascade_uel
f7123943e9d8124f4fa67579e3cd3f85cfe52d91
06ec93d238d3e3ea2881ff44ba8c21cf870435cd
refs/heads/master
2022-11-16T07:40:30.837854
2020-07-08T01:56:37
2020-07-08T01:56:37
276,290,778
0
0
null
null
null
null
UTF-8
C++
false
false
1,351
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _OSD_FontMgr_HeaderFile #define _OSD_FontMgr_HeaderFile #ifndef _Standard_HeaderFile #include <Standard.hxx> #endif #ifndef _Standard_DefineHandle_HeaderFile #include <Standard_DefineHandle.hxx> #endif #ifndef _Handle_OSD_FontMgr_HeaderFile #include <Handle_OSD_FontMgr.hxx> #endif #ifndef _OSD_NListOfSystemFont_HeaderFile #include <OSD_NListOfSystemFont.hxx> #endif #ifndef _MMgt_TShared_HeaderFile #include <MMgt_TShared.hxx> #endif //! Structure for store of Font System Information <br> class OSD_FontMgr : public MMgt_TShared { public: Standard_EXPORT static Handle_OSD_FontMgr GetInstance() ; Standard_EXPORT OSD_NListOfSystemFont GetAvalableFonts() const; DEFINE_STANDARD_RTTI(OSD_FontMgr) protected: private: //! Creates empty font object <br> Standard_EXPORT OSD_FontMgr(); Standard_EXPORT void InitFontDataBase() ; OSD_NListOfSystemFont MyListOfFonts; }; // other Inline functions and methods (like "C++: function call" methods) #endif
[ "shoka.sho2@excel.co.jp" ]
shoka.sho2@excel.co.jp
0e874444195f88d1432616c21cdd2cbe277ccb3e
a6b87253faeace0c4e1aa9400d0dd1e80ee4c1bd
/Project 260/VehicleCompDisplaySrc/searchWindow.h
bdb31b182b19404189ad886e7e7e8df090138996
[]
no_license
poliu2s/CPSC-260
972b4140dacdc2720f4260c35295e072b66449c5
a60ecd8f50cd25f95faf62e4a95c2fc61a433abf
refs/heads/master
2021-01-10T19:03:48.024948
2012-12-27T22:23:42
2012-12-27T22:23:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,722
h
#pragma once // Author: Po Liu, 13623079, x2f7 // Date: 28 July 2010 // Class invariant: // A user defined window class that displays the main GUI functionality by visually displaying // the char matrix and allows the user to input words to find #include <iostream> #include <string> #include <sstream> #include "Simple_window.h" #include "data.h" #include "inputFormatter.h" #include "MyLinkedList.h" #ifndef SEARCHWINDOW_H #define SEARCHWINDOW_H struct searchWindow:Window { // Constructor that takes in a pointer to the wordsearch matrix // pre: none // post: sets up the window and draws everything searchWindow(Point xy, int w, int h, const string& title, data* rawMatrix ); // Use of virtual method in destructor -------> one of the project requirements virtual ~searchWindow() { } // For displaying and holding the char array data* wordSearch; Text* displayMatrix[10][10]; Text* sampleWord1; Text* sampleWord2; Text* sampleWord3; Text* sampleWord4; Text* sampleWord5; Text* sampleWord6; private: Button find_button; Button quit_button; In_box next_x; // Callback function for find // pre: none // post: executes the find() static void cb_find(Address, Address); // When the find key is pressed, take the word in the inbox and look for it // If it is found, then change the color of the word in the GUI // pre: find key is clicked // post: Highlights a word in the matrix, if not found then does nothing void find(); // Callback function for quit // pre: none // post: executes the quit() static void cb_quit(Address, Address); // Quits out of the program if quit button is pressed // pre: quit button click // post: program exists void quit(); }; #endif
[ "po.liu.2s@gmail.com" ]
po.liu.2s@gmail.com
4b01bcd8da6d4c7b7b28203d33f75e496f407ec3
b21b5ff3469f651c688ffc4d534f3f7183718496
/PhotoStage/widgets/mapview/imagemarker.h
404c773c67e1ffdf4e581c5c0dbe61c3ab6fed4f
[]
no_license
jaapgeurts/photostage
8d88de7e9d6fe4a714cf0931284d57356006d9d7
aabfe1b6fd607fab6b4f52089a2b691cebf274af
refs/heads/master
2021-01-10T10:26:15.306997
2019-02-22T12:38:00
2019-02-22T12:38:00
43,422,797
1
0
null
null
null
null
UTF-8
C++
false
false
474
h
#ifndef MAPVIEW_IMAGEMARKER_H #define MAPVIEW_IMAGEMARKER_H #include <QObject> #include <QImage> #include "abstractmarker.h" namespace MapView { class ImageMarker : public AbstractMarker { public: ImageMarker(QObject* parent = 0); ImageMarker(const QImage& img, QObject* parent); QSize size() const; void paint(QPainter& painter, const MarkerInfo&, const QVariant&); private: QImage mIcon; }; } #endif // IMAGEMARKER_H
[ "jaapg@gmx.net" ]
jaapg@gmx.net
6283cab79958f353b9193cfde4cf09707357f21d
6a721fb3eecf92950e1f6007fb49c399f0b3cb7c
/SDK/PUBG_NewMessageBorderWidget_functions.cpp
8c797f78e12bc6c65a54c0025b53b6ee74c3fe39
[]
no_license
handsomeprince/PUBG-SDK-3
5474c48041b6fd4e4be975c222f76b6c02df9f31
5a922157f770a49c82ae597284d2a7cb60c86515
refs/heads/master
2021-04-15T09:46:11.411487
2018-02-22T06:13:30
2018-02-22T06:13:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,834
cpp
// PlayerUnknown's Battlegrounds (2.6.23) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "PUBG_NewMessageBorderWidget_parameters.hpp" namespace Classes { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function NewMessageBorderWidget.NewMessageBorderWidget_C.TickMove // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) // Parameters: // float Time (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::TickMove(float Time) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.TickMove"); UNewMessageBorderWidget_C_TickMove_Params params; params.Time = Time; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.UpdatePositionInfo // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) void UNewMessageBorderWidget_C::UpdatePositionInfo() { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.UpdatePositionInfo"); UNewMessageBorderWidget_C_UpdatePositionInfo_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.IsFull // (Public, HasOutParms, BlueprintCallable, BlueprintEvent, BlueprintPure) // Parameters: // bool Full (Parm, OutParm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::IsFull(bool* Full) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.IsFull"); UNewMessageBorderWidget_C_IsFull_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; if (Full != nullptr) *Full = params.Full; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.SetSizeRule // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) // Parameters: // TEnumAsByte<ESlateSizeRule> TopSize (Parm, ZeroConstructor, IsPlainOldData) // TEnumAsByte<ESlateSizeRule> BottomSize (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::SetSizeRule(TEnumAsByte<ESlateSizeRule> TopSize, TEnumAsByte<ESlateSizeRule> BottomSize) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.SetSizeRule"); UNewMessageBorderWidget_C_SetSizeRule_Params params; params.TopSize = TopSize; params.BottomSize = BottomSize; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.OnRemoveMessage // (Public, BlueprintCallable, BlueprintEvent) // Parameters: // class UNewSystemMessageWidget_C* SystemMessageWidget (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::OnRemoveMessage(class UNewSystemMessageWidget_C* SystemMessageWidget) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.OnRemoveMessage"); UNewMessageBorderWidget_C_OnRemoveMessage_Params params; params.SystemMessageWidget = SystemMessageWidget; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.AddMessage // (Public, BlueprintCallable, BlueprintEvent) // Parameters: // class UNewSystemMessageWidget_C* Message (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::AddMessage(class UNewSystemMessageWidget_C* Message) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.AddMessage"); UNewMessageBorderWidget_C_AddMessage_Params params; params.Message = Message; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.DisplayKilledMessage // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) // Parameters: // struct FDeathMessage DeathMessage (Parm) void UNewMessageBorderWidget_C::DisplayKilledMessage(const struct FDeathMessage& DeathMessage) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.DisplayKilledMessage"); UNewMessageBorderWidget_C_DisplayKilledMessage_Params params; params.DeathMessage = DeathMessage; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.Construct // (BlueprintCosmetic, Event, Public, BlueprintEvent) void UNewMessageBorderWidget_C::Construct() { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.Construct"); UNewMessageBorderWidget_C_Construct_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.Tick // (BlueprintCosmetic, Event, Public, BlueprintEvent) // Parameters: // struct FGeometry* MyGeometry (Parm, IsPlainOldData) // float* InDeltaTime (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::Tick(struct FGeometry* MyGeometry, float* InDeltaTime) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.Tick"); UNewMessageBorderWidget_C_Tick_Params params; params.MyGeometry = MyGeometry; params.InDeltaTime = InDeltaTime; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function NewMessageBorderWidget.NewMessageBorderWidget_C.ExecuteUbergraph_NewMessageBorderWidget // (HasDefaults) // Parameters: // int EntryPoint (Parm, ZeroConstructor, IsPlainOldData) void UNewMessageBorderWidget_C::ExecuteUbergraph_NewMessageBorderWidget(int EntryPoint) { static auto fn = UObject::FindObject<UFunction>("Function NewMessageBorderWidget.NewMessageBorderWidget_C.ExecuteUbergraph_NewMessageBorderWidget"); UNewMessageBorderWidget_C_ExecuteUbergraph_NewMessageBorderWidget_Params params; params.EntryPoint = EntryPoint; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "number201724@me.com" ]
number201724@me.com
384b245b1a5b61c64c7b0716d95fe57df9f8d0be
74e202b00ad51b91ebf7170ad442f9e3c6ad2f47
/Classes/AuthScene.cpp
14bbfc713d49352f7d53d5adc212dbc453bf3232
[ "MIT" ]
permissive
anlianglu/cocos2dx_3x
c0239646c39923e38a3d5999ce3e99478cf41e6d
6390672493fa204f36bcefebc8839c06da61cb4a
refs/heads/master
2021-12-29T12:56:50.117531
2016-11-30T03:21:38
2016-11-30T03:21:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,457
cpp
// // AuthScene.cpp // UmengGame // // Created by wangfei on 16/4/6. // // #include "AuthScene.h" #include "Entrance.h" #include <iostream> #include <vector> #include <map> #include <string> #include "Cocos2dx/Common/CCUMSocialSDK.h" USING_NS_CC; USING_NS_UM_SOCIAL; // 环境变量PATH在windows下和linux下的分割符定义 #ifdef _WIN32 #define PATH_SEPARATOR ';' #else #define PATH_SEPARATOR ':' #endif int labelTag = 456; int layerTag = 123; Scene* Auth::scene() { // 'scene' is an autorelease object Scene *scene = Scene::create(); Auth *layer = Auth::create(); layer->setTag(layerTag); // add layer as a child to scene scene->addChild(layer); // return the scene return scene; } // on "init" you need to initialize your instance bool Auth::init() { ////////////////////////////// // 1. super init first if ( !Layer::init() ) { return false; } Size visibleSize = Director::getInstance()->getVisibleSize(); Point origin = Director::getInstance()->getVisibleOrigin(); auto pLabel = Label::createWithSystemFont("授权界面","Arial", 18); // position the label on the center of the screen pLabel->setPosition(Vec2(origin.x + visibleSize.width/2, origin.y + visibleSize.height - pLabel->getContentSize().height)); // add the label as a child to this layer this->addChild(pLabel, 1); int width = 50; MenuItemFont *qqButton = MenuItemFont::create("qq授权", CC_CALLBACK_1(Auth::qqAuth, this)); qqButton->setPosition(Vec2(visibleSize.width/2-width, 240)); qqButton->setFontSizeObj(12); // 底层API分享 MenuItemFont *sinaButton = MenuItemFont::create("新浪授权", CC_CALLBACK_1(Auth::sinaAuth, this)); sinaButton->setPosition(Vec2(visibleSize.width/2-width, 210)); sinaButton->setFontSizeObj(12); // 授权某平台 MenuItemFont *wxButton = MenuItemFont::create("微信授权", CC_CALLBACK_1(Auth::wxAuth, this)); wxButton->setPosition(Vec2(visibleSize.width/2-width,180)); wxButton->setFontSizeObj(12); MenuItemFont *fbButton = MenuItemFont::create("facebook授权", CC_CALLBACK_1(Auth::facebookAuth, this)); fbButton->setPosition(Vec2(visibleSize.width/2-width, 150)); fbButton->setFontSizeObj(12); MenuItemFont *twitterButton = MenuItemFont::create("twitter授权", CC_CALLBACK_1(Auth::twitterAuth, this)); twitterButton->setPosition(Vec2(visibleSize.width/2-width, 125)); twitterButton->setFontSizeObj(12); MenuItemFont *delqqButton = MenuItemFont::create("qq删除授权", CC_CALLBACK_1(Auth::qqAuthDel, this)); delqqButton->setPosition(Vec2(visibleSize.width/2+width, 240)); delqqButton->setFontSizeObj(12); // 底层API分享 MenuItemFont *delsinaButton = MenuItemFont::create("新浪删除授权", CC_CALLBACK_1(Auth::sinaAuthDel, this)); delsinaButton->setPosition(Vec2(visibleSize.width/2+width, 210)); delsinaButton->setFontSizeObj(12); // 授权某平台 MenuItemFont *delwxButton = MenuItemFont::create("微信删除授权", CC_CALLBACK_1(Auth::wxAuthDel, this)); delwxButton->setPosition(Vec2(visibleSize.width/2+width, 180)); delwxButton->setFontSizeObj(12); MenuItemFont *delfacebookButton = MenuItemFont::create("facebook删除授权", CC_CALLBACK_1(Auth::doubanAuthDel, this)); delfacebookButton->setPosition(Vec2(visibleSize.width/2+width, 150)); delfacebookButton->setFontSizeObj(12); MenuItemFont *deltwitterButton = MenuItemFont::create("twitter删除授权", CC_CALLBACK_1(Auth::renrenAuthDel, this)); deltwitterButton->setPosition(Vec2(visibleSize.width/2+width, 125)); deltwitterButton->setFontSizeObj(12); MenuItemImage *pCloseItem = MenuItemImage::create( "CloseNormal.png", "CloseSelected.png", CC_CALLBACK_1(Auth::menuCloseCallback, this)); pCloseItem->setPosition(Vec2(origin.x + visibleSize.width - pCloseItem->getContentSize().width/2 , origin.y + pCloseItem->getContentSize().height/2)); Menu* pMenu = Menu::create(); pMenu->addChild(qqButton, 1); pMenu->addChild(pCloseItem, 1); pMenu->addChild(sinaButton, 1); pMenu->addChild(wxButton, 1); pMenu->addChild(delqqButton, 1); pMenu->addChild(delsinaButton, 1); pMenu->addChild(delwxButton, 1); pMenu->addChild(fbButton, 1); pMenu->addChild(twitterButton, 1); pMenu->addChild(delfacebookButton, 1); pMenu->addChild(deltwitterButton, 1); pMenu->setPosition(Size::ZERO); this->addChild(pMenu, 1); auto authlabel = Label::createWithSystemFont("回调结果", "Arial", 18); authlabel->setTag(labelTag); // position the label on the center of the screen authlabel->setPosition( Vec2(origin.x + visibleSize.width / 2, 40)); // add the label as a child to this layer this->addChild(authlabel, 1); return true; } /* *授权回调 * @param platform 要授权的平台 * @param stCode 返回码, 200代表授权成功, 100代表开始授权, 0代表授权出错, -1代表取消授权 * @param data 授权时返回的数据 */ void authCallback(int platform, int stCode, map<string, string>& data) { log("#### 授权回调"); Auth* hwLayer =(Auth*) Director::getInstance()->getRunningScene()->getChildByTag( layerTag); Label* item = (Label*) hwLayer->getChildByTag(labelTag); string result = ""; if (stCode == 200) { log("#### 授权完成"); result = "授权完成"; map<string, string>::iterator it = data.begin(); for (; it != data.end(); ++it) { log("#### data %s -> %s.", it->first.c_str(), it->second.c_str()); } // item->setString("auth or delete success"); } else if (stCode == 0) { // item->setString("auth or delete fail"); result = "授权出错"; log("#### 授权出错"); } else if (stCode == -1) { // item->setString("auth or delete cancel"); result = "取消授权"; log("#### 取消授权"); }else { log("#### 未知类型"); } item->setString(result.c_str()); // map<string, string>::iterator it = data.begin(); // for (; it != data.end(); ++it) { // log("#### data %s -> %s.", it->first.c_str(), it->second.c_str()); // } } //void authCallBack(int platform, int stCode, const char* usid, // const char *token) { // printf("%d %d %s %s", platform, stCode, usid, token); //} void Auth::qqAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(QQ, auth_selector(authCallback)); } void Auth::sinaAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(SINA, auth_selector(authCallback)); } void Auth::wxAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(WEIXIN, auth_selector(authCallback)); } void Auth::qqAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(QQ, auth_selector(authCallback)); } void Auth::sinaAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(SINA, auth_selector(authCallback)); } void Auth::wxAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(WEIXIN, auth_selector(authCallback)); } void Auth::doubanAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(DOUBAN, auth_selector(authCallback)); } void Auth::renrenAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(RENREN, auth_selector(authCallback)); } void Auth::facebookAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(FACEBOOK, auth_selector(authCallback)); } void Auth::doubanAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(DOUBAN, auth_selector(authCallback)); } void Auth::renrenAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(RENREN, auth_selector(authCallback)); } void Auth::facebookAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(FACEBOOK, auth_selector(authCallback)); } void Auth::twitterAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(TWITTER, auth_selector(authCallback)); } void Auth::twitterAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(TWITTER, auth_selector(authCallback)); } void Auth::menuCloseCallback(Ref* pSender) { TransitionScene * reScene = NULL; Scene * s = Entrance::scene(); float t = 1.2f; reScene = TransitionJumpZoom ::create(t , s); Director::getInstance()->replaceScene(reScene); }
[ "wf90163@alibaba-inc.com" ]
wf90163@alibaba-inc.com
0936050e10624242e9cfbf3646ba5df050b0d4f4
3282ccae547452b96c4409e6b5a447f34b8fdf64
/SimModel_Python_API/simmodel_swig/SimModel/framework/SimFlowMover_ReturnFan_OnOff.hxx
492242aa4039a38e397532666fea0aab6d98ced7
[ "MIT" ]
permissive
EnEff-BIM/EnEffBIM-Framework
c8bde8178bb9ed7d5e3e5cdf6d469a009bcb52de
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
refs/heads/master
2021-01-18T00:16:06.546875
2017-04-18T08:03:40
2017-04-18T08:03:40
28,960,534
3
0
null
2017-04-18T08:03:40
2015-01-08T10:19:18
C++
UTF-8
C++
false
false
22,835
hxx
// Copyright (c) 2005-2014 Code Synthesis Tools CC // // This program was generated by CodeSynthesis XSD, an XML Schema to // C++ data binding compiler. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // // In addition, as a special exception, Code Synthesis Tools CC gives // permission to link this program with the Xerces-C++ library (or with // modified versions of Xerces-C++ that use the same license as Xerces-C++), // and distribute linked combinations including the two. You must obey // the GNU General Public License version 2 in all respects for all of // the code used other than Xerces-C++. If you modify this copy of the // program, you may extend this exception to your version of the program, // but you are not obligated to do so. If you do not wish to do so, delete // this exception statement from your version. // // Furthermore, Code Synthesis Tools CC makes a special exception for // the Free/Libre and Open Source Software (FLOSS) which is described // in the accompanying FLOSSE file. // #ifndef SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX #define SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX #ifndef XSD_USE_CHAR #define XSD_USE_CHAR #endif #ifndef XSD_CXX_TREE_USE_CHAR #define XSD_CXX_TREE_USE_CHAR #endif // Begin prologue. // // // End prologue. #include <xsd/cxx/config.hxx> #if (XSD_INT_VERSION != 4000000L) #error XSD runtime version mismatch #endif #include <xsd/cxx/pre.hxx> #include <xsd/cxx/xml/char-utf8.hxx> #include <xsd/cxx/tree/exceptions.hxx> #include <xsd/cxx/tree/elements.hxx> #include <xsd/cxx/tree/types.hxx> #include <xsd/cxx/xml/error-handler.hxx> #include <xsd/cxx/xml/dom/auto-ptr.hxx> #include <xsd/cxx/tree/parsing.hxx> #include <xsd/cxx/tree/parsing/byte.hxx> #include <xsd/cxx/tree/parsing/unsigned-byte.hxx> #include <xsd/cxx/tree/parsing/short.hxx> #include <xsd/cxx/tree/parsing/unsigned-short.hxx> #include <xsd/cxx/tree/parsing/int.hxx> #include <xsd/cxx/tree/parsing/unsigned-int.hxx> #include <xsd/cxx/tree/parsing/long.hxx> #include <xsd/cxx/tree/parsing/unsigned-long.hxx> #include <xsd/cxx/tree/parsing/boolean.hxx> #include <xsd/cxx/tree/parsing/float.hxx> #include <xsd/cxx/tree/parsing/double.hxx> #include <xsd/cxx/tree/parsing/decimal.hxx> namespace xml_schema { // anyType and anySimpleType. // typedef ::xsd::cxx::tree::type type; typedef ::xsd::cxx::tree::simple_type< char, type > simple_type; typedef ::xsd::cxx::tree::type container; // 8-bit // typedef signed char byte; typedef unsigned char unsigned_byte; // 16-bit // typedef short short_; typedef unsigned short unsigned_short; // 32-bit // typedef int int_; typedef unsigned int unsigned_int; // 64-bit // typedef long long long_; typedef unsigned long long unsigned_long; // Supposed to be arbitrary-length integral types. // typedef long long integer; typedef long long non_positive_integer; typedef unsigned long long non_negative_integer; typedef unsigned long long positive_integer; typedef long long negative_integer; // Boolean. // typedef bool boolean; // Floating-point types. // typedef float float_; typedef double double_; typedef double decimal; // String types. // typedef ::xsd::cxx::tree::string< char, simple_type > string; typedef ::xsd::cxx::tree::normalized_string< char, string > normalized_string; typedef ::xsd::cxx::tree::token< char, normalized_string > token; typedef ::xsd::cxx::tree::name< char, token > name; typedef ::xsd::cxx::tree::nmtoken< char, token > nmtoken; typedef ::xsd::cxx::tree::nmtokens< char, simple_type, nmtoken > nmtokens; typedef ::xsd::cxx::tree::ncname< char, name > ncname; typedef ::xsd::cxx::tree::language< char, token > language; // ID/IDREF. // typedef ::xsd::cxx::tree::id< char, ncname > id; typedef ::xsd::cxx::tree::idref< char, ncname, type > idref; typedef ::xsd::cxx::tree::idrefs< char, simple_type, idref > idrefs; // URI. // typedef ::xsd::cxx::tree::uri< char, simple_type > uri; // Qualified name. // typedef ::xsd::cxx::tree::qname< char, simple_type, uri, ncname > qname; // Binary. // typedef ::xsd::cxx::tree::buffer< char > buffer; typedef ::xsd::cxx::tree::base64_binary< char, simple_type > base64_binary; typedef ::xsd::cxx::tree::hex_binary< char, simple_type > hex_binary; // Date/time. // typedef ::xsd::cxx::tree::time_zone time_zone; typedef ::xsd::cxx::tree::date< char, simple_type > date; typedef ::xsd::cxx::tree::date_time< char, simple_type > date_time; typedef ::xsd::cxx::tree::duration< char, simple_type > duration; typedef ::xsd::cxx::tree::gday< char, simple_type > gday; typedef ::xsd::cxx::tree::gmonth< char, simple_type > gmonth; typedef ::xsd::cxx::tree::gmonth_day< char, simple_type > gmonth_day; typedef ::xsd::cxx::tree::gyear< char, simple_type > gyear; typedef ::xsd::cxx::tree::gyear_month< char, simple_type > gyear_month; typedef ::xsd::cxx::tree::time< char, simple_type > time; // Entity. // typedef ::xsd::cxx::tree::entity< char, ncname > entity; typedef ::xsd::cxx::tree::entities< char, simple_type, entity > entities; typedef ::xsd::cxx::tree::content_order content_order; // Flags and properties. // typedef ::xsd::cxx::tree::flags flags; typedef ::xsd::cxx::tree::properties< char > properties; // Parsing/serialization diagnostics. // typedef ::xsd::cxx::tree::severity severity; typedef ::xsd::cxx::tree::error< char > error; typedef ::xsd::cxx::tree::diagnostics< char > diagnostics; // Exceptions. // typedef ::xsd::cxx::tree::exception< char > exception; typedef ::xsd::cxx::tree::bounds< char > bounds; typedef ::xsd::cxx::tree::duplicate_id< char > duplicate_id; typedef ::xsd::cxx::tree::parsing< char > parsing; typedef ::xsd::cxx::tree::expected_element< char > expected_element; typedef ::xsd::cxx::tree::unexpected_element< char > unexpected_element; typedef ::xsd::cxx::tree::expected_attribute< char > expected_attribute; typedef ::xsd::cxx::tree::unexpected_enumerator< char > unexpected_enumerator; typedef ::xsd::cxx::tree::expected_text_content< char > expected_text_content; typedef ::xsd::cxx::tree::no_prefix_mapping< char > no_prefix_mapping; typedef ::xsd::cxx::tree::no_type_info< char > no_type_info; typedef ::xsd::cxx::tree::not_derived< char > not_derived; // Error handler callback interface. // typedef ::xsd::cxx::xml::error_handler< char > error_handler; // DOM interaction. // namespace dom { // Automatic pointer for DOMDocument. // using ::xsd::cxx::xml::dom::auto_ptr; #ifndef XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA #define XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA // DOM user data key for back pointers to tree nodes. // const XMLCh* const tree_node_key = ::xsd::cxx::tree::user_data_keys::node; #endif } } // Forward declarations. // namespace schema { namespace simxml { namespace MepModel { class SimFlowMover_ReturnFan_OnOff; } } } #include <memory> // ::std::auto_ptr #include <limits> // std::numeric_limits #include <algorithm> // std::binary_search #include <xsd/cxx/xml/char-utf8.hxx> #include <xsd/cxx/tree/exceptions.hxx> #include <xsd/cxx/tree/elements.hxx> #include <xsd/cxx/tree/containers.hxx> #include <xsd/cxx/tree/list.hxx> #include <xsd/cxx/xml/dom/parsing-header.hxx> #include "simflowmover_returnfan.hxx" namespace schema { namespace simxml { namespace MepModel { class SimFlowMover_ReturnFan_OnOff: public ::schema::simxml::MepModel::SimFlowMover_ReturnFan { public: // SimFlowMover_Name // typedef ::xml_schema::string SimFlowMover_Name_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_Name_type > SimFlowMover_Name_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_Name_type, char > SimFlowMover_Name_traits; const SimFlowMover_Name_optional& SimFlowMover_Name () const; SimFlowMover_Name_optional& SimFlowMover_Name (); void SimFlowMover_Name (const SimFlowMover_Name_type& x); void SimFlowMover_Name (const SimFlowMover_Name_optional& x); void SimFlowMover_Name (::std::auto_ptr< SimFlowMover_Name_type > p); // SimFlowMover_AvailSchedName // typedef ::xml_schema::idref SimFlowMover_AvailSchedName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AvailSchedName_type > SimFlowMover_AvailSchedName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AvailSchedName_type, char > SimFlowMover_AvailSchedName_traits; const SimFlowMover_AvailSchedName_optional& SimFlowMover_AvailSchedName () const; SimFlowMover_AvailSchedName_optional& SimFlowMover_AvailSchedName (); void SimFlowMover_AvailSchedName (const SimFlowMover_AvailSchedName_type& x); void SimFlowMover_AvailSchedName (const SimFlowMover_AvailSchedName_optional& x); void SimFlowMover_AvailSchedName (::std::auto_ptr< SimFlowMover_AvailSchedName_type > p); // SimFlowMover_FanTotalEff // typedef ::xml_schema::double_ SimFlowMover_FanTotalEff_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanTotalEff_type > SimFlowMover_FanTotalEff_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanTotalEff_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_FanTotalEff_traits; const SimFlowMover_FanTotalEff_optional& SimFlowMover_FanTotalEff () const; SimFlowMover_FanTotalEff_optional& SimFlowMover_FanTotalEff (); void SimFlowMover_FanTotalEff (const SimFlowMover_FanTotalEff_type& x); void SimFlowMover_FanTotalEff (const SimFlowMover_FanTotalEff_optional& x); // SimFlowMover_PresRise // typedef ::xml_schema::double_ SimFlowMover_PresRise_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_PresRise_type > SimFlowMover_PresRise_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_PresRise_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_PresRise_traits; const SimFlowMover_PresRise_optional& SimFlowMover_PresRise () const; SimFlowMover_PresRise_optional& SimFlowMover_PresRise (); void SimFlowMover_PresRise (const SimFlowMover_PresRise_type& x); void SimFlowMover_PresRise (const SimFlowMover_PresRise_optional& x); // SimFlowMover_MaxFlowRate // typedef ::xml_schema::double_ SimFlowMover_MaxFlowRate_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MaxFlowRate_type > SimFlowMover_MaxFlowRate_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MaxFlowRate_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MaxFlowRate_traits; const SimFlowMover_MaxFlowRate_optional& SimFlowMover_MaxFlowRate () const; SimFlowMover_MaxFlowRate_optional& SimFlowMover_MaxFlowRate (); void SimFlowMover_MaxFlowRate (const SimFlowMover_MaxFlowRate_type& x); void SimFlowMover_MaxFlowRate (const SimFlowMover_MaxFlowRate_optional& x); // SimFlowMover_MotorEff // typedef ::xml_schema::double_ SimFlowMover_MotorEff_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MotorEff_type > SimFlowMover_MotorEff_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MotorEff_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MotorEff_traits; const SimFlowMover_MotorEff_optional& SimFlowMover_MotorEff () const; SimFlowMover_MotorEff_optional& SimFlowMover_MotorEff (); void SimFlowMover_MotorEff (const SimFlowMover_MotorEff_type& x); void SimFlowMover_MotorEff (const SimFlowMover_MotorEff_optional& x); // SimFlowMover_MotorInAirstreamFrac // typedef ::xml_schema::double_ SimFlowMover_MotorInAirstreamFrac_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MotorInAirstreamFrac_type > SimFlowMover_MotorInAirstreamFrac_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MotorInAirstreamFrac_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MotorInAirstreamFrac_traits; const SimFlowMover_MotorInAirstreamFrac_optional& SimFlowMover_MotorInAirstreamFrac () const; SimFlowMover_MotorInAirstreamFrac_optional& SimFlowMover_MotorInAirstreamFrac (); void SimFlowMover_MotorInAirstreamFrac (const SimFlowMover_MotorInAirstreamFrac_type& x); void SimFlowMover_MotorInAirstreamFrac (const SimFlowMover_MotorInAirstreamFrac_optional& x); // SimFlowMover_AirInNodeName // typedef ::xml_schema::string SimFlowMover_AirInNodeName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AirInNodeName_type > SimFlowMover_AirInNodeName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AirInNodeName_type, char > SimFlowMover_AirInNodeName_traits; const SimFlowMover_AirInNodeName_optional& SimFlowMover_AirInNodeName () const; SimFlowMover_AirInNodeName_optional& SimFlowMover_AirInNodeName (); void SimFlowMover_AirInNodeName (const SimFlowMover_AirInNodeName_type& x); void SimFlowMover_AirInNodeName (const SimFlowMover_AirInNodeName_optional& x); void SimFlowMover_AirInNodeName (::std::auto_ptr< SimFlowMover_AirInNodeName_type > p); // SimFlowMover_AirOutNodeName // typedef ::xml_schema::string SimFlowMover_AirOutNodeName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AirOutNodeName_type > SimFlowMover_AirOutNodeName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AirOutNodeName_type, char > SimFlowMover_AirOutNodeName_traits; const SimFlowMover_AirOutNodeName_optional& SimFlowMover_AirOutNodeName () const; SimFlowMover_AirOutNodeName_optional& SimFlowMover_AirOutNodeName (); void SimFlowMover_AirOutNodeName (const SimFlowMover_AirOutNodeName_type& x); void SimFlowMover_AirOutNodeName (const SimFlowMover_AirOutNodeName_optional& x); void SimFlowMover_AirOutNodeName (::std::auto_ptr< SimFlowMover_AirOutNodeName_type > p); // SimFlowMover_EndUseSubCat // typedef ::xml_schema::string SimFlowMover_EndUseSubCat_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_EndUseSubCat_type > SimFlowMover_EndUseSubCat_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_EndUseSubCat_type, char > SimFlowMover_EndUseSubCat_traits; const SimFlowMover_EndUseSubCat_optional& SimFlowMover_EndUseSubCat () const; SimFlowMover_EndUseSubCat_optional& SimFlowMover_EndUseSubCat (); void SimFlowMover_EndUseSubCat (const SimFlowMover_EndUseSubCat_type& x); void SimFlowMover_EndUseSubCat (const SimFlowMover_EndUseSubCat_optional& x); void SimFlowMover_EndUseSubCat (::std::auto_ptr< SimFlowMover_EndUseSubCat_type > p); // SimFlowMover_FanPowerRatioFuncSpdRatioCurveName // typedef ::xml_schema::idref SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type > SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type, char > SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_traits; const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanPowerRatioFuncSpdRatioCurveName () const; SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type& x); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& x); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (::std::auto_ptr< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type > p); // SimFlowMover_FanEffRatioFuncSpdRatioCurveName // typedef ::xml_schema::idref SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type > SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type, char > SimFlowMover_FanEffRatioFuncSpdRatioCurveName_traits; const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanEffRatioFuncSpdRatioCurveName () const; SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanEffRatioFuncSpdRatioCurveName (); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type& x); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& x); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (::std::auto_ptr< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type > p); // AirflowNet_DistribComp_Fan_FanName // typedef ::xml_schema::idref AirflowNet_DistribComp_Fan_FanName_type; typedef ::xsd::cxx::tree::optional< AirflowNet_DistribComp_Fan_FanName_type > AirflowNet_DistribComp_Fan_FanName_optional; typedef ::xsd::cxx::tree::traits< AirflowNet_DistribComp_Fan_FanName_type, char > AirflowNet_DistribComp_Fan_FanName_traits; const AirflowNet_DistribComp_Fan_FanName_optional& AirflowNet_DistribComp_Fan_FanName () const; AirflowNet_DistribComp_Fan_FanName_optional& AirflowNet_DistribComp_Fan_FanName (); void AirflowNet_DistribComp_Fan_FanName (const AirflowNet_DistribComp_Fan_FanName_type& x); void AirflowNet_DistribComp_Fan_FanName (const AirflowNet_DistribComp_Fan_FanName_optional& x); void AirflowNet_DistribComp_Fan_FanName (::std::auto_ptr< AirflowNet_DistribComp_Fan_FanName_type > p); // AirflowNet_DistribComp_Fan_SupFanObjectType // typedef ::xml_schema::string AirflowNet_DistribComp_Fan_SupFanObjectType_type; typedef ::xsd::cxx::tree::optional< AirflowNet_DistribComp_Fan_SupFanObjectType_type > AirflowNet_DistribComp_Fan_SupFanObjectType_optional; typedef ::xsd::cxx::tree::traits< AirflowNet_DistribComp_Fan_SupFanObjectType_type, char > AirflowNet_DistribComp_Fan_SupFanObjectType_traits; const AirflowNet_DistribComp_Fan_SupFanObjectType_optional& AirflowNet_DistribComp_Fan_SupFanObjectType () const; AirflowNet_DistribComp_Fan_SupFanObjectType_optional& AirflowNet_DistribComp_Fan_SupFanObjectType (); void AirflowNet_DistribComp_Fan_SupFanObjectType (const AirflowNet_DistribComp_Fan_SupFanObjectType_type& x); void AirflowNet_DistribComp_Fan_SupFanObjectType (const AirflowNet_DistribComp_Fan_SupFanObjectType_optional& x); void AirflowNet_DistribComp_Fan_SupFanObjectType (::std::auto_ptr< AirflowNet_DistribComp_Fan_SupFanObjectType_type > p); // Constructors. // SimFlowMover_ReturnFan_OnOff (); SimFlowMover_ReturnFan_OnOff (const RefId_type&); SimFlowMover_ReturnFan_OnOff (const ::xercesc::DOMElement& e, ::xml_schema::flags f = 0, ::xml_schema::container* c = 0); SimFlowMover_ReturnFan_OnOff (const SimFlowMover_ReturnFan_OnOff& x, ::xml_schema::flags f = 0, ::xml_schema::container* c = 0); virtual SimFlowMover_ReturnFan_OnOff* _clone (::xml_schema::flags f = 0, ::xml_schema::container* c = 0) const; SimFlowMover_ReturnFan_OnOff& operator= (const SimFlowMover_ReturnFan_OnOff& x); virtual ~SimFlowMover_ReturnFan_OnOff (); // Implementation. // protected: void parse (::xsd::cxx::xml::dom::parser< char >&, ::xml_schema::flags); protected: SimFlowMover_Name_optional SimFlowMover_Name_; SimFlowMover_AvailSchedName_optional SimFlowMover_AvailSchedName_; SimFlowMover_FanTotalEff_optional SimFlowMover_FanTotalEff_; SimFlowMover_PresRise_optional SimFlowMover_PresRise_; SimFlowMover_MaxFlowRate_optional SimFlowMover_MaxFlowRate_; SimFlowMover_MotorEff_optional SimFlowMover_MotorEff_; SimFlowMover_MotorInAirstreamFrac_optional SimFlowMover_MotorInAirstreamFrac_; SimFlowMover_AirInNodeName_optional SimFlowMover_AirInNodeName_; SimFlowMover_AirOutNodeName_optional SimFlowMover_AirOutNodeName_; SimFlowMover_EndUseSubCat_optional SimFlowMover_EndUseSubCat_; SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_; SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional SimFlowMover_FanEffRatioFuncSpdRatioCurveName_; AirflowNet_DistribComp_Fan_FanName_optional AirflowNet_DistribComp_Fan_FanName_; AirflowNet_DistribComp_Fan_SupFanObjectType_optional AirflowNet_DistribComp_Fan_SupFanObjectType_; }; } } } #include <iosfwd> #include <xercesc/sax/InputSource.hpp> #include <xercesc/dom/DOMDocument.hpp> #include <xercesc/dom/DOMErrorHandler.hpp> namespace schema { namespace simxml { namespace MepModel { } } } #include <xsd/cxx/post.hxx> // Begin epilogue. // // // End epilogue. #endif // SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX
[ "cao@e3d.rwth-aachen.de" ]
cao@e3d.rwth-aachen.de
e98812c2eae621350c957b3ab5f0bc612f937ac0
0c142b680a84756175cad0822289ab65c8242a52
/LPD8806.cpp
ee0a2cb28dd0527bbdea0b34efe9a9adad8d029a
[]
no_license
LyleH/arduino_lights
4193302543f670c3cc348875cc1b642ca1fc6521
788bd448b976e592f69abe4cb4e5294392e199b4
refs/heads/master
2021-06-03T07:04:34.785678
2016-09-21T18:08:03
2016-09-21T18:08:03
68,844,326
1
0
null
null
null
null
UTF-8
C++
false
false
7,184
cpp
#include "LPD8806.h" #ifdef __AVR_ATtiny85__ // Teensy/Gemma-specific stuff for hardware-assisted SPI @ 2 MHz #if(F_CPU > 8000000L) #define SPI_DELAY asm volatile("rjmp .+0"); // Burn 2 cycles #elif(F_CPU > 4000000L) #define SPI_DELAY asm volatile("nop"); // Burn 1 cycle #else #define SPI_DELAY // Run max speed #endif #define SPIBIT \ USICR = ((1<<USIWM0)|(1<<USITC)); \ SPI_DELAY \ USICR = ((1<<USIWM0)|(1<<USITC)|(1<<USICLK)); \ SPI_DELAY static void spi_out(uint8_t n) { USIDR = n; SPIBIT SPIBIT SPIBIT SPIBIT SPIBIT SPIBIT SPIBIT SPIBIT } #else // All other boards support Full and Proper Hardware SPI #include <SPI.h> #define spi_out(n) (void)SPI.transfer(n) #endif /*****************************************************************************/ // Constructor for use with hardware SPI (specific clock/data pins): LPD8806::LPD8806(uint16_t n) { pixels = NULL; begun = false; updateLength(n); updatePins(); } // Constructor for use with arbitrary clock/data pins: LPD8806::LPD8806(uint16_t n, uint8_t dpin, uint8_t cpin) { pixels = NULL; begun = false; updateLength(n); updatePins(dpin, cpin); } // isn't known at compile-time; situations where program config might be // read from internal flash memory or an SD card, or arrive via serial // command. If using this constructor, MUST follow up with updateLength() // and updatePins() to establish the strip length and output pins! LPD8806::LPD8806(void) { numLEDs = numBytes = 0; pixels = NULL; begun = false; updatePins(); // Must assume hardware SPI until pins are set } // Activate hard/soft SPI as appropriate: void LPD8806::begin(void) { if(hardwareSPI == true) startSPI(); else startBitbang(); begun = true; } // Change pin assignments post-constructor, switching to hardware SPI: void LPD8806::updatePins(void) { pinMode(datapin, INPUT); // Restore data and clock pins to inputs pinMode(clkpin , INPUT); datapin = clkpin = 0; hardwareSPI = true; // If begin() was previously invoked, init the SPI hardware now: if(begun == true) startSPI(); // Otherwise, SPI is NOT initted until begin() is explicitly called. } // Change pin assignments post-constructor, using arbitrary pins: void LPD8806::updatePins(uint8_t dpin, uint8_t cpin) { if(begun == true) { // If begin() was previously invoked... // If previously using hardware SPI, turn that off: if(hardwareSPI) { #ifdef __AVR_ATtiny85__ DDRB &= ~(_BV(PORTB1) | _BV(PORTB2)); #else SPI.end(); #endif } else { pinMode(datapin, INPUT); // Restore prior data and clock pins to inputs pinMode(clkpin , INPUT); } } datapin = dpin; clkpin = cpin; #ifdef __AVR__ clkport = portOutputRegister(digitalPinToPort(cpin)); clkpinmask = digitalPinToBitMask(cpin); dataport = portOutputRegister(digitalPinToPort(dpin)); datapinmask = digitalPinToBitMask(dpin); #endif // If previously begun, enable 'soft' SPI outputs now if(begun == true) startBitbang(); hardwareSPI = false; } // Enable SPI hardware and set up protocol details: void LPD8806::startSPI(void) { #ifdef __AVR_ATtiny85__ PORTB &= ~(_BV(PORTB1) | _BV(PORTB2)); // Outputs DDRB |= _BV(PORTB1) | _BV(PORTB2); // DO (NOT MOSI) + SCK #else SPI.begin(); SPI.setBitOrder(MSBFIRST); SPI.setDataMode(SPI_MODE0); // SPI bus is run at 2MHz. Although the LPD8806 should, in theory, // work up to 20MHz. Experiment and see what you get. #if defined(__AVR__) || defined(CORE_TEENSY) SPI.setClockDivider(SPI_CLOCK_DIV8); #else SPI.setClockDivider((F_CPU + 1000000L) / 2000000L); #endif #endif // Issue initial latch/reset to strip: for(uint16_t i=((numLEDs+31)/32); i>0; i--) spi_out(0); } // Enable software SPI pins and issue initial latch: void LPD8806::startBitbang() { pinMode(datapin, OUTPUT); pinMode(clkpin , OUTPUT); #ifdef __AVR__ *dataport &= ~datapinmask; // Data is held low throughout (latch = 0) for(uint16_t i=((numLEDs+31)/32)*8; i>0; i--) { *clkport |= clkpinmask; *clkport &= ~clkpinmask; } #else digitalWrite(datapin, LOW); for(uint16_t i=((numLEDs+31)/32)*8; i>0; i--) { digitalWrite(clkpin, HIGH); digitalWrite(clkpin, LOW); } #endif } // Change strip length (see notes with empty constructor, above): void LPD8806::updateLength(uint16_t n) { uint8_t latchBytes; uint16_t dataBytes, totalBytes; numLEDs = numBytes = 0; if(pixels) free(pixels); // Free existing data (if any) dataBytes = n * 3; latchBytes = (n + 31) / 32; totalBytes = dataBytes + latchBytes; if((pixels = (uint8_t *)malloc(totalBytes))) { // Alloc new data numLEDs = n; numBytes = totalBytes; memset( pixels , 0x80, dataBytes); // Init to RGB 'off' state memset(&pixels[dataBytes], 0 , latchBytes); // Clear latch bytes } // 'begun' state does not change -- pins retain prior modes } uint16_t LPD8806::numPixels(void) { return numLEDs; } void LPD8806::show(void) { uint8_t *ptr = pixels; uint16_t i = numBytes; // This doesn't need to distinguish among individual pixel color // bytes vs. latch data, etc. Everything is laid out in one big // flat buffer and issued the same regardless of purpose. if(hardwareSPI) { while(i--) spi_out(*ptr++); } else { uint8_t p, bit; while(i--) { p = *ptr++; for(bit=0x80; bit; bit >>= 1) { #ifdef __AVR__ if(p & bit) *dataport |= datapinmask; else *dataport &= ~datapinmask; *clkport |= clkpinmask; *clkport &= ~clkpinmask; #else if(p & bit) digitalWrite(datapin, HIGH); else digitalWrite(datapin, LOW); digitalWrite(clkpin, HIGH); digitalWrite(clkpin, LOW); #endif } } } } // Convert separate R,G,B into combined 32-bit GRB color: uint32_t LPD8806::Color(byte r, byte g, byte b) { return ((uint32_t)(g | 0x80) << 16) | ((uint32_t)(r | 0x80) << 8) | b | 0x80 ; } // Set pixel color from separate 7-bit R, G, B components: void LPD8806::setPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b) { if(n < numLEDs) { // Arrays are 0-indexed, thus NOT '<=' uint8_t *p = &pixels[n * 3]; *p++ = g | 0x80; // Strip color order is GRB, *p++ = r | 0x80; // not the more common RGB, *p++ = b | 0x80; // so the order here is intentional; don't "fix" } } // Set pixel color from 'packed' 32-bit GRB (not RGB) value: void LPD8806::setPixelColor(uint16_t n, uint32_t c) { if(n < numLEDs) { // Arrays are 0-indexed, thus NOT '<=' uint8_t *p = &pixels[n * 3]; *p++ = (c >> 16) | 0x80; *p++ = (c >> 8) | 0x80; *p++ = c | 0x80; } } // Query color from previously-set pixel (returns packed 32-bit GRB value) uint32_t LPD8806::getPixelColor(uint16_t n) { if(n < numLEDs) { uint16_t ofs = n * 3; return ((uint32_t)(pixels[ofs ] & 0x7f) << 16) | ((uint32_t)(pixels[ofs + 1] & 0x7f) << 8) | (uint32_t)(pixels[ofs + 2] & 0x7f); } return 0; // Pixel # is out of bounds }
[ "lyle.henkeman01@gmail.com" ]
lyle.henkeman01@gmail.com
1e97963aa03e5d766e3c2e1cd1033da32f2556bf
d3fcfbaa0e200f49cefe4b77388292402e428eb3
/Toph/Little Subarray Sum.cpp
cac1da8cf9d7311cac0732721a15f616ead334fa
[]
no_license
edge555/Online-Judge-Solves
c3136b19dc2243e9676b57132d4162c554acaefb
452a85ea69d89a3691a04b5dfb7d95d1996b736d
refs/heads/master
2023-08-22T03:23:11.263266
2023-08-21T07:22:33
2023-08-21T07:22:33
145,904,907
14
3
null
null
null
null
UTF-8
C++
false
false
1,407
cpp
#include <bits/stdc++.h> #define FAST ios_base::sync_with_stdio(false); cin.tie(NULL) #define pf printf #define sc scanf #define sf(num) scanf("%d",&num) #define sff(num1,num2) scanf("%d %d",&num1,&num2) #define sfff(num1,num2,num3) scanf("%d %d %d",&num1,&num2,&num3); #define sl(num) scanf("%lld",&num) #define sll(num1,num2) scanf("%lld %lld",&num1,&num2) #define slll(num1,num2,num3) scanf("%lld %lld %lld",&num1,&num2,&num3); #define rep(i,n) for(i=1;i<=n;i++) #define rep0(i,n) for(i=0;i<n;i++) #define reps(i,a,n) for(i=a;i<=n;i++) #define pb push_back #define mpp make_pair #define MOD 1000000007 #define fi first #define se second #define N 100005 #define mem(ara,n) memset(ara,n,sizeof(ara)) #define memb(ara) memset(ara,false,sizeof(ara)) #define all(x) (x).begin(),(x).end() #define vi vector<int> #define pi pair<int,int> #define pii pair<pair<int,int>,pair<int,int> > #define db(x) cout<<#x<<" :: "<<x<<"\n"; #define dbb(x,y) cout<<#x<<" :: "<<x<<"\t"<<#y<<" :: "<<y<<"\n"; #define fr freopen("input.txt","r",stdin); #define fw freopen("output.txt","w",stdout); #define TIME cerr<<"Time : "<<(double)clock()/(double)CLOCKS_PER_SEC<<"s\n"; typedef long long int ll; using namespace std; int main() { int i,n,k,a,b,sum=0; sfff(n,a,b); rep0(i,n) { sf(k); if(i>=a && i<=b) sum+=k; } pf("%d",sum); }
[ "noreply@github.com" ]
edge555.noreply@github.com
e67de3627a3b4812d90c1e8c9686c79431c8ac00
21c3202b44ed91bfe46adbecf4692ab3e0252a2e
/Project2_Baseball_sprint3/tripplannerwindow.cpp
b68de0871d4a91533b975182a0d9042968553f5c
[]
no_license
afrederick89/Projects
3c2d7cbbd8973fc808c9cb371f23ca9929995ff3
7798e8ee07e836131a99e9022e527a0750a8f877
refs/heads/master
2022-03-10T17:25:50.913005
2019-11-02T00:44:02
2019-11-02T00:44:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
25,881
cpp
#include "tripplannerwindow.h" #include "ui_tripplannerwindow.h" #include <QAbstractItemView> #include <QMessageBox> #include "draggablelistmodel.h" #include <QQueue> #include "mainmenu.h" #include <QRegExp> TripPlannerWindow::TripPlannerWindow(QWidget *parent) : QWidget(parent), ui(new Ui::TripPlannerWindow) { ui->setupUi(this); ui->stackedWidget->setStyleSheet("background:url(\":/rc/bkgd.jpg\");"); dijkstrasShortestPath = false; mostEfficientlyVisitAll = false; ui->visitAllTeamsMostEfficiently->hide(); QList<Team> teams = SQLManager::getInstance()->getAllTeams(); // Dijkstras shortest path trip totalDistanceTraveled = 0; populateGraph(); for (int i=0; i < teams.size(); i++) { ui->startingStadiumComboBox->addItem(teams.at(i).teamName, teams.at(i).teamName); } ui->souvenirsListView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui->shoppingCartListView->setModel(new QStringListModel(this)); ui->shoppingCartListView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui->shoppingCartListView->hide(); ui->shoppingCartLabel->hide(); this->teams = teams; // User ordered trip: QStringList teamList; DraggableListModel* model = new DraggableListModel; // subclassed QStringListModel for drag-drop feature items for (auto team : teams) { ui->teamListComboBox->addItem(team.teamName); } ui->orderableListView->setModel(model); ui->orderableListView->setDragDropMode(QAbstractItemView::InternalMove); ui->orderableListView->setEditTriggers(QAbstractItemView::NoEditTriggers); } TripPlannerWindow::~TripPlannerWindow() { delete ui; } bool TripPlannerWindow::stadiumListContainsStadium(Team searchStadium, QList<Team> list) { bool contains = false; // Determines if list contains searchStadium for (auto stadium : list) { if (stadium.stadiumName == searchStadium.stadiumName) { contains = true; } } return contains; } void TripPlannerWindow::populateGraph() { SQLManager* sqlManager = SQLManager::getInstance(); QList<Team> teams = sqlManager->getAllTeams(); QList<Vertex*> vertexList; // First, allocate memory for all vertices in database, with empty edge lists for now for (auto team : teams) { Vertex* newVertex = new Vertex(team, QList<Edge*>()); vertexList.push_back(newVertex); } // NEXT, loop through the list of vertices that we JUST populated, and see if it has any adjacent teams // We have to do it this way so that the pointers in each stadium's edgelist is the same address location as each vertex pointer in vertexList for (int i=0; i < vertexList.size(); i++) { Vertex* currVertex = vertexList.at(i); QList<Team> trulyAdjacentStadiums = sqlManager->getAdjacentStadiums(currVertex); QList<Edge*> edgeList; for (auto potentiallyAdjacentStadium : vertexList) { Team stadium = potentiallyAdjacentStadium->data; if (stadiumListContainsStadium(stadium, trulyAdjacentStadiums)) { int weightBetween = sqlManager->getWeightBetween(potentiallyAdjacentStadium, currVertex); if (weightBetween == -1) { qDebug() << "Error encountered, tripplannerwindow::populateGraph"; } Edge* newEdge = new Edge(potentiallyAdjacentStadium, weightBetween); edgeList.push_back(newEdge); // qDebug() << currVertex->data.stadiumName << " has edge to " << newEdge->destination->data.stadiumName << " with weight << " << weightBetween; } } currVertex->edges = edgeList; } Graph* newGraph = new Graph(vertexList); this->graph = newGraph; } void TripPlannerWindow::on_startingStadiumComboBox_currentIndexChanged(int index) { QList<Team> teams = SQLManager::getInstance()->getAllTeams(); for (int i=0; i < teams.size(); i++) { ui->destinationStadiumComboBox->addItem(teams.at(i).teamName, teams.at(i).teamName); } this->originStadium = SQLManager::getInstance()->getTeamByName(teams.at(index).teamName); } void TripPlannerWindow::on_mostEfficientTripButton_clicked() { dijkstrasShortestPath = true; // ui->destinationTeamLabel->setText("Press the \"Take Trip\" button to take the shortest path from " + originStadium.teamName + " to " + destination->data.teamName); ui->stackedWidget->setCurrentIndex(1); } // NOTE: The origin has to be the same origin that was used in the previously completed dijkstra's traversal void TripPlannerWindow::determineDijkstraPath(Vertex* origin, Vertex* destination, QList<Vertex*>& path) { if (origin == destination) { return; } if (destination->parent != NULL && origin != destination) { path.push_back(destination); determineDijkstraPath(origin, destination->parent, path); } } void TripPlannerWindow::populateStadiumInfo(Vertex* vertex) { QStringList souvenirsList; QStringListModel* souvenirListModel = new QStringListModel(this); QList<Souvenir> souvenirs = SQLManager::getInstance()->getSouvenirsByStadium(vertex->data.stadiumName); ui->currentTeamLabel->setText("Currently visiting: " + vertex->data.teamName); ui->currentStadiumLabel->setText("Stadium name: " + vertex->data.stadiumName); for (auto souvenir : souvenirs) { souvenirsList << "Item name: " + souvenir.itemName + "\nItem Price: " + QString::number(souvenir.itemCost, 'f', 2) + "\n\n"; } souvenirListModel->setStringList(souvenirsList); ui->souvenirsListView->setModel(souvenirListModel); this->currentTeamSouvenirList = souvenirs; } void TripPlannerWindow::on_beginTripButton_clicked() { QStringList teamNameList; // Get all of the vertices (stadiums) in the map QList<Vertex*> vertexList = this->graph->GetAllVertices(); QMap<Vertex*, int> distances; QString originTeamName = ui->startingStadiumComboBox->currentData().toString(); QString destinationTeamName = ui->destinationStadiumComboBox->currentData().toString(); Vertex* origin = graph->getVertexByTeamName(originTeamName); this->destination = graph->getVertexByTeamName(destinationTeamName); this->graph->Dijkstras(origin, distances); qDebug() << "Calculating shortest path from " << origin->data.teamName << " to " << destination->data.teamName; QList<Vertex*> path; for (auto vertex : vertexList) { if (vertex == destination) { determineDijkstraPath(origin, destination, path); } } QString pathString; // unelegant reverse loop lol for (int i = (path.size() - 1); i >= 0; i--) { this->tripPathQueue.push_back(path[i]->parent); } this->tripPathQueue.push_back(destination); for (auto path : tripPathQueue) { qDebug() << "Pit stop: " << path->data.stadiumName; } this->tripPathQueue = tripPathQueue; ui->stackedWidget->setCurrentIndex(2); // begins the trip at the origin populateStadiumInfo(this->tripPathQueue.front()); ui->totalDistanceTraveled->hide(); ui->totalDistanceTraveled->setText("Total Distance Traveled: " + QString::number(distances[destination]) + " mi"); } void TripPlannerWindow::updateShoppingCart(CartItem newCartItem) { QAbstractItemModel* model = ui->shoppingCartListView->model(); QStringList list = static_cast<QStringListModel*>(model)->stringList(); list << "► " + newCartItem.item.itemName + " | $" + QString::number(newCartItem.item.itemCost, 'f', 2) + "\n\n"; static_cast<QStringListModel*>(model)->setStringList(list); ui->shoppingCartListView->setModel(static_cast<QStringListModel*>(model)); } void TripPlannerWindow::on_souvenirsListView_doubleClicked(const QModelIndex &index) { // Show the shopping cart list view if this is the first item added to the cart if (shoppingCart.isEmpty()) { ui->shoppingCartListView->show(); ui->shoppingCartLabel->show(); } Team stadiumPurchasedAt = SQLManager::getInstance()->getTeamByName(this->currentTeamSouvenirList[index.row()].stadiumName); Souvenir souvenirPurchased = this->currentTeamSouvenirList.at(index.row()); CartItem newCartItem(souvenirPurchased, stadiumPurchasedAt); shoppingCart.push_back(newCartItem); updateShoppingCart(newCartItem); } void TripPlannerWindow::on_shoppingCartListView_doubleClicked(const QModelIndex &index) { QMessageBox::StandardButton reply; reply = QMessageBox::question(this, "", "Are you sure you want to remove " + shoppingCart.at(index.row()).item.itemName + " from your cart?", QMessageBox::Yes|QMessageBox::No); if (reply == QMessageBox::Yes) { this->shoppingCart.at(index.row()); QAbstractItemModel* model = ui->shoppingCartListView->model(); model->removeRow(index.row()); ui->shoppingCartListView->setModel(static_cast<QStringListModel*>(model)); } } void TripPlannerWindow::on_takeTripButton_clicked() { // END OF TRIP if (ui->takeTripButton->text() == "End Trip") { if (!this->shoppingCart.isEmpty()) { // TO DO: Souvenir order list and summary page QList<CartItem> finalShoppingCart; QStringListModel* model = new QStringListModel; model = static_cast<QStringListModel*>(ui->shoppingCartListView->model()); QStringList list = model->stringList(); QStringList formattedSummaryPage; Team currentTeam = shoppingCart.at(0).stadiumPurchasedAt; formattedSummaryPage << currentTeam.teamName + " @ " + currentTeam.stadiumName + "\n" "----------------------------------\n"; double stadiumGrandTotal = 0; double grandTotal = 0; for (auto cartItem : shoppingCart) { if (cartItem.stadiumPurchasedAt.stadiumName != currentTeam.stadiumName) { currentTeam = cartItem.stadiumPurchasedAt; formattedSummaryPage << "Total: $" + QString::number(stadiumGrandTotal, 'f', 2) + "\n\n"; stadiumGrandTotal = 0; formattedSummaryPage << cartItem.stadiumPurchasedAt.teamName + " @ " + cartItem.stadiumPurchasedAt.stadiumName + "\n" "----------------------------------\n"; } stadiumGrandTotal += cartItem.item.itemCost; grandTotal += cartItem.item.itemCost; formattedSummaryPage << "x1 " + cartItem.item.itemName + " - $" + QString::number(cartItem.item.itemCost) + "\n"; } formattedSummaryPage << "Total: $" + QString::number(stadiumGrandTotal, 'f', 2) + ""; formattedSummaryPage << "---------------------\n\n"; formattedSummaryPage << "Grand total: $" + QString::number(grandTotal, 'f', 2); ui->summaryListView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui->stackedWidget->setCurrentIndex(4); QStringListModel* summaryModel = new QStringListModel; summaryModel->setStringList(formattedSummaryPage); ui->summaryListView->setModel(summaryModel); } else { ui->stackedWidget->setCurrentIndex(4); ui->tripSummaryLabel->setText("No items purchased!"); ui->summaryListView->hide(); } } // DIJKSTRAS SHORTEST PATH FROM A --> B if (dijkstrasShortestPath) { // traverse to destination using shortest path generated from dijkstras algorithm populateStadiumInfo(tripPathQueue.back()); ui->destinationTeamLabel->hide(); // set the distance label to be visible ui->totalDistanceTraveled->show(); ui->takeTripButton->setText("End Trip"); } else { // custom trip qDebug() << "ordered teams to visit: " << orderedTeamsToVisit.size(); if (!orderedTeamsToVisit.isEmpty()) { qDebug() << "size of orderedlist: " << orderedTeamsToVisit.size(); QString nextStadiumName = this->orderedTeamsToVisit.front().stadiumName; Vertex* nextVertex = this->graph->getVertexByStadiumName(nextStadiumName); if (orderedTeamsToVisit.size() == 1) { ui->takeTripButton->setText("End Trip"); } populateCustomTripIteration(orderedTeamsToVisit.front()); } } } void TripPlannerWindow::on_customTripButton_clicked() { ui->visitAllTeamsMostEfficiently->setText("Add all teams"); ui->visitAllTeamsMostEfficiently->show(); ui->stackedWidget->setCurrentIndex(3); } bool TripPlannerWindow::teamsToVisitListContains(Team teamToAdd) { bool contains = false; for (auto team : teamsToVisit) { if (team.teamName == teamToAdd.teamName) { contains = true; } } return contains; } void TripPlannerWindow::on_addTeamButton_clicked() { Team teamToAdd = this->teams.at(ui->teamListComboBox->currentIndex()); if (!teamsToVisitListContains(teamToAdd)) { DraggableListModel* model = static_cast<DraggableListModel*>(ui->orderableListView->model()); QStringList teamsToVisitList = model->stringList(); // Append the new team to the listView teamsToVisitList << teamToAdd.teamName + " at " + teamToAdd.stadiumName + "\n\n"; model->setStringList(teamsToVisitList); ui->orderableListView->setModel(model); this->teamsToVisit.push_back(teamToAdd); } else { QMessageBox::StandardButton reply; reply = QMessageBox::critical(this, "", "There is already a team with that name on your list!", QMessageBox::Ok); } } void TripPlannerWindow::populateCustomTripIteration(Team teamToVisit) { ui->currentTeamLabel->setText("Currently visiting: " + teamToVisit.teamName); ui->currentStadiumLabel->setText("Stadium name: " + teamToVisit.stadiumName); // Find the fastest route from the current team to the next team on the user's ordered list of teams to visit... QStringList souvenirsList; QStringListModel* souvenirListModel = new QStringListModel(this); QList<Souvenir> souvenirs = SQLManager::getInstance()->getSouvenirsByStadium(teamToVisit.stadiumName); for (auto souvenir : souvenirs) { souvenirsList << "Item name: " + souvenir.itemName + "\nItem Price: " + QString::number(souvenir.itemCost, 'f', 2) + "\n\n"; } souvenirListModel->setStringList(souvenirsList); ui->souvenirsListView->setModel(souvenirListModel); this->currentTeamSouvenirList = souvenirs; ui->stackedWidget->setCurrentIndex(2); totalDistanceTraveled += aggregatedTripDistances.front(); ui->totalDistanceTraveled->setText("Distance traveled: " + QString::number(totalDistanceTraveled) + " miles"); qDebug() << "Vertex: " << orderedTeamsToVisit.front().teamName; orderedTeamsToVisit.pop_front(); aggregatedTripDistances.pop_front(); } void TripPlannerWindow::on_beginCustomTripButton_clicked() { // Loads the teams and the order of the teams that the user has added to their list into QList for trip traversal DraggableListModel* model = static_cast<DraggableListModel*> (ui->orderableListView->model()); QList<Team> orderedTeamsToVisit; QString sep(" at "); if (model->rowCount() > 1) { if (!mostEfficientlyVisitAll) { for (auto listItem : model->stringList()) { QStringList parts = listItem.split(" at ", QString::SkipEmptyParts); QString teamName = parts.at(0); qDebug() << parts[0]; Team teamToVisit = SQLManager::getInstance()->getStadiumByName(teamName); orderedTeamsToVisit.push_back(teamToVisit); qDebug() << "New ordered team: " << orderedTeamsToVisit.back().stadiumName; } this->orderedTeamsToVisit = orderedTeamsToVisit; int aggregatedTripDistance = 0; aggregatedTripDistances.push_back(0); for (int i=0; i < (orderedTeamsToVisit.size() - 1); i++) { Vertex* origin = graph->getVertexByTeamName(orderedTeamsToVisit.at(i).teamName); Vertex* destination = graph->getVertexByTeamName(orderedTeamsToVisit.at(i+1).teamName); QMap<Vertex*, int> distances; this->graph->Dijkstras(origin, distances); qDebug() << "A[" << i << "]: " << QString::number(aggregatedTripDistance + distances[destination]); QList<Vertex*> path; determineDijkstraPath(origin, destination, path); for (auto vertex : path) { qDebug() << "Pit stop: " << vertex->data.stadiumName; } this->aggregatedTripDistances.push_back(aggregatedTripDistance + distances[destination]); } } else { for (auto listItem : model->stringList()) { QStringList parts = listItem.split(" at ", QString::SkipEmptyParts); QString teamName = parts.at(0); qDebug() << parts[0]; Team teamToVisit = SQLManager::getInstance()->getStadiumByName(teamName); orderedTeamsToVisit.push_back(teamToVisit); } this->orderedTeamsToVisit = orderedTeamsToVisit; // begin da recursion QList<Vertex*> visitedList; visitedList.push_back(graph->getVertexByTeamName(orderedTeamsToVisit.front().teamName)); VisitCustomMostEfficiently(graph->getVertexByTeamName(orderedTeamsToVisit.front().teamName), visitedList, 0); this->orderedTeamsToVisit.clear(); // re order the list in most efficient way possible from dijkstras recursion for (auto vertex : visitedList) { this->orderedTeamsToVisit.push_back(vertex->data); } } QStringList souvenirsList; QStringListModel* souvenirListModel = new QStringListModel(this); QList<Souvenir> souvenirs = SQLManager::getInstance()->getSouvenirsByStadium(orderedTeamsToVisit.front().stadiumName); for (auto souvenir : souvenirs) { souvenirsList << "Item name: " + souvenir.itemName + "\nItem Price: " + QString::number(souvenir.itemCost, 'f', 2) + "\n\n"; } souvenirListModel->setStringList(souvenirsList); ui->souvenirsListView->setModel(souvenirListModel); this->currentTeamSouvenirList = souvenirs; on_takeTripButton_clicked(); } else { QMessageBox::StandardButton reply; reply = QMessageBox::critical(this, "", "You need to add at least two teams to the list!", QMessageBox::Ok); } } void TripPlannerWindow::on_backButton2_clicked() { MainMenu* newMM = new MainMenu; newMM->show(); this->close(); } void TripPlannerWindow::on_backButton_clicked() { MainMenu* newMM = new MainMenu; newMM->show(); this->close(); } void TripPlannerWindow::on_pushButton_clicked() { MainMenu* newMM = new MainMenu; newMM->show(); this->close(); } void TripPlannerWindow::on_abortButton_clicked() { MainMenu* newMM = new MainMenu; newMM->show(); this->close(); } void TripPlannerWindow::on_backButton_2_clicked() { MainMenu* NewMM = new MainMenu; this->close(); NewMM->show(); } bool TripPlannerWindow::visitedListContains(QList<Vertex*> visitedList, Vertex* vertexSearch) { bool contains = false; for (auto vertex : visitedList) { if (vertex->data.stadiumName == vertexSearch->data.stadiumName) { contains = true; } } return contains; } bool TripPlannerWindow::orderedListContains(QList<Team> list, Team searchTeam) { bool contains = false; for (auto team : list) { if (searchTeam.stadiumName == team.stadiumName) { contains = true; } } return contains; } void TripPlannerWindow::VisitCustomMostEfficiently(Vertex* currVertex, QList<Vertex*>& visitedList, int aggregatedDistanceTraveled) { static QList<int> aggregatedDistances; if (visitedList.size() == orderedTeamsToVisit.size()) { // we done this->aggregatedTripDistances = aggregatedDistances; return; } if (aggregatedDistances.size() == 0) { aggregatedDistances.push_back(0); } QMap<Vertex*, int> distances; this->graph->Dijkstras(currVertex, distances); QList<int> distanceInts = distances.values(); std::sort(distanceInts.begin(), distanceInts.end()); distanceInts.pop_front(); // the front is always going to be zero (distance from a vertex to itself is always the shortest path) Vertex* nextClosest = NULL; while (!orderedListContains(orderedTeamsToVisit, distances.key(distanceInts.front())->data) || visitedListContains(visitedList, distances.key(distanceInts.front()))) { distanceInts.pop_front(); } nextClosest = distances.key(distanceInts.front()); visitedList.push_back(nextClosest); aggregatedDistances.push_back(distanceInts.front()); // accumulate the total distance traveled aggregatedDistanceTraveled += distanceInts.front(); VisitCustomMostEfficiently(nextClosest, visitedList, (aggregatedDistanceTraveled + distanceInts.front())); qDebug() << "Next closest, specified stadium to visit from " << currVertex->data.stadiumName << " is " << nextClosest->data.stadiumName; } void TripPlannerWindow::VisitAllMostEfficiently(Vertex* currVertex, QList<Vertex*>& visitedList, int aggregatedDistanceTraveled, int backTrackNum) { static QList<int> aggregatedDistances; if (aggregatedDistances.size() == 0) { aggregatedDistances.push_back(0); } if (visitedList.size() == graph->GetAllVertices().size()) { // we done this->aggregatedTripDistances = aggregatedDistances; return; } qDebug() << "Visited list: " << visitedList.size(); Vertex* nextClosest = NULL; int shortestWeight = 999999; for (auto edge : currVertex->edges) { if (edge->weight < shortestWeight && !visitedListContains(visitedList, edge->destination)) { shortestWeight = edge->weight; nextClosest = edge->destination; } } if (nextClosest == NULL) { // gotta back track until we have visited all stadiums ++backTrackNum; qDebug() << "Back tracking to " << visitedList.at(visitedList.size() - backTrackNum)->data.stadiumName; VisitAllMostEfficiently(visitedList.at(visitedList.size() - backTrackNum), visitedList, aggregatedDistanceTraveled, backTrackNum); } else { visitedList.push_back(nextClosest); aggregatedDistances.push_back(shortestWeight); // accumulate the total distance traveled aggregatedDistanceTraveled += shortestWeight; qDebug() << "\nVisiting next closest neighbor: " << nextClosest->data.stadiumName << " with weight " << shortestWeight; qDebug() << "Total distance now traveled: " << aggregatedDistances.last(); qDebug() << "\n"; VisitAllMostEfficiently(nextClosest, visitedList, aggregatedDistanceTraveled); } } void TripPlannerWindow::populateMostEfficientFromComerica(Team teamToVisit) { ui->currentTeamLabel->setText("Currently visiting: " + teamToVisit.teamName); ui->currentStadiumLabel->setText("Stadium name: " + teamToVisit.stadiumName); // Find the fastest route from the current team to the next team on the user's ordered list of teams to visit... QStringList souvenirsList; QStringListModel* souvenirListModel = new QStringListModel(this); QList<Souvenir> souvenirs = SQLManager::getInstance()->getSouvenirsByStadium(teamToVisit.stadiumName); for (auto souvenir : souvenirs) { souvenirsList << "Item name: " + souvenir.itemName + "\nItem Price: " + QString::number(souvenir.itemCost, 'f', 2) + "\n\n"; } souvenirListModel->setStringList(souvenirsList); ui->souvenirsListView->setModel(souvenirListModel); this->currentTeamSouvenirList = souvenirs; ui->stackedWidget->setCurrentIndex(2); totalDistanceTraveled += aggregatedTripDistances.front(); ui->totalDistanceTraveled->setText("Distance traveled: " + QString::number(totalDistanceTraveled) + " miles"); orderedTeamsToVisit.pop_front(); aggregatedTripDistances.pop_front(); } void TripPlannerWindow::on_visitAllTeamsMostEfficiently_clicked() { // if (mostEfficientlyVisitAll) { for (auto vertex : this->graph->GetAllVertices()) { if (!teamsToVisitListContains(vertex->data)) { DraggableListModel* model = static_cast<DraggableListModel*>(ui->orderableListView->model()); QStringList list = model->stringList(); // Append the new team to the listView list << vertex->data.teamName + " at " + vertex->data.stadiumName + "\n\n"; model->setStringList(list); ui->orderableListView->setModel(model); this->teamsToVisit.push_back(vertex->data); } } // } } void TripPlannerWindow::on_customMostEfficientTripButton_clicked() { ui->stackedWidget->setCurrentIndex(3); ui->visitAllTeamsMostEfficiently->show(); this->mostEfficientlyVisitAll = true; }
[ "flocka89@users.noreply.github.com" ]
flocka89@users.noreply.github.com
0c62a6cae0f9a506e4cad4a9d9f60f7b21887e60
bf77f38c1d42ce97902bd5dc0e498d7d89ab4705
/byalib/graph/二分木の最小共通祖先-LCA.cpp
6bcf40d21e43fb3baeab95b278a8ea0b5b5bf6a7
[]
no_license
byam/algorithms
6c570c8d00ad5457346d6851f634d962b2ef744e
f3db7230655c945412774505254e2be4cbf23074
refs/heads/master
2022-05-12T16:24:39.831337
2022-04-08T13:59:07
2022-04-08T13:59:07
68,830,972
3
0
null
null
null
null
UTF-8
C++
false
false
3,040
cpp
#include <bits/stdc++.h> using namespace std; /* LCA(G, root): Lowest Common Ancestor を求める構造体 - 木 G に対する - 根を root とする 計算時間 - 前処理:𝑂(𝑁log𝐾) 時間, 𝑂(𝑁log𝐾) 空間 - クエリ:𝑂(log𝐾) I/F - int query(int u, int v): LCA を返す - get_dist(int u, int v): LCA で 任意の2頂点間の距離が分かる - is_on_path(int u, int v, int a): パス上にある頂点があるか分かる ref: https://algo-logic.info/lca/ */ using Graph = vector<vector<int>>; struct LCA { vector<vector<int>> parent; // parent[k][u]:= u の 2^k 先の親 vector<int> dist; // root からの距離 LCA(const Graph &G, int root = 0) { init(G, root); } // 初期化 void init(const Graph &G, int root = 0) { int V = G.size(); int K = 1; while ((1 << K) < V) K++; parent.assign(K, vector<int>(V, -1)); dist.assign(V, -1); dfs(G, root, -1, 0); for (int k = 0; k + 1 < K; k++) { for (int v = 0; v < V; v++) { if (parent[k][v] < 0) { parent[k + 1][v] = -1; } else { parent[k + 1][v] = parent[k][parent[k][v]]; } } } } // 根からの距離と1つ先の頂点を求める void dfs(const Graph &G, int v, int p, int d) { parent[0][v] = p; dist[v] = d; for (auto e : G[v]) { if (e != p) dfs(G, e, v, d + 1); } } int query(int u, int v) { if (dist[u] < dist[v]) swap(u, v); // u の方が深いとする int K = parent.size(); // LCA までの距離を同じにする for (int k = 0; k < K; k++) { if ((dist[u] - dist[v]) >> k & 1) { u = parent[k][u]; } } // 二分探索で LCA を求める if (u == v) return u; for (int k = K - 1; k >= 0; k--) { if (parent[k][u] != parent[k][v]) { u = parent[k][u]; v = parent[k][v]; } } return parent[0][u]; } // LCA で 任意の2頂点間の距離が分かる int get_dist(int u, int v) { return dist[u] + dist[v] - 2 * dist[query(u, v)]; } // パス上にある頂点があるか分かる bool is_on_path(int u, int v, int a) { return get_dist(u, a) + get_dist(a, v) == get_dist(u, v); } }; int main() { // グラフ入力 int n; cin >> n; Graph g(n); for (int i = 0; i < n - 1; i++) { int a, b; cin >> a >> b; a--; b--; g[a].push_back(b); g[b].push_back(a); } // LCA 作成 LCA lca(g, 0); // クエリ int q; cin >> q; for (int i = 0; i < q; i++) { int a, b; cin >> a, b; a--; b--; // 閉路サイズ cout << lca.get_dist(a, b) + 1 << endl; } return 0; }
[ "bya_ganbaatar@r.recruit.co.jp" ]
bya_ganbaatar@r.recruit.co.jp
0f44c29cca394bddd03be38cf04bbd3e900721ec
714cddadf394f61585afb527e5f389a4c8499c15
/include/DPLalphadecay.hh
88876ec435489501d6f417de52e9d29bff3a6596
[]
no_license
alourei/ProtonDetector2
6da88b327f3e040a341f4a9b0f20a7de136aa622
69eec1396a779edb5245f8db587eda982dcc1d05
refs/heads/main
2023-02-05T18:53:31.743943
2020-12-14T21:21:51
2020-12-14T21:21:51
321,473,261
0
0
null
null
null
null
UTF-8
C++
false
false
4,422
hh
/* * DPL1pdecay.hh * * Created on: Feb 19, 2014 * Author: perezlou */ #ifndef DPLALPHADECAY_HH_ #define DPLALPHADECAY_HH_ #include <G4VDiscreteProcess.hh> #include "globals.hh" #include "G4ios.hh" #include "Randomize.hh" #include "G4Track.hh" #include "G4Step.hh" #include "G4ParticleTypes.hh" #include "G4ParticleTable.hh" #include "G4ParticleDefinition.hh" #include "G4DynamicParticle.hh" #include "G4ThreeVector.hh" #include "G4LorentzVector.hh" #include "G4VParticleChange.hh" #include "G4Material.hh" #include "G4UnitsTable.hh" class DPL_alphaDecay: public G4VDiscreteProcess { public: DPL_alphaDecay(const G4String& processName="DPL_alphaDecay"); ~DPL_alphaDecay(); // These are the functions in the Process: Derived from G4VDiscreteProcess.hh G4bool IsApplicable(const G4ParticleDefinition& aParticle); // Decides if process applicable or not. Eventually make only valid for Neutrons // at some energy. G4double GetMeanFreePath(const G4Track& aTrack, G4double previousStepSize, G4ForceCondition* condition); // Overrides function in base class. Need to figure out how it plugs in! // Says returns MeanFreePath for a particle in a given material! // Invoked by Process Manager (Therefore necessary to get Process going!) G4VParticleChange* PostStepDoIt(const G4Track &aTrack, const G4Step &aStep); // This is the important function where you define the process // Returns steps, track and secondary particles // In this test, changes direction of neutron. // Invoked by Process Manager (Therefore necessary to get Process going!) void SetParentNucleus(G4int theMass, G4int theCharge); G4double Absolute(G4double num); G4double randBW(G4double center, G4double width); G4double VectModulus(G4ThreeVector Mom); G4double VectModulus(G4LorentzVector Mom); G4double ScalarProduct(G4ThreeVector V1, G4ThreeVector V2); G4double ScalarProduct(G4LorentzVector V1, G4ThreeVector V2); G4double ScalarProduct(G4LorentzVector V1, G4LorentzVector V2); G4LorentzVector LorentzBoost(G4LorentzVector Mom, G4ThreeVector Beta); // Produces BacktoBack recoil/neutron event in the center of mass. void BacktoBack(G4double DeltaM); void CMFrameToLabFrame(); // Goldhaber Momentum Kick Functions - Added 2 Oct. 2007 - BTR G4double GaussianRandom(G4double FWHM); G4double GoldhaberFWHM(G4double A_Beam, G4double A_frag, G4double sigma0); void GoldhaberKick(); // Use this function to enable Goldhaber Momentum Kick in Physics List. // Default setting has no kick! (cond = false) // A_Beam is mass number of beam (e.g. 8. for 8He) // M_beam is mass of beam in units of MeV/c2 void SetGoldhaberParameters(G4bool cond, G4double A_Beam, G4double M_beam, G4double FWHM); // Sets RelativeEnergy between particles (i.e. resonance energy) void SetRelativeEnergy(G4String Ran, G4double value, G4double Width); G4double GetAlphaSeparationEnergy(){return Alpha_Separation_Energy;} void SetAlphaSeparationEnergy(G4double energy){Alpha_Separation_Energy = energy;} G4double GetDeltaSeparationEnergy(){return Delta_Separation_Energy;} void SetDeltaSeparationEnergy(G4double energy){Delta_Separation_Energy = energy;} private: // Hide assignment operator as private DPL_alphaDecay& operator=(const DPL_alphaDecay &right); // Copy constructor DPL_alphaDecay(const DPL_alphaDecay&); // Other Pre-Defined Class Variables and Functions are below! private: G4double Pi; G4bool GoldCond; // enable Goldhaber if set to "true" G4double A_Beam; G4double Mass_beam; G4double Mom_FWHM; G4double Alpha_Separation_Energy; G4double Delta_Separation_Energy; G4String RanCond; // enable random E_rel (for acceptance) set to "random" G4double E_rel; G4double ResWidth; G4int A_Parent; G4int Z_Parent; // Storage Variables for Recoil G4int A_Rec; // Mass Number of Recoil Nucleus G4int Z_Rec; // Charge of Recoil Nucleus // Momentum 4-vectors for Fragment, recoil and neutron G4LorentzVector P_Frag; G4LorentzVector P_Recoil; G4LorentzVector P_Alpha; // Mass Storage Variables G4int A_Frag; G4int Z_Frag; G4double Mass_Fragment; G4double Mass_Alpha; G4double Mass_Recoil; G4int NumberOfLines; G4double Normalization; G4double *DaughterExEng; G4double *IntensityRaw; G4double *ProbRaw; G4double *ProbLimit; }; #endif /* DPLALPHADECAY_HH_ */
[ "david.perez.loureiro@gmail.com" ]
david.perez.loureiro@gmail.com
a8e53491762ff7cbf95a61e80cb4e04d9f44695f
57d1d62e1a10282e8d4faa42e937c486102ebf04
/judges/codeforces/done/377b.cpp
a2d74a0c33acf4285d53788106d43866b69b7f8b
[]
no_license
diegoximenes/icpc
91a32a599824241247a8cc57a2618563f433d6ea
8c7ee69cc4a1f3514dddc0e7ae37e9fba0be8401
refs/heads/master
2022-10-12T11:47:10.706794
2022-09-24T04:03:31
2022-09-24T04:03:31
178,573,955
0
0
null
null
null
null
UTF-8
C++
false
false
1,653
cpp
#include<cstdio> #include<cstring> #include<set> #include<algorithm> using namespace std; #define mp make_pair #define INF (int) 1e9 + 100000 #define MAX 100010 int main() { bool can = 0; int n, m, s, localOut[MAX], out[MAX]; pair<int, int> bug[MAX]; pair<pair<int, int>, int> student[MAX]; scanf("%d %d %d", &n, &m, &s); for(int i=0; i<m; ++i) scanf("%d", &bug[i].first), bug[i].second = i; for(int i=0; i<n; ++i) scanf("%d", &student[i].first.first), student[i].second = i; for(int i=0; i<n; ++i) scanf("%d", &student[i].first.second); sort(bug, bug + m); int l = 1, r = m; while(l <= r) { int mid = (l + r)/2, passes = 0; set< pair< pair<int, int>, int> > tree; set< pair< pair<int, int>, int> >::iterator it, itaux; for(int i=0; i<n; ++i) tree.insert(student[i]); set< pair<int, int> > heap; set< pair<int, int> >::iterator itheap; int i = m - 1; bool localCan = 1; while(localCan && i >= 0) { it = tree.upper_bound(mp(mp(bug[i].first-1, INF), INF)); itaux = it; for(; it!=tree.end(); ++it) heap.insert(mp(it->first.second, it->second)); tree.erase(itaux, tree.end()); if(heap.empty()) localCan = 0; else { pair<int, int> p = *heap.begin(); heap.erase(heap.begin()); passes += p.first; if(passes > s) localCan = 0; for(int j=0; j<mid && i>=0; ++j, --i) localOut[bug[i].second] = p.second; } } if(localCan) { can = 1; memcpy(out, localOut, sizeof(out)); r = mid - 1; } else l = mid + 1; } if(!can) puts("NO"); else { printf("YES\n%d", out[0] + 1); for(int i=1; i<m; ++i) printf(" %d", out[i] + 1); puts(""); } return 0; }
[ "dxmendes1@gmail.com" ]
dxmendes1@gmail.com
99e83344a58a4aca148bbc6338208366566978f7
fd181dec682dc4a9de629f943cc61054cae003ca
/cpp06/ex01/main.cpp
bd12fc8f2b29437445e95f74d3b3d69e643eed4e
[]
no_license
guysharony/cpp
fa941e077ebad6a1d763b246f30775b482815e5d
a5a3f8a5ab72dbcad8b300cb01ee06b2f82c09a8
refs/heads/master
2023-02-03T09:30:13.719536
2020-12-18T08:15:10
2020-12-18T08:15:10
304,234,394
0
0
null
null
null
null
UTF-8
C++
false
false
1,236
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gsharony <gsharony@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/12/11 07:42:38 by gsharony #+# #+# */ /* Updated: 2020/12/14 16:35:05 by gsharony ### ########.fr */ /* */ /* ************************************************************************** */ #include "serializer.hpp" int main(void) { void *tmp1 = serialize(); Data *tmp2 = deserialize(tmp1); std::cout << "s1 [" << tmp2->s1 << "]" << std::endl; std::cout << "n [" << tmp2->n << "]" << std::endl; std::cout << "s2 [" << tmp2->s2 << "]" << std::endl; delete [] reinterpret_cast<char *>(tmp1); delete tmp2; return (0); }
[ "sharonyguy@gmail.com" ]
sharonyguy@gmail.com
22231f9711f49b619a863ee5adb6e3229780277a
a411425c7ce87cdd7bd22506d7d2cf8acf42a58f
/src/integration_testing/src/pkb_pql/evaluator_suchthat_clauses/TestUsesEval.cpp
1bcc9a418b4e92328d97c7af5562a5c3691d0b60
[]
no_license
anqichen9856/static-program-analyzer
a3b9e3f21e5c4ce1db0c0817dad397f6398cc5b7
ee4d9af1cc0ca603e2ecfffffc406f56dd5c49f9
refs/heads/master
2023-06-17T08:51:50.628830
2021-07-22T06:55:30
2021-07-22T06:55:30
388,353,777
0
0
null
null
null
null
UTF-8
C++
false
false
7,674
cpp
#include <vector> #include "catch.hpp" #include "front_end/tokenizer/Tokenizer.h" #include "front_end/parser/Parser.h" #include "query_processor/Query.h" #include "utils/SPAEnums.h" #include "clauses/UsesClause.h" #include "query_processor/query_evaluator/QueryEvaluator.h" #include "program_knowledge_base/pkb_storage/PKB.h" TEST_CASE("Evaluate Uses") { string src = "procedure Example {\n" " x = 2;\n" //1 " z = 3;\n" //2 " i = 5;\n" //3 " read x;\n" //4 " while (i!=0) {\n" //5 " x = x - 1;\n" //6 " if (x==1) then {\n" //7 " z = x + 1; \n" //8 " print y;}\n" //9 " else {\n" " y = z + x; }\n" //10 " z = z + x + i;\n" //11 " i = i - 1; }\n" //12 " }\n" "\n" "procedure p {\n" " if (k<9) then {\n" //13 " while (j>8) {\n" //14 " x = z * 3 + 2 * y;\n" //15 " i = i - 1; }\n" //16 " d = x + 1;\n" //17 " z = x + m; }\n" //18 " else {\n" " z = 1; }\n" //19 " z = z + x + i; }\n" //20 "\n" "procedure q {\n" " if (x==1) then {\n" //21 " z = x + 1; }\n" //22 " else {\n" " x = z + x; }" //23 " z=x;}"; //24 Tokenizer* tokenizer = Tokenizer::getInstance(); vector<Token> tokenStream = tokenizer->tokenizeSource(src); Parser* parser = Parser::getInstance(); AST root = parser->buildAST(tokenStream); PKB::getInstance()->reset(); PKB::getInstance()->initAST(root); SECTION("Integer, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Integer, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Integer, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "a"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "a"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("p", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("p", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable} }; query.clauses = vector<Clause*>(); query.selected = { "v" }; vector<string> answer = { "i", "m", "x", "y", "z" }; UsesClause p = UsesClause("a", "v"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } }
[ "chenanqi9856@gmail.com" ]
chenanqi9856@gmail.com
93f99f9fc43fd7ff4d5bc79947d90cf765861e67
172e4895181dca01903565564bfe13679dadc38f
/src/application/repository/ClientRepository.cpp
67469be05c34ea13d3c1d81a4c599b4f512cf357
[]
no_license
Brunomcarvalho89/RentCar
f39e552622801e122d90e4f63afadaa483afef92
2299d2fc8ea8dbda13be436507d97f781de0b56f
refs/heads/main
2023-03-23T08:13:41.351309
2021-03-05T00:43:15
2021-03-05T00:43:15
344,620,069
0
0
null
null
null
null
UTF-8
C++
false
false
695
cpp
/* * File: CarClassificationRepository.cpp * Author: brunomcarvalho89@gmail.com * * Created on 19 de fevereiro de 2021, 14:11 */ #include <algorithm> #include <vector> #include "application/repository/ClientRepository.hpp" #include "domain/Client.hpp" ClientRepository::ClientRepository() { } ClientRepository::~ClientRepository() { } void ClientRepository::add(std::shared_ptr<Client> client) { this->repository.insert(this->repository.begin(), client); } std::shared_ptr<Client> ClientRepository::getByID(int id) { for (std::shared_ptr<Client> elem : this->repository) { if (elem->getId() == id) { return elem; } } return NULL; }
[ "brunomcarvalho89@gmail.com" ]
brunomcarvalho89@gmail.com
f5c23cd5ccc168451bf65fea9339cb16f2a9254f
50d7fe59e0f7d89beef42d3ad3fe308f870ce60f
/add.cpp
42e24b3354a0a1a6f0b6b3209a4ca76d662310ee
[]
no_license
rongrongdafa/BasicCompilerExercise
69191f0b732e642d1d5bd6f75a7f8e410fe03068
8b282c595f28eeca51b7170f31abdb616981ab03
refs/heads/master
2021-09-11T08:27:03.886808
2018-04-06T11:19:07
2018-04-06T11:19:07
115,910,842
0
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
#include "add.h" C1::C1(int d) { c=d; } C1::~C1() { } int C1::getabc() { return a+b+c; }
[ "rongrongdafa@outloo.com" ]
rongrongdafa@outloo.com
3f70dd8dcc8ff9e361357bf9788212f8362f2e8b
71fd72ac2c13e813ddd89c128578f5bfae406044
/SharedUtility/MyD3D/MyD3DDynamicFontRects.cpp
77c9a4c02f10dd8eb1a20005631f391512e01bc1
[ "MIT" ]
permissive
sygh-JP/FbxModelViewer
26254c8499a4c6c8004bd91e0adefb0a34b14a24
9d48415323a968d69fadb6fe1812a8093ab41701
refs/heads/master
2023-07-06T04:34:41.924119
2023-06-29T17:41:16
2023-06-29T17:41:16
60,464,890
14
4
null
null
null
null
UTF-8
C++
false
false
6,994
cpp
#include "stdafx.h" #include "MyD3DDynamicFontRects.hpp" #include "DebugNew.h" namespace MyD3D { bool MyDynamicManyRectsBase::Create(ID3D11Device* pD3DDevice, UINT rectCount, UINT strideInBytes, const void* pInitialData) { _ASSERTE(m_pVertexBuffer == nullptr); _ASSERTE(m_pIndexBuffer == nullptr); _ASSERTE(pD3DDevice != nullptr); _ASSERTE(pInitialData != nullptr); // 頂点バッファ初期化データに NULL 指定は不可。テクスチャの生成のときや、OpenGL とは違う。 _ASSERTE(rectCount > 0); _ASSERTE(strideInBytes > 0); HRESULT hr = E_FAIL; const UINT vertexCount = rectCount * 4; D3D11_BUFFER_DESC vbDesc = {}; vbDesc.ByteWidth = vertexCount * strideInBytes; vbDesc.Usage = D3D11_USAGE_DYNAMIC; vbDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; vbDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; D3D11_SUBRESOURCE_DATA vbSubrData = {}; vbSubrData.pSysMem = pInitialData; hr = pD3DDevice->CreateBuffer(&vbDesc, &vbSubrData, m_pVertexBuffer.ReleaseAndGetAddressOf()); if (FAILED(hr)) { return false; } std::vector<TIndex> indexArray(rectCount * 6); for (size_t i = 0; i < rectCount; ++i) { // CCW indexArray[i * 6 + 0] = TIndex(0 + (i * 4)); indexArray[i * 6 + 1] = TIndex(2 + (i * 4)); indexArray[i * 6 + 2] = TIndex(1 + (i * 4)); indexArray[i * 6 + 3] = TIndex(1 + (i * 4)); indexArray[i * 6 + 4] = TIndex(2 + (i * 4)); indexArray[i * 6 + 5] = TIndex(3 + (i * 4)); } D3D11_BUFFER_DESC ibDesc = {}; ibDesc.ByteWidth = UINT(indexArray.size() * sizeof(TIndex)); ibDesc.Usage = D3D11_USAGE_DEFAULT; ibDesc.BindFlags = D3D11_BIND_INDEX_BUFFER; D3D11_SUBRESOURCE_DATA ibSubrData = {}; ibSubrData.pSysMem = &indexArray[0]; hr = pD3DDevice->CreateBuffer(&ibDesc, &ibSubrData, m_pIndexBuffer.ReleaseAndGetAddressOf()); if (FAILED(hr)) { return false; } m_rectCount = rectCount; m_vertexBufferSizeInBytes = vbDesc.ByteWidth; return true; } bool MyDynamicManyRectsBase::ReplaceVertexData(ID3D11DeviceContext* pDeviceContext, const void* pSrcData) { _ASSERTE(m_pVertexBuffer != nullptr); _ASSERTE(pSrcData != nullptr); HRESULT hr = E_FAIL; D3D11_MAPPED_SUBRESOURCE mappedResource = {}; hr = pDeviceContext->Map(m_pVertexBuffer.Get(), 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); if (FAILED(hr)) { return false; } memcpy(mappedResource.pData, pSrcData, m_vertexBufferSizeInBytes); pDeviceContext->Unmap(m_pVertexBuffer.Get(), 0); return true; } bool MyDynamicFontRects::UpdateVertexBufferByString(ID3D11DeviceContext* pDeviceContext, LPCWSTR pString, MyMath::Vector2F posInPixels, const MyMath::Vector4F& upperColor, const MyMath::Vector4F& lowerColor, long fontHeight, bool usesFixedFeed, uint32_t fontTexWidth, uint32_t fontTexHeight, const MyMath::TCharCodeUVMap& codeUVMap) { _ASSERTE(pString != nullptr); m_stringLength = 0; float offsetX = 0; TVertex* pVertexArray = &m_vertexArray[0]; // ローカル変数にキャッシュして高速化。 for (int i = 0; pString[i] != 0 && i < MaxCharacterCount; ++i, ++m_stringLength) { // HACK: このアルゴリズム(というか単一の wchar_t キー)だと、サロゲート ペアにはどうしても対応不可能。 const size_t charCode = static_cast<size_t>(pString[i]); if (charCode < codeUVMap.size()) { const auto codeUV = codeUVMap[charCode]; const float uvLeft = static_cast<float>(codeUV.X) / fontTexWidth; const float uvTop = static_cast<float>(codeUV.Y) / fontTexHeight; const float uvRight = static_cast<float>(codeUV.GetRight()) / fontTexWidth; const float uvBottom = static_cast<float>(codeUV.GetBottom()) / fontTexHeight; const float uvWidth = codeUV.Width; const float uvHeight = codeUV.Height; // LT, RT, LB, RB.(0, 1, 2 は左手系の定義順) const size_t index0 = i * 4 + 0; // 文字の水平方向送り(カーニングは考慮しないが、プロポーショナルの場合は文字幅)。 // スペースの文字送りも考慮する。 // HUD 系は常にモノスペースのほうがいいこともある。 // 非 ASCII はテクスチャ作成時にフォント メトリックから取得した文字幅にする。 // ヨーロッパ言語など、非 ASCII でもモノスペース時は半角幅のほうがいい文字もあるが、それは考慮しない。 // したがって、メソッドのフラグで等幅指定されたら、ASCII のみ半角幅とし、 // 非 ASCII はフォント メトリックから取得した文字幅を使うようにする。 const float feed = (usesFixedFeed && iswascii(pString[i])) ? (fontHeight / 2) : uvWidth; pVertexArray[index0].Position.x = posInPixels.x + offsetX; pVertexArray[index0].Position.y = posInPixels.y; pVertexArray[index0].Position.z = 0; //pVertexArray[index0].Position.w = 1; pVertexArray[index0].Color = upperColor; pVertexArray[index0].TexCoord.x = uvLeft; pVertexArray[index0].TexCoord.y = uvTop; const size_t index1 = i * 4 + 1; pVertexArray[index1].Position.x = posInPixels.x + offsetX + uvWidth; pVertexArray[index1].Position.y = posInPixels.y; pVertexArray[index1].Position.z = 0; //pVertexArray[index1].Position.w = 1; pVertexArray[index1].Color = upperColor; pVertexArray[index1].TexCoord.x = uvRight; pVertexArray[index1].TexCoord.y = uvTop; const size_t index2 = i * 4 + 2; pVertexArray[index2].Position.x = posInPixels.x + offsetX; pVertexArray[index2].Position.y = posInPixels.y + uvHeight; pVertexArray[index2].Position.z = 0; //pVertexArray[index2].Position.w = 1; pVertexArray[index2].Color = lowerColor; pVertexArray[index2].TexCoord.x = uvLeft; pVertexArray[index2].TexCoord.y = uvBottom; const size_t index3 = i * 4 + 3; pVertexArray[index3].Position.x = posInPixels.x + offsetX + uvWidth; pVertexArray[index3].Position.y = posInPixels.y + uvHeight; pVertexArray[index3].Position.z = 0; //pVertexArray[index3].Position.w = 1; pVertexArray[index3].Color = lowerColor; pVertexArray[index3].TexCoord.x = uvRight; pVertexArray[index3].TexCoord.y = uvBottom; // ボールド体の場合はもう少しオフセットしたほうがいいかも。 // フォントによっては、強制的に半角幅分送るだけ、というのは問題あり。 // 特にプロポーショナル フォントは英数字であっても文字幅が異なる。 // モノスペースであっても、半角幅分とはかぎらない。 offsetX += feed + 1; } } if (m_stringLength > 0) { return this->ReplaceVertexData(pDeviceContext, &m_vertexArray[0]); } else { return true; } } } // end of namespace
[ "whitekatyusha@yahoo.co.jp" ]
whitekatyusha@yahoo.co.jp
adac6143062cc39e20b00985884d22a76f70328a
b32d9ecf17fc0c5096a8c0cf04a1a9f495211f7e
/793.cpp
33d2d424aa54def1312d03e41950bbf8790e6058
[]
no_license
UQuality/UVA
08aca147953bdac08a9197ab2aeb246f7fd364c3
2f38241aa05d287cebfc534a965cb65626ac8ab2
refs/heads/master
2021-06-19T07:55:33.071014
2017-07-09T18:00:27
2017-07-09T18:00:27
83,677,198
0
0
null
null
null
null
UTF-8
C++
false
false
1,304
cpp
#include<bits/stdc++.h> #define rep(i,n) for(int i = 0; i<n; i++) using namespace std; typedef vector<int> vi; class DisjointSet { private : vi parent,ran; public : DisjointSet(int n){ ran.assign(n,0); parent.resize(n); rep(i,n) parent[i] = i; } int findSet(int i) { return (parent[i] == i) ? i : (parent[i] = findSet(parent[i])); } bool isSameSet(int i, int j) { return findSet(i) == findSet(j); } void unionSet(int i, int j){ if(!isSameSet(i,j)){ int x = findSet(i), y = findSet(j); if(ran[x]>ran[y]) parent[y] = x; else{ parent[x] = y; if(ran[x] == ran[y]) ran[y]++; } } } }; int main() { int n,a,b,cases,suc,unsuc; string line; char c; scanf("%d",&cases); while(cases--) { scanf("\n%d\n",&n); DisjointSet ds(n+1); suc = 0,unsuc = 0; while(true) { if(!getline(cin,line) || line.empty()) break; sscanf(line.c_str(),"%c %d %d",&c,&a,&b); if(c == 'c') ds.unionSet(a,b); if(c == 'q') ds.isSameSet(a,b)?suc++ : unsuc++; } printf("%d,%d\n",suc,unsuc); if(cases>0) printf("\n"); } return 0; }
[ "lutz.mage@gmail.com" ]
lutz.mage@gmail.com
64be15e47d40387e09de9650be20835e4f1e13d3
9eed7a6024e07a41bbdfc993c385810d38485b71
/TDT_RigDev_2011-08/CP_LibertyTrack/Versions/V0.00_2007-07-23/LibertyTrackGlob.cpp
1d5199dc341334e961cb31b99584a09d2b8c7bb8
[]
no_license
tlh24/sabes-exp-ctrl
8ecb15da1cc6a0353940899c7371228fdb458cae
13b41ce80dec2502df13e9b1058fc9e05333d0d4
refs/heads/master
2020-07-29T05:38:02.420206
2015-02-25T07:45:16
2015-02-25T07:45:16
4,756,642
2
0
null
null
null
null
UTF-8
C++
false
false
5,330
cpp
#include <windows.h> #include "RegisterCom.h" #include "ClassFactory.h" #include "CP_LibertyTrackCom.h" #include "LibertyTrack.h" #include "LibertyTrackGlob.h" IClassFactory *x_pIFactory; DWORD x_dwRegister; HWND g_hWnd; // Here we define functions that MainDialog should know about // to use the CP_LibertyTrack COM server //============================================== int g_RegisterCOM(){ HRESULT hr; ITypeLib* pTypeLib; // Register typelib hr = LoadTypeLibEx(L"CP_LibertyTrack.exe", REGKIND_REGISTER, &pTypeLib); if( hr != S_OK) { return 1; } pTypeLib->Release(); // Register server hr = g_RegisterServer( "CP_LibertyTrack.exe", // application filename, full path is not needed CLSID_CP_LibertyClass, // ClassID GUID "CP_LibertyTrack", // Friendly name - shows up in dcomcnfg "CP_LibertyTrack.Application", // Version-independent ProgID used in late - binding "CP_LibertyTrack.Application.1", // ProgID with version NULL); // Threading model if( hr != S_OK) return 2; return 0; } //============================================== int g_UnregisterCOM(){ HRESULT hr; // Unregister typelib hr = UnRegisterTypeLib(LIBID_CP_LibertyTrackLib, // Typelib GUID 0, // Version Major 0, // Version Minor LANG_NEUTRAL, // LocaleID SYS_WIN32); // The target operating system if( hr != S_OK) { return 1; } // Unregister server hr = g_UnregisterServer(CLSID_CP_LibertyClass, "CP_LibertyTrack.Application", "CP_LibertyTrack.Application.1"); if( hr != S_OK) { return 2; } return 0; } //============================================== int g_Init_LibertyTrack( ){ // int iRet; HRESULT hr; x_pIFactory = new CFactory(); if( x_pIFactory == NULL) return 2; hr = CoRegisterClassObject( CLSID_CP_LibertyClass, //Class identifier (CLSID) to be registered x_pIFactory, //Pointer to the class object CLSCTX_LOCAL_SERVER, //Context for running executable code REGCLS_MULTIPLEUSE, // multiple clients for the same server, we do not start a new server for each client &x_dwRegister ); //Save registered object info, for future release by CoRevokeClassObject() if( hr != S_OK) return 3; g_pLibertyTrack = new CLibertyTrack; if( g_pLibertyTrack == NULL ) return 4; return 0; } //============================================== int g_OkToRelease( ){ //TODO: implement return 1; } //============================================== int g_Release_LibertyTrack(){ delete g_pLibertyTrack; g_pLibertyTrack = NULL; // CoRevokeClassObject(x_dwRegister); // x_pIFactory->Release(); // NOTE!!! do not call the next line here: it should be called at the very appl. end //// CoUninitialize(); return 0; } //============================================== void g_OnNewData( WPARAM wParam, LPARAM lParam ) { if( g_pLibertyTrack ) { g_pLibertyTrack->OnNewData( g_pLibertyTrack, wParam, lParam ); } } //============================================== // return timestamp in ms and relative coordinates: 0.0 to 1.0 int g_GetLatestCoordinates( int * pnSensors, double * pdTimeStamps, float pfXYZ[N_DISPL_SENSORS][N_COORD_ANGL] ){ int iState; int nSensDevMax, nSensors; int iDataIdx; tLibertyFrame atLibertyFrame[N_DISPL_SENSORS]; float pfVelocity[N_DISPL_SENSORS][N_DISPL_COORD]; g_pLibertyTrack->GetLibertyState( &iState ); if( iState != 3) return 1; // if not connected and running g_pLibertyTrack->GetN_Sensors( &nSensDevMax, &nSensors ); if( nSensors > N_DISPL_SENSORS ) return 1; // just in case if( !g_pLibertyTrack->GetLatestItemIdx( &iDataIdx )) return 1; //Get one frame from the buffer if( !g_pLibertyTrack->ReadData( atLibertyFrame, iDataIdx, 1 ) ) return 1; // Write timestamps and coordinates to SAFEARRAYs g_pLibertyTrack->ParseBuffer(1, // N Frames atLibertyFrame, // Source buffer pdTimeStamps, // Dest. timestamps (tfXYZTag *) pfXYZ, // Dest. coordinates (tfXYZTag *) pfVelocity ); // Dest. velocities * pnSensors = nSensors; return 0; } int g_GetSignalDistortion( int aiDistortion[N_DISPL_SENSORS] ){ g_pLibertyTrack->GetSignalDistortion(aiDistortion); return 0; } //============================================== int g_CmdStart(){ g_pLibertyTrack->ConnectLiberty(); return 0; } //============================================== int g_CmdStop(){ g_pLibertyTrack->FinishAndDisconnect(); return 0; } //============================================== HWND g_GetWindowHandle(){ return g_hWnd; }
[ "sideskate@gmail.com" ]
sideskate@gmail.com
d7f9b5060160f7298916246b4c8f8848c6e849e2
34ee28cb914306377446bd8f6dd4d8daf5102665
/Satisfiability/Transformers/Generators/Random/DQClauseSets.hpp
9fc4797301f872cd530438fe4e46fcbb6377e54d
[]
no_license
aileatese/oklibrary
d1abba9633bf83f5ab377bf5798af3d5055d70b7
f82654c4e1a0cb9ab89dc1a7fbf0f3dd2fb255d5
refs/heads/master
2022-11-29T14:43:39.500266
2020-08-06T12:40:20
2020-08-06T12:40:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,797
hpp
// Oliver Kullmann, 17.7.2019 (Swansea) /* Copyright 2019, 2020 Oliver Kullmann This file is part of the OKlibrary. OKlibrary 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 and included in this library; either version 3 of the License, or any later version. */ /* Random dependency-quantified CNF Components: Parameter-handling: - typedef ae_numvars: the pair (na, ne) - bool valid(ae_numvars): valid iff sum and product don't overflow - ae_numvars extract_numvars(block_v) - gen_uint_t num_dependencies(block_v) Option-handling: - enum class DepOp (from_scratch, subtract, add) - typedef dep_par_t: pair (gen_uint_t, DepOp) for the dependency-form and the number associated with it - dep_par_t read_dep_par(std::string) Seed-handling: - vec_eseed_t seeds(Param, block_v, dep_par_t) Tools for the generation-process: - typedef orig_new_pair: pair of VarInterval's, for old and shifted interval - typedef ablock_v: vector of orig_new_pair, for translating the fragemented a-intervals into contigous intervals - ablock_v extract(block_v): computing the contiguous a-intervals (shifted) - functor-class AccessA: constructed as AccessA aa(block_v), aa[v] translates 1 <= v <= na into the original variable, while aa(v) computes the inverse. - typedef ae_pair: pair of gen_uint_t, representing a dependency-edge (via indices or variables) - ae_pair extract_ae(gen_uint_t x, gen_uint_t na): translating dependency-index x into a dependency-edge - typedef dep_edges: vector of ae_pair's - dep_edges translate(vec_eseed_t, gen_uint_t na, ne, block_v, DepOp) computes the dependency graph as "set" of ae_pair's (a,e), where a is a variable, while e is an index. - typedef AVarset: set of gen_uint_t - typedef AVarSetsystem: set of AVarset - typedef Dependency: pointer into AVarSetsystem - typedef Dvector: vector of Dependency's - typedef FullDependencies: pair of AVarSetsystem and Dvector - AVarset::size_type num_dependencies(Dvector) - FullDependencies create_dependencies(dep_edges, block_v, DepOp) (a helper function for the following overload) - FullDependencies create_dependencies(RandGen_t, block_v, gen_uint_t na, ne, dep_par_t) - functor class CoveredUniversal, constructed from AVarSetsystem and Dvector, called with operator()(Clause), returning true iff all existential variables in the clause are in the domain of some existential variable in the clause Generation: - void rand_clauselist(std::ostream, RandGen_t, rparam_v, block_v, gen_uint_t na, ne, dep_par_t) - void output_dqblocks(std::ostream, Dvector, AVarSetsystem, rename_info_t R, DepOp) (implementation not complete) - void rand_dqclauseset(RandGen_t, rparam_v, AVarSetsystem, Dvector) DESIGN: 1. The handling of the dependency-sets should be unified with DQCNF/AutarkiesL1.cpp. 2. Filtering of clauses (rejecting clauses with formal universal variables) as with QBRG. TODOS: 0. Complete implementation of output_dqblocks 1. Merging repeated a/e-lines - QBRG in all modes merges neighbouring q-blocks of the same type (by calling output_qblocks) - Currently rand_clauselist in DQClauseSets does not do this; likely it should. DONE: no, too expensive here, due to the possibility of e-lines being removed. So we leave this, for the o,u-mode only, as a special feature of this mode. - DONE Moreover, this functions handles output of quantifier-information itself. - DONE Due to the need for direct output, it seems this is necessary: the dependencies are created on the fly, and are not stored. - DONE Possibly this should be outsorced to another function. On the other hand, the handling of the clauses is just one line. - DONE output_dqblocks for the other forms (not the -1-forms, i.e., "u,o"), needs the dependencies as created before creating the clauses (the former influencing the latter in the {}-form). And thus here likely it needs to be a different function. - DONE Perhaps it just uses the dep_vector, not the original vblock's. A problem here is with renaming: for a complete handling of clean a/e-lines (no repetitions, and always using an e-line if possible), the dependencies needed to be updated (for their output) according to renaming (and non-occurrences). Shall this be done? Would be more consistent. */ #ifndef DQCLAUSESETS_nMH1OTZkKa #define DQCLAUSESETS_nMH1OTZkKa #include <utility> #include <string> #include <algorithm> #include <vector> #include <tuple> #include <queue> #include <functional> #include <set> #include <cassert> #include <ProgramOptions/Environment.hpp> #include <Numerics/FloatingPoint.hpp> #include "Distributions.hpp" // Guaranteed to be included: #include "QClauseSets.hpp" namespace RandGen { // Pair na=#universal variables, ne=#existential variables: typedef std::pair<gen_uint_t, gen_uint_t> ae_numvars; // Whether na+ne and na*ne do not overflow, and ne >= 1: inline constexpr bool valid(const ae_numvars& n) noexcept { if (n.second == 0) return false; {const gen_uint_t sum = n.first + n.second; if (sum < n.first or sum < n.second) return false; } {const gen_uint_t prod = n.first * n.second; if (prod / n.second != n.first) return false; } return true; } static_assert(valid(ae_numvars{0,1})); static_assert(not valid(ae_numvars{1,0})); static_assert(not valid(ae_numvars{0,0})); static_assert(not valid(ae_numvars{gen_uint_t(-1),1})); static_assert(not valid(ae_numvars{1,gen_uint_t(-1)})); static_assert(valid(ae_numvars{gen_uint_t(-1)-1,1})); static_assert(valid(ae_numvars{1,gen_uint_t(-1)-1})); static_assert(valid(ae_numvars{0x1'0000'0000ULL, 0x1'0000'0000ULL-1})); static_assert(valid(ae_numvars{0x1'0000'0000ULL-1, 0x1'0000'0000ULL})); static_assert(not valid(ae_numvars{0x1'0000'0000ULL, 0x1'0000'0000ULL})); static_assert(not valid(ae_numvars{iexp2(63),2})); static_assert(not valid(ae_numvars{2,iexp2(63)})); // Compute na, ne for bv: ae_numvars extract_numvars(const block_v& bv) noexcept { assert(valid(bv)); ae_numvars n{}; for (gen_uint_t i = 1; i < bv.size(); ++i) { const auto& b = bv[i]; if (b.q == Q::fa) n.first += b.v.size(); else n.second += b.v.size(); } assert(bv[0].v.size() == n.first + n.second); return n; // might not be valid regarding product-overflow } gen_uint_t num_dependencies(const block_v& bv) noexcept { assert(valid(extract_numvars(bv))); gen_uint_t sum = 0; gen_uint_t current_a = 0; for (gen_uint_t i = 1; i < bv.size(); ++i) { const auto& b = bv[i]; if (b.q == Q::ex) sum += b.v.size() * current_a; else current_a += b.v.size(); } return sum; } enum class DepOp { from_scratch = 0, subtract = 1, add = 2 }; std::ostream& operator <<(std::ostream& out, const DepOp d) { switch (d) { case DepOp::from_scratch : return out << "ignore_given"; case DepOp::subtract : return out << "subtract_from_given"; case DepOp::add : return out << "add_to_given"; default : return out << "DepOp:" << int(d); } } typedef std::pair<gen_uint_t, DepOp> dep_par_t; dep_par_t read_dep_par(const std::string& p) { if (p.empty()) return {}; if (p.front() == '+') return {FloatingPoint::toUInt(p.substr(1)), DepOp::add}; else if (p.front() == '-') return {FloatingPoint::toUInt(p.substr(1)), DepOp::subtract}; else return {FloatingPoint::toUInt(p), DepOp::from_scratch}; } vec_eseed_t seeds(const Param& par, const block_v& vblock, const dep_par_t& dep) { const auto first = size_type_eseed; const auto second = first + (1 + 1) + (1 + 2 * vblock.size()); vec_eseed_t v; v.reserve(second); v.push_back(gen_uint_t(MainType::block_uniform_dqcnf)); v.push_back(gen_uint_t(int(par.gp))); v.push_back(par.vp.size()); v.push_back(default_thread_index); assert(v.size() == first); v.push_back(gen_uint_t(int(dep.second))); v.push_back(dep.first); v.push_back(vblock.size()); for (const auto& b : vblock) { v.push_back(b.v.size()); v.push_back(gen_uint_t(b.q)); } assert(v.size() == second); for (const auto p : par.vp) add_seeds(p,v); return v; } // The original interval and the shifted interval: typedef std::pair<VarInterval, VarInterval> orig_new_pair; typedef std::vector<orig_new_pair> ablock_v; // Translating the non-contiguous a-intervals into contiguous intervals // (for index-transformation): ablock_v extract(const block_v& bv) { assert(valid(bv)); ablock_v res; {gen_uint_t next = 1; for (const VarBlock& b : bv) if(b.q == Q::fa) { const gen_uint_t diff = b.v.b() - b.v.a(), old = next; res.emplace_back(b.v, VarInterval(old, next+=diff)); ++next; } } return res; } // Initialised with the blocks of variables, via operator [v] translate the // index 1 <= v <= na into the original variable, while (v) does the reverse: class AccessA { const ablock_v abv; typedef ablock_v::const_iterator iterator; const iterator begin, end; public : const gen_uint_t max; const gen_uint_t na; explicit AccessA(const block_v& bv) noexcept : abv(extract(bv)), begin(abv.begin()), end(abv.end()), max(abv.empty() ? 0 : abv.back().first.b()), na(abv.empty() ? 0 : abv.back().second.b()) {} gen_uint_t operator()(const gen_uint_t v) const noexcept { assert(v <= max); if (v == 0) return na; const auto it = std::lower_bound(begin, end, v, [](const orig_new_pair& w, const gen_uint_t v) noexcept { return w.first.b() < v; }); assert(it->first.element(v)); return it->second[v - it->first.a()]; } gen_uint_t operator[](const gen_uint_t v) const noexcept { assert(v <= na); if (v == 0) return max; const auto it = std::lower_bound(begin, end, v, [](const orig_new_pair& w, const gen_uint_t v) noexcept { return w.second.b() < v; }); assert(it->second.element(v)); return it->first[v - it->second.a()]; } }; // Translating x into a dependency, an edge beetween a universal and // an existential variable, represented as indices: typedef std::pair<gen_uint_t, gen_uint_t> ae_pair; inline constexpr ae_pair extract_ae(const gen_uint_t x, const gen_uint_t na, [[maybe_unused]] const gen_uint_t ne) noexcept { assert(x < na*ne); return {x % na, x / na}; } static_assert((extract_ae(0,1,1) == ae_pair{0,0})); static_assert((extract_ae(0,3,4) == ae_pair{0,0})); static_assert((extract_ae(1,3,4) == ae_pair{1,0})); static_assert((extract_ae(2,3,4) == ae_pair{2,0})); static_assert((extract_ae(3,3,4) == ae_pair{0,1})); static_assert((extract_ae(11,3,4) == ae_pair{2,3})); static_assert((extract_ae(8,2,5) == ae_pair{0,4})); typedef std::vector<ae_pair> dep_edges; // Translating a vector rdep of dependency-indices into ae_pairs (a,e), // where a is the original variable, while e is the index (0 <= e < ne): dep_edges translate(const vec_eseed_t& rdep, const gen_uint_t na, const gen_uint_t ne, const block_v& bv, const DepOp op) { assert((extract_numvars(bv) == ae_numvars{na,ne})); dep_edges res; res.reserve(rdep.size()); AccessA aa(bv); switch (op) { case DepOp::from_scratch: { for (const gen_uint_t x : rdep) { const ae_pair ae = extract_ae(x, na, ne); res.emplace_back(aa[1+ae.first], ae.second); } break; } case DepOp::subtract: { gen_uint_t current_na = 0, current_ne = 0, old_sum_ne = 0, sum_ne = 0, old_sum_deps = 0, sum_deps = 0; auto it_bv = bv.cbegin(); ++it_bv; for (const gen_uint_t x : rdep) { while (x >= sum_deps) { assert(it_bv != bv.cend()); const auto b = *it_bv++; assert(b.q == Q::ex or b.q == Q::fa); if (b.q == Q::fa) current_na += b.v.size(); else { current_ne = b.v.size(); old_sum_ne = sum_ne; sum_ne += current_ne; old_sum_deps = sum_deps; sum_deps += current_ne * current_na; } } assert(x >= old_sum_deps); const ae_pair ae = extract_ae(x-old_sum_deps, current_na, current_ne); assert(ae.first < na); assert(ae.second + old_sum_ne < ne); res.emplace_back(aa[1+ae.first], ae.second + old_sum_ne); } break; } case DepOp::add: { gen_uint_t left_na = 0, right_na = na, old_sum_ne = 0, old_sum_deps = 0; auto it_bv = bv.cbegin(); ++it_bv; while (it_bv->q != Q::ex) { const gen_uint_t s = it_bv++->v.size(); left_na += s; right_na -= s; } assert(it_bv->q == Q::ex); gen_uint_t current_ne = it_bv++->v.size(), sum_ne = current_ne, sum_deps = current_ne * right_na; for (const gen_uint_t x : rdep) { while (x >= sum_deps) { assert(it_bv != bv.cend()); const auto b = *it_bv++; assert(b.q == Q::ex or b.q == Q::fa); if (b.q == Q::fa) {const auto s=b.v.size(); left_na+=s; right_na-=s;} else { current_ne = b.v.size(); old_sum_ne = sum_ne; sum_ne += current_ne; old_sum_deps = sum_deps; sum_deps += current_ne * right_na; } } assert(x >= old_sum_deps); const ae_pair ae = extract_ae(x-old_sum_deps, right_na, current_ne); assert(ae.first + left_na < na); assert(ae.second + old_sum_ne < ne); res.emplace_back(aa[1+ae.first+left_na], ae.second + old_sum_ne); } break; } default:; } assert(res.size() == rdep.size()); return res; } void rand_clauselist(std::ostream& out, RandGen_t& g, const rparam_v& par, const block_v& bv, const gen_uint_t na, const gen_uint_t ne, const dep_par_t deppar) { assert(valid(bv)); assert(bv[0].v.b() == na+ne); {const auto dp = extract_parameters(par); assert(dp.n <= na+ne); out << dimacs_pars{bv[0].v.b(), dp.c}; } assert(ne != 0); switch (deppar.second) { case DepOp::from_scratch: { const dep_edges rdep = translate(choose_kn(deppar.first, na*ne, g, true), na, ne, bv, DepOp::from_scratch); assert(rdep.size() == deppar.first); out << Q::fa; for (const auto b : bv) if (b.q == Q::fa) for (const gen_uint_t v : b.v) out << " " << v; out << " 0\n"; gen_uint_t ei = 0; // current index of existential variable auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::ex) { for (const gen_uint_t v : b.v) { out << "d " << v; while (dep_it != end and dep_it->second == ei) { out << " " << dep_it->first; ++dep_it; } out << " 0\n"; ++ei; } } } assert(ei == ne); assert(dep_it == end); break; } case DepOp::subtract: { const dep_edges rdep = translate(choose_kn(deppar.first, num_dependencies(bv), g, true), na, ne, bv, DepOp::subtract); assert(rdep.size() == deppar.first); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { out << Q::fa; for (const gen_uint_t v : b.v) out << " " << v; out << " 0\n"; } else { assert(b.q == Q::ex); if (dep_it != end and dep_it->second < ei+b.v.size()) { bool out_ex = false; typedef std::pair<gen_uint_t,std::vector<gen_uint_t>> deplist; std::vector<deplist> removed_deps; for (const gen_uint_t v : b.v) { if (dep_it != end and dep_it->second == ei) { deplist dl{v,{}}; do dl.second.push_back(dep_it->first); while (++dep_it != end and dep_it->second == ei); removed_deps.push_back(std::move(dl)); } else if (out_ex) out << " " << v; else {out_ex = true; out << Q::ex << " " << v;} ++ei; } if (out_ex) out << " 0\n"; assert(not removed_deps.empty()); for (const auto& d : removed_deps) { out << "d " << d.first; const auto& del = d.second; auto rem_it = del.cbegin(); const auto end = del.cend(); assert(rem_it != end); for (block_v::size_type j = 1; j < index; ++j) { const auto& bj = bv[j]; if (bj.q == Q::ex) continue; for (const gen_uint_t v : bj.v) if (rem_it != end and v == *rem_it) ++rem_it; else out << " " << v; } assert(rem_it == end); out << " 0\n"; } } else { out << Q::ex; for (const gen_uint_t v : b.v) {out << " " << v; ++ei;} out << " 0\n"; } } } assert(ei == ne); assert(dep_it == end); break; } case DepOp::add: { const dep_edges rdep = translate(choose_kn(deppar.first, na*ne - num_dependencies(bv), g, true), na, ne, bv, DepOp::add); assert(rdep.size() == deppar.first); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); typedef std::tuple<gen_uint_t, block_v::size_type, std::vector<gen_uint_t>, std::pair<gen_uint_t,dep_edges::size_type>> deplist; typedef std::priority_queue<deplist, std::vector<deplist>, std::function<bool(const deplist&, const deplist&)>> pqueue_t; pqueue_t added_deps([](const deplist& a, const deplist& b) noexcept { return std::get<3>(a) > std::get<3>(b); }); dep_edges::size_type counter = 0; for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { out << Q::fa; for (const auto v : b.v) out << " " << v; out << " 0\n"; while (not added_deps.empty() and std::get<3>(added_deps.top()).first <= b.v.b()) { const auto& t = added_deps.top(); const gen_uint_t v = std::get<0>(t); const auto i = std::get<1>(t); const auto& vec = std::get<2>(t); out << "d " << v; for (block_v::size_type j = 1; j < i; ++j) if (bv[j].q == Q::fa) for (const gen_uint_t w : bv[j].v) out << " " << w; for (const gen_uint_t w : vec) out << " " << w; out << " 0\n"; added_deps.pop(); } } else { assert(b.q == Q::ex); if (dep_it != end and dep_it->second < ei+b.v.size()) { bool out_ex = false; for (const gen_uint_t v : b.v) { if (dep_it != end and dep_it->second == ei) { deplist dl{v,index,{},{}}; do std::get<2>(dl).push_back(dep_it->first); while (++dep_it != end and dep_it->second == ei); std::get<3>(dl) = {std::get<2>(dl).back(), counter}; assert(not std::get<2>(dl).empty()); counter += std::get<2>(dl).size(); added_deps.push(std::move(dl)); } else if (out_ex) out << " " << v; else {out_ex = true; out << Q::ex << " " << v;} ++ei; } if (out_ex) out << " 0\n"; } else { out << Q::ex; for (gen_uint_t v = b.v.a(); v <= b.v.b(); ++v, ++ei) out<<" "<<v; out << " 0\n"; } } } assert(ei == ne); assert(dep_it == end); assert(counter == rdep.size()); break; } default: out << "UNKNOWN DEPENDENCY-FORM.\n"; return; } rand_clauselist_core(out, g, par); } typedef std::set<gen_uint_t> AVarset; typedef std::set<AVarset> AVarSetsystem; typedef AVarSetsystem::const_pointer Dependency; // nullptr means universal variable: typedef std::vector<Dependency> Dvector; typedef std::pair<AVarSetsystem, Dvector> FullDependencies; AVarset::size_type num_dependencies(const Dvector& D) noexcept { AVarset::size_type sum = 0; for (const auto d : D) if (d) sum += d->size(); return sum; } FullDependencies create_dependencies(const dep_edges& rdep, const block_v& bv, const DepOp dpo) { assert(valid(bv)); const gen_uint_t n = bv[0].v.b(); FullDependencies R{{},n+1}; if (dpo == DepOp::from_scratch) { gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::ex) { for (const gen_uint_t v : b.v) { AVarset V; auto hint = V.cbegin(); #ifndef NDEBUG const auto old_it = dep_it; #endif while (dep_it != end and dep_it->second == ei) { hint = V.insert(hint, dep_it->first); ++dep_it; } #ifndef NDEBUG assert(Dvector::size_type(dep_it - old_it) == V.size()); #endif R.second[v] = &*R.first.insert(std::move(V)).first; ++ei; } } } assert(dep_it == end); } else { assert(dpo == DepOp::subtract or dpo == DepOp::add); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); AVarset VA; for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { auto hint = VA.end(); for (const gen_uint_t v : b.v) hint = VA.insert(hint,v); } else { assert(b.q == Q::ex); for (const gen_uint_t v : b.v) { AVarset V(VA); #ifndef NDEBUG const auto old_it = dep_it; #endif while (dep_it != end and dep_it->second == ei) { if (dpo == DepOp::subtract) V.erase(dep_it->first); else V.insert(dep_it->first); ++dep_it; } #ifndef NDEBUG assert(Dvector::size_type(dep_it-old_it) == (dpo==DepOp::add ? V.size()-VA.size() : VA.size() - V.size())); #endif R.second[v] = &*R.first.insert(std::move(V)).first; ++ei; } } } assert(dep_it == end); } return R; } FullDependencies create_dependencies(RandGen_t& g, const block_v& bv, const gen_uint_t na, const gen_uint_t ne, const dep_par_t deppar) { assert(valid(bv)); assert(deppar.second==DepOp::from_scratch or deppar.second==DepOp::subtract or deppar.second==DepOp::add); return create_dependencies(translate(choose_kn(deppar.first, deppar.second==DepOp::from_scratch ? na*ne : (deppar.second==DepOp::subtract ? num_dependencies(bv) : na*ne-num_dependencies(bv)), g, true), na, ne, bv, deppar.second), bv, deppar.second); } FullDependencies rename_dependencies(const Dvector& dv, const AVarSetsystem& ds, const rename_info_t& R) { assert(not ds.empty()); [[maybe_unused]] const auto size = dv.size(); assert(ds.size() <= size); assert(size >= 2); const auto size2 = R.second.size(); assert(size2 <= size); const auto max = R.first; assert(max >= 1); assert(size2 >= max); FullDependencies res{{}, max+1}; std::map<Dependency, Dependency> old2new; for (const AVarset& V : ds) { const Dependency olddep = &V; AVarset Vr; auto hint = Vr.end(); for (const gen_uint_t v : V) { assert(v < size and dv[v] == nullptr); if (v < size2 and R.second[v] != 0) hint = Vr.insert(hint, v); } const Dependency newdep = &*res.first.insert(std::move(Vr)).first; old2new[olddep] = newdep; } for (gen_uint_t v = 1; v < size2; ++v) { const gen_uint_t vr = R.second[v]; if (vr == 0) continue; assert(vr <= max); if (dv[v] != nullptr) res.second[vr] = old2new[dv[v]]; } return res; } // Similar to output_qblocks(out, bv, R) in QClauseSets.hpp: void output_dqblocks(std::ostream& out, const Dvector& dv, const AVarSetsystem& ds, const rename_info_t& R, const DepOp dpo) { const bool use_max = R.first != 0; const bool use_renaming = not R.second.empty(); assert(not use_renaming or use_max); typedef Dvector::size_type size_t; const size_t size = dv.size(); assert(size >= 2); const size_t size2 = R.second.size(); assert(size2 <= size); switch (dpo) { case DepOp::from_scratch: { if (not use_max) { out << Q::fa; for (size_t i = 1; i < size; ++i) if (dv[i] == nullptr) out << " " << i; out << " 0\n"; for (size_t i = 1; i < size; ++i) if (dv[i] != nullptr) { out << "d " << i; for (const auto v : *dv[i]) out << " " << v; out << " 0\n"; } } else if (use_renaming) { out << Q::fa; for (size_t i = 1; i < size2; ++i) if (dv[i] == nullptr and R.second[i] != 0) out << " " << R.second[i]; out << " 0\n"; for (size_t i = 1; i < size2; ++i) if (dv[i] != nullptr and R.second[i] != 0) { out << "d " << R.second[i]; for (const auto j : *dv[i]) { assert(dv[j] == nullptr); if (j >= size2) break; if (R.second[j] != 0) out << " " << R.second[j]; } out << " 0\n"; } } else { out << Q::fa; for (size_t i = 1; i <= R.first; ++i) if (dv[i] == nullptr) out << " " << i; out << " 0\n"; for (size_t i = 1; i <= R.first; ++i) if (dv[i] != nullptr) { out << "d " << i; for (const auto v : *dv[i]) if (v > R.first) break; else out << " " << v; out << " 0\n"; } } break;} case DepOp::subtract: { if (not use_max) { AVarset VA; auto hint = VA.end(); for (size_t i = 1; i < size;) { if (dv[i] == nullptr) { SUB_NOTMAX_FA: out << Q::fa << " " << i; hint = VA.insert(hint, i++); while (i < size and dv[i] == nullptr) { out << " " << i; hint = VA.insert(hint, i++); } out << " 0\n"; if (i < size) goto SUB_NOTMAX_EX; else goto SUB_EXIT; } else { SUB_NOTMAX_EX: bool found_ex = false; const auto find = ds.find(VA); const Dependency va = find == ds.end() ? nullptr : &*find; std::vector<gen_uint_t> d_cases; do { if (dv[i] == va) { if (not found_ex) { out << Q::ex << " " << i; found_ex = true; } else out << " " << i; } else d_cases.push_back(i); } while (++i < size and dv[i] != nullptr); if (found_ex) out << " 0\n"; if (not d_cases.empty()) { for (const gen_uint_t v : d_cases) { out << "d " << v; for (const gen_uint_t w : *dv[v]) out << " " << w; out << " 0\n"; } } if (i < size) goto SUB_NOTMAX_FA; else goto SUB_EXIT; } } } else if (use_renaming) { AVarset VA; for (size_t i = 1; i < size2; ++i) { if (dv[i] == nullptr) { SUB_RENAME_FA: bool found_fa = false; do if (const auto ri = R.second[i]; ri != 0) { assert(dv[i] == nullptr); VA.insert(i); if (not found_fa) { out << Q::fa << " " << ri; found_fa = true; } else out << " " << ri; } else if (dv[i] == nullptr) VA.insert(i); while (++i < size2 and (dv[i] == nullptr or R.second[i] == 0)); if (found_fa) out << " 0\n"; if (i < size2) goto SUB_RENAME_EX; else goto SUB_EXIT; } else { SUB_RENAME_EX: assert(i < size2 and dv[i] != nullptr); bool found_ex = false; const auto find = ds.find(VA); const Dependency va = find == ds.end() ? nullptr : &*find; std::vector<gen_uint_t> d_cases; /* Note: the above do-while-loop for fa does grab all immediately following non-occurring ex-variables, while this do-while-loop is not doing that for the fa-variables, since they need to be included into VA. */ do if (const auto ri = R.second[i]; ri != 0) { if (dv[i] == va) { if (not found_ex) { out << Q::ex << " " << ri; found_ex = true; } else out << " " << ri; } else d_cases.push_back(i); } while (++i < size2 and dv[i] != nullptr); if (found_ex) out << " 0\n"; for (const gen_uint_t v : d_cases) { assert(v < size2 and dv[v] != nullptr and R.second[v] != 0); out << "d " << R.second[v]; for (const gen_uint_t w : *dv[v]) if (w < size2 and R.second[w] != 0) out << " " << R.second[w]; out << " 0\n"; } if (i < size2) goto SUB_RENAME_FA; else goto SUB_EXIT; } } } else { [[ unimplemented ]]; } SUB_EXIT: break;} case DepOp::add : { [[ unimplemented ]]; break;} } } struct CoveredUniversal { const AVarSetsystem& Dsets; const Dvector& Dvec; CoveredUniversal(const AVarSetsystem& ds, const Dvector& dv) noexcept : Dsets(ds), Dvec(dv) {} bool operator()(const Clause& C) const noexcept { std::vector<gen_uint_t> A; AVarset D ; for (const Lit x : C) { assert(valid(x)); const gen_uint_t v = x.v.v; assert(v < Dvec.size()); const auto dp = Dvec[v]; if (dp == nullptr) A.push_back(v); else for (const gen_uint_t w : *dp) D.insert(w); } return std::includes(D.begin(), D.end(), A.begin(), A.end()); } }; RDimacsClauseList rand_dqclauseset(RandGen_t& g, const rparam_v& par, const AVarSetsystem& Dsets, const Dvector& Dvec) { const CoveredUniversal valid_clause(Dsets, Dvec); return rand_qclauseset_0(g, par, valid_clause); } enum class DQError { nane_prod = 110, too_many_deps = 111, too_few_deps = 112, overflow = 113, too_much_added = 114, bad_deps = 115, }; } #endif
[ "O.Kullmann@Swansea.ac.uk" ]
O.Kullmann@Swansea.ac.uk
cde575af2c609b94c8830c4d8c92042fcd39bb08
152060017bbdfffa89b3fec361e53cb1b22a8b0e
/algorithms/Greatest Common Divisor.cpp
2280c3c90e2c40e2dfe9934f9dc823b5622cd7a6
[]
no_license
Mohammad-Yasfo/ACM_Problems
ea2d2f0ddcde2e9fea27cc1288d066b6ed155ca1
81f5bd39d53237f4d89df8ee65cf5241eb1f6c59
refs/heads/master
2021-05-12T11:00:49.913083
2018-01-13T18:21:27
2018-01-13T18:21:27
117,373,760
0
0
null
null
null
null
UTF-8
C++
false
false
264
cpp
long gcd(long p, long q, long *x, long *y) { long x1,y1; /* previous coefficients*/ long g; /* value of gcd(p,q) */ if (q > p) return(gcd(q,p,y,x)); if (q == 0) { *x=1; *y=0; return(p); } g = gcd(q, p%q, &x1, &y1); *x = y1; *y = (x1 - floor(p/q)*y1); return(g); }
[ "mohammad.yasfo@gmail.com" ]
mohammad.yasfo@gmail.com
5fc551b5ac295f01c143bf171cb387421af5de74
a4021ebc8dedab84c267301f25a04c82a5225827
/Robot_2D_navigation/src/send_goal.cpp
24a3a6f6e122d8f60e9eadf80d295a3ba4da91ce
[]
no_license
Ramune6110/ROS-navigation-wiki
e661c31b2290ba28a4071a5ec7c10d2e0114dad8
802363854148e90e921ef3a63c9e23683d9ee2c5
refs/heads/master
2022-11-22T06:10:15.585033
2020-07-22T11:23:01
2020-07-22T11:23:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,540
cpp
#include <ros/ros.h> #include <move_base_msgs/MoveBaseAction.h> #include <actionlib/client/simple_action_client.h> #include <tf/transform_broadcaster.h> // アクションクライアントの型 typedef actionlib::SimpleActionClient<move_base_msgs::MoveBaseAction> MoveBaseClient; int main(int argc, char** argv) { // ノード名の初期化 ros::init(argc, argv, "send_goal"); // ROSシステムと通信を行うためのノードハンドルの宣言 ros::NodeHandle nh; // アクションクライアントの宣言 MoveBaseClient ac("controller", true); // アクションサーバが実行されるまで待機 ac.waitForServer(); // アクション目標のオブジェクト宣言 move_base_msgs::MoveBaseGoal goal; goal.target_pose.header.frame_id = "map"; goal.target_pose.header.stamp = ros::Time::now() // アクション目標 try { goal.target_pose.position.x = atof(argv[1]); goal.target_pose.position.y = atof(argv[2]); goal.target_pose.orientation.w = atof(argv[3]); } catch (int e) { goal.target_pose.position.x = 2.0; goal.target_pose.position.y = 0.2; goal.target_pose.orientation.w = 0.1; } // アクション目標の転送 ROS_INFO("Sending move base goal"); ac.sendGoal(goal); ac.waitForResult(); if (ac.getState() == actionlib::SimpleClientGoalState::SUCCEEDED) { ROS_INFO("Success!"); } else { ROS_INFO("Error!"); } return 0; }
[ "arduino6110@gmail.com" ]
arduino6110@gmail.com
b70f7e2229a7fa9e1c630d587ee8a298e9670a45
3d1c29b2001a05e0c960f9eb7adb5535572e4dfe
/MainDialog.cpp
b4169a056c68dfc451a04425a8066bca3f6a460e
[]
no_license
lorenzostefanopiscioli/TaskScheduler
e64b3ab4319cfe7fb6ec2f773826ad1a1f9b2b44
8bf91a476e2c63b1a6b653827bf5cacdc0c84962
refs/heads/master
2022-11-09T22:08:12.891426
2020-06-30T02:12:48
2020-06-30T02:12:48
275,805,808
0
0
null
null
null
null
UTF-8
C++
false
false
5,113
cpp
#include "MainDialog.h" MainDialog::MainDialog( const TiCare::Scheduler *_scheduler, QWidget *parent ) : QDialog( parent ), scheduler( _scheduler ) { createSystemTrayIconActions(); createSystemTrayIcon(); taskComboBox = new QComboBox; taskComboBox->addItem( tr( "Seleziona un task" ) ); taskComboBox->addItems( scheduler->getTaskNameList() ); timeList = new QListWidget; QGroupBox *taskListGroupBox = new QGroupBox( tr( "List" ) ); QVBoxLayout *taskListLayout = new QVBoxLayout; taskListLayout->addWidget( taskComboBox ); taskListLayout->addWidget( timeList ); taskListGroupBox->setLayout( taskListLayout ); QPushButton *configButton = new QPushButton( "Configurazione" ); QPushButton *closeButton = new QPushButton( "Nascondi" ); QGroupBox *buttonGroupBox = new QGroupBox(); QHBoxLayout *buttonGroupLayout = new QHBoxLayout; buttonGroupLayout->addWidget( configButton ); buttonGroupLayout->addWidget( closeButton ); buttonGroupBox->setLayout( buttonGroupLayout ); QGridLayout *mainLayout = new QGridLayout; mainLayout->addWidget( taskListGroupBox, 0, 0, 5, 1 ); mainLayout->addWidget( buttonGroupBox, 5, 0, 1, 1 ); setLayout( mainLayout ); connect( taskComboBox, &QComboBox::currentTextChanged, this, &MainDialog::setTimeList ); connect( closeButton, &QAbstractButton::clicked, this, &MainDialog::hide ); connect( configButton, &QAbstractButton::clicked, this, &MainDialog::configTask ); systemTrayIcon->show(); // Assegna titolo, icona e dimensione alla finestra di gestione // delle impostazioni dello Scheduler setWindowTitle( tr( "Ti-Care | Scheduler" ) ); setWindowIcon( QIcon( ":/Icons/logo64x64.png" ) ); resize( 500, 400 ); } void MainDialog::closeEvent( QCloseEvent *event ) { if ( systemTrayIcon->isVisible() ) { QMessageBox::information( this, tr( "Ti-Care | Scheduler" ), tr( "Il programma resterà attivo nella " "system tray di Windows. Per terminare, " "l'applicazione, cliccare <b>Chiudi</b> " "nel menu contestuale della system " "tray." ) ); // Nascondo il dialogo delle impostazioni hide(); // Interrompo l'ulteriore propagazione dell'evento event->ignore(); } } void MainDialog::createSystemTrayIconActions() { // Connette la voce del menu contestuale della system tray "Impostazioni" // all'apertura della finestra di dialogo per il controllo delle // configurazioni showSettingsDialogAction = new QAction( tr( "&Impostazioni" ), this ); connect( showSettingsDialogAction, &QAction::triggered, this, &QWidget::showNormal ); // Istanzia l'azione di chiusura e la connette con // l'effettiva chiusura dell'applicazione quitAction = new QAction( tr( "&Chiudi" ), this ); connect( quitAction, &QAction::triggered, qApp, &QCoreApplication::quit ); } // Metodo che imposta l'interazione dell'applicazione // con la system tray del sistema operativo void MainDialog::createSystemTrayIcon() { // Crea un menu contestuale per la System Tray systemTrayIconMenu = new QMenu( this ); // Aggiunge al menu contestuale il comando per mostrare // la finestra di gestione delle impostazioni systemTrayIconMenu->addAction( showSettingsDialogAction ); systemTrayIconMenu->addSeparator(); // Aggiunge al menu contestuale il comando per chiudere // l'applicazione systemTrayIconMenu->addAction( quitAction ); // Istanzia un oggetto System Tray Icon systemTrayIcon = new QSystemTrayIcon( this ); // Assegna alla System Tray il menu contestulae systemTrayIcon->setContextMenu( systemTrayIconMenu ); // Assegna l'icona che verrà visualizzata nella System Tray di Windows systemTrayIcon->setIcon( QIcon( ":/Icons/logo64x64.png" ) ); } // Questo metodo serve ad aggiornare la lista dei timer void MainDialog::setTimeList( const QString currentText ) { // Se non viene selezionato alcun task, esco if ( currentText == "Seleziona un task" ) { timeList->clear(); return; } // Svuoto la lista dei nomi dei timer associata al task scelto in // precedenza timeList->clear(); // aggiungo i nomi dei timer alla lista associata al nuovo task scelto timeList->addItems( scheduler->getTask( currentText )->getTimerNameList() ); } // Questo metodo viene invocato a seguito di un click sul bottone impostazioni // ed eseguie il metodo virtuale setConfiguration() del task selezionato nel // combobox void MainDialog::configTask() { // Se non viene selezionato alcun task, esco if ( taskComboBox->currentText() == "Seleziona un task" ) { return; } // Invoco il metodo virtuale per la configurazione del task scheduler->getTask( taskComboBox->currentText() )->setConfiguration(); }
[ "lorenzo.piscioli@digitalview.ai" ]
lorenzo.piscioli@digitalview.ai
09266214731f43a03844b0a98435c4bbfd57cf8d
b6ac6366b207e812b6e608b796633251d901c42e
/primer parcial/a3p2.cpp
0288f5f50926bac3eeeb4e74975d0af768b129f3
[]
no_license
tenapato/estructuraDeDatos
ae77925a5563ce7a6fa981b1bb6e92a0118f41a0
cf06a8f12c0e34a3a44fdb1d91b2ebcdedf47ebb
refs/heads/master
2021-03-06T09:01:01.580090
2020-07-13T05:29:20
2020-07-13T05:29:20
246,192,468
0
0
null
null
null
null
UTF-8
C++
false
false
1,567
cpp
#include <iostream> using namespace std; class Estudiante{ public: string nombre; string matricula; int size = materias; //int *a = 0; void crearHorario(int materias){ horario=new int[materias](); cout<<"Registrado! El numero de materias a llevar el alumno: "<<nombre<< " es: "<<materias<<endl; cout<<"Ahora, ingrese el horario de cada materia :"<<endl; for(int i=0;i<materias;i++){ cin>>horario[i]; } } public: int* horario; public: Estudiante (){ } Estudiante(const Estudiante& deDondeViene){ //Este constructor sirve para que el arreglo copia tenga un espacio de memoria diferente, y por ende, puede tener valores diferentes size = deDondeViene.size; //a=new int[size](); for(int i=0; i<size; i++){ horario[i]=deDondeViene.horario[i]; } } ~Estudiante(){ delete[]materias; } }; int main(){ Estudiante a; int materias; string copia; a.nombre = "Roberto"; a.matricula = "A0123"; cout<<"Ingrese el numero de materias a llevar"<<endl; cin>>materias; a.crearHorario(materias); Estudiante b; b.nombre = "Maria"; b.matricula = "A0146"; cout<<"Para el alumno "<<b.nombre<<" desea copiar el horario de "<<a.nombre<< " ?"<<endl; cin>>copia; if (copia == "si"){ Estudiante b = a; } else { cout<<"Ingrese el numero de materias a llevar"<<endl; cin>>materias; b.crearHorario(materias); } //cout<<a.horario[2]<<endl; //cout<<b.horario[2]<<endl; return 0; }
[ "tenapatricio@gmail.com" ]
tenapatricio@gmail.com
60d97aef8b1e9c4d8c10b1b568d65b6f6a1bb551
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/3.96/e
09a373417267d4987160d5269ebe6360765d348f
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
179,767
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "3.96"; object e; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 22500 ( 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.27 1006.27 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.26 1006.25 1006.24 1006.24 1006.23 1006.23 1006.23 1006.23 1006.24 1006.24 1006.25 1006.25 1006.26 1006.26 1006.27 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.26 1006.25 1006.23 1006.22 1006.21 1006.21 1006.2 1006.2 1006.2 1006.2 1006.2 1006.21 1006.22 1006.23 1006.24 1006.25 1006.25 1006.26 1006.27 1006.28 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.23 1006.22 1006.2 1006.19 1006.17 1006.16 1006.15 1006.14 1006.14 1006.14 1006.15 1006.16 1006.18 1006.19 1006.2 1006.22 1006.23 1006.25 1006.26 1006.27 1006.27 1006.28 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.22 1006.2 1006.18 1006.15 1006.12 1006.1 1006.08 1006.06 1006.05 1006.05 1006.06 1006.07 1006.09 1006.11 1006.13 1006.16 1006.18 1006.2 1006.22 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.24 1006.21 1006.18 1006.15 1006.11 1006.07 1006.03 1005.99 1005.96 1005.93 1005.92 1005.92 1005.92 1005.94 1005.97 1006.01 1006.04 1006.08 1006.12 1006.15 1006.18 1006.21 1006.23 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.23 1006.21 1006.17 1006.13 1006.08 1006.02 1005.96 1005.89 1005.83 1005.78 1005.74 1005.71 1005.71 1005.72 1005.75 1005.79 1005.85 1005.91 1005.97 1006.03 1006.08 1006.13 1006.16 1006.2 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.21 1006.17 1006.11 1006.05 1005.97 1005.88 1005.78 1005.68 1005.58 1005.5 1005.43 1005.39 1005.39 1005.41 1005.45 1005.52 1005.61 1005.7 1005.8 1005.89 1005.97 1006.04 1006.1 1006.15 1006.19 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.28 1006.28 1006.26 1006.24 1006.21 1006.17 1006.11 1006.02 1005.92 1005.8 1005.66 1005.51 1005.36 1005.21 1005.08 1004.98 1004.92 1004.9 1004.93 1005.01 1005.12 1005.25 1005.4 1005.54 1005.68 1005.81 1005.92 1006.01 1006.08 1006.14 1006.18 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.22 1006.17 1006.11 1006.02 1005.9 1005.74 1005.56 1005.35 1005.12 1004.88 1004.66 1004.46 1004.3 1004.21 1004.19 1004.24 1004.35 1004.52 1004.72 1004.94 1005.17 1005.38 1005.57 1005.74 1005.88 1005.99 1006.07 1006.13 1006.18 1006.22 1006.24 1006.26 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.23 1006.19 1006.12 1006.02 1005.89 1005.71 1005.48 1005.21 1004.9 1004.55 1004.2 1003.85 1003.55 1003.32 1003.18 1003.15 1003.22 1003.39 1003.64 1003.95 1004.28 1004.62 1004.94 1005.23 1005.48 1005.68 1005.85 1005.97 1006.07 1006.13 1006.18 1006.22 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.21 1006.15 1006.05 1005.91 1005.71 1005.45 1005.11 1004.71 1004.25 1003.74 1003.21 1002.7 1002.26 1001.92 1001.72 1001.67 1001.78 1002.03 1002.4 1002.86 1003.35 1003.85 1004.32 1004.74 1005.11 1005.41 1005.65 1005.83 1005.97 1006.07 1006.14 1006.19 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.26 1006.23 1006.18 1006.08 1005.94 1005.74 1005.45 1005.08 1004.6 1004.01 1003.34 1002.59 1001.83 1001.09 1000.44 999.953 999.661 999.594 999.756 1000.13 1000.67 1001.32 1002.04 1002.77 1003.45 1004.07 1004.6 1005.03 1005.38 1005.64 1005.84 1005.98 1006.08 1006.15 1006.2 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.21 1006.13 1006 1005.8 1005.51 1005.1 1004.57 1003.88 1003.05 1002.08 1001.01 999.915 998.864 997.949 997.253 996.841 996.75 996.983 997.514 998.285 999.223 1000.25 1001.28 1002.26 1003.14 1003.89 1004.51 1005 1005.38 1005.66 1005.86 1006 1006.1 1006.17 1006.21 1006.24 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.24 1006.18 1006.07 1005.88 1005.6 1005.19 1004.63 1003.87 1002.91 1001.74 1000.37 998.872 997.332 995.863 994.588 993.621 993.049 992.923 993.25 993.991 995.071 996.387 997.826 999.278 1000.65 1001.89 1002.95 1003.82 1004.51 1005.03 1005.42 1005.7 1005.9 1006.03 1006.12 1006.19 1006.23 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.26 1006.22 1006.14 1005.98 1005.73 1005.34 1004.78 1004 1002.96 1001.62 999.993 998.102 996.035 993.918 991.905 990.159 988.833 988.044 987.865 988.307 989.323 990.808 992.622 994.608 996.617 998.521 1000.23 1001.7 1002.9 1003.85 1004.57 1005.11 1005.49 1005.76 1005.94 1006.07 1006.15 1006.2 1006.24 1006.27 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.28 1006.26 1006.2 1006.09 1005.87 1005.53 1005 1004.24 1003.18 1001.76 999.94 997.72 995.154 992.36 989.507 986.795 984.439 982.638 981.557 981.297 981.881 983.245 985.252 987.71 990.409 993.143 995.737 998.068 1000.06 1001.7 1002.99 1003.98 1004.7 1005.22 1005.58 1005.83 1006 1006.11 1006.18 1006.22 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.28 1006.25 1006.18 1006.02 1005.73 1005.27 1004.56 1003.55 1002.13 1000.23 997.791 994.826 991.414 987.712 983.935 980.335 977.191 974.772 973.308 972.94 973.7 975.504 978.169 981.443 985.044 988.699 992.174 995.299 997.976 1000.17 1001.9 1003.22 1004.19 1004.88 1005.36 1005.69 1005.91 1006.05 1006.14 1006.2 1006.24 1006.27 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.28 1006.24 1006.14 1005.93 1005.55 1004.94 1004.02 1002.68 1000.82 998.312 995.11 991.23 986.786 981.971 977.046 972.329 968.187 964.992 963.055 962.565 963.557 965.914 969.394 973.669 978.376 983.162 987.723 991.834 995.36 998.254 1000.54 1002.27 1003.54 1004.45 1005.09 1005.51 1005.8 1005.98 1006.1 1006.18 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.29 1006.28 1006.28 1006.28 1006.29 1006.28 1006.23 1006.1 1005.82 1005.32 1004.54 1003.35 1001.63 999.211 995.973 991.849 986.879 981.202 975.041 968.706 962.61 957.252 953.137 950.671 950.081 951.389 954.429 958.888 964.352 970.365 976.485 982.332 987.618 992.167 995.908 998.862 1001.11 1002.76 1003.93 1004.75 1005.3 1005.67 1005.9 1006.05 1006.15 1006.21 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.29 1006.28 1006.22 1006.04 1005.68 1005.06 1004.06 1002.56 1000.37 997.294 993.189 987.989 981.751 974.626 966.859 958.832 951.098 944.34 939.218 936.217 935.578 937.296 941.152 946.751 953.582 961.086 968.725 976.034 982.664 988.391 993.12 996.865 999.718 1001.82 1003.31 1004.35 1005.05 1005.51 1005.81 1005.99 1006.11 1006.19 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.27 1006.28 1006.3 1006.29 1006.21 1005.98 1005.52 1004.74 1003.51 1001.63 998.898 995.065 989.966 983.547 975.867 967.071 957.428 947.435 937.858 929.598 923.447 919.928 919.278 921.469 926.242 933.129 941.507 950.69 960.02 968.947 977.056 984.086 989.916 994.555 998.103 1000.72 1002.59 1003.88 1004.75 1005.32 1005.69 1005.93 1006.07 1006.16 1006.22 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.27 1006.27 1006.28 1006.3 1006.3 1006.19 1005.91 1005.35 1004.39 1002.88 1000.59 997.233 992.546 986.346 978.583 969.297 958.608 946.838 934.674 923.152 913.37 906.184 902.111 901.386 904.016 909.75 918.06 928.189 939.279 950.513 961.222 970.934 979.36 986.372 991.978 996.287 999.479 1001.76 1003.35 1004.41 1005.12 1005.57 1005.85 1006.03 1006.14 1006.2 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.27 1006.27 1006.29 1006.32 1006.31 1006.18 1005.83 1005.15 1004.01 1002.19 999.437 995.401 989.784 982.404 973.197 962.16 949.388 935.31 920.883 907.416 896.119 887.816 882.993 881.964 884.868 891.535 901.392 913.52 926.824 940.253 952.976 964.441 974.351 982.598 989.211 994.32 998.123 1000.86 1002.76 1004.04 1004.88 1005.43 1005.77 1005.98 1006.11 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.28 1006.26 1006.26 1006.29 1006.33 1006.32 1006.16 1005.75 1004.95 1003.6 1001.47 998.211 993.448 986.856 978.249 967.531 954.636 939.656 923.201 906.54 891.187 878.327 868.668 862.726 861.023 863.951 871.473 882.981 897.358 913.22 929.209 944.252 957.681 969.189 978.718 986.354 992.271 996.697 999.895 1002.13 1003.64 1004.64 1005.28 1005.68 1005.93 1006.08 1006.17 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.26 1006.26 1006.29 1006.34 1006.33 1006.15 1005.67 1004.74 1003.19 1000.72 996.949 991.439 983.861 974.019 961.77 946.97 929.753 910.977 892.205 875.023 860.453 849.093 841.619 838.904 841.648 849.944 863.127 879.891 898.556 917.417 935.093 950.73 963.981 974.849 983.514 990.225 995.261 998.916 1001.48 1003.23 1004.38 1005.12 1005.58 1005.87 1006.05 1006.15 1006.22 1006.26 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.25 1006.25 1006.29 1006.36 1006.35 1006.15 1005.6 1004.55 1002.79 999.993 995.702 989.454 980.914 969.875 956.124 939.453 920.088 899.162 878.454 859.473 843.023 829.696 820.484 816.669 819.194 828.194 842.931 861.964 883.397 905.211 925.686 943.71 958.834 971.098 980.791 988.266 993.877 997.965 1000.85 1002.82 1004.12 1004.96 1005.49 1005.82 1006.01 1006.13 1006.21 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.3 1006.28 1006.25 1006.24 1006.29 1006.37 1006.37 1006.15 1005.54 1004.38 1002.43 999.314 994.528 987.583 978.145 965.99 950.832 932.417 911.102 888.283 865.841 845.114 826.74 811.474 800.713 796.061 798.525 808.151 824.132 845.001 868.794 893.291 916.453 936.865 953.9 967.58 978.281 986.475 992.611 997.086 1000.25 1002.43 1003.87 1004.81 1005.4 1005.76 1005.98 1006.12 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.24 1006.23 1006.29 1006.38 1006.4 1006.17 1005.51 1004.25 1002.13 998.724 993.49 985.916 975.679 962.537 946.133 926.194 903.224 878.829 854.89 832.566 812.472 795.66 783.897 778.908 781.554 791.691 808.463 830.509 855.963 882.552 907.996 930.568 949.4 964.432 976.081 984.928 991.52 996.325 999.735 1002.08 1003.65 1004.67 1005.32 1005.71 1005.95 1006.1 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.24 1006.22 1006.28 1006.39 1006.43 1006.19 1005.51 1004.17 1001.91 998.262 992.646 984.541 973.637 959.677 942.252 921.089 896.835 871.225 846.082 822.455 801.083 783.351 771.246 766.413 769.436 779.936 797.036 819.558 845.875 873.803 900.925 925.232 945.595 961.81 974.292 983.693 990.657 995.72 999.317 1001.8 1003.47 1004.56 1005.24 1005.67 1005.93 1006.09 1006.18 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.29 1006.31 1006.31 1006.29 1006.23 1006.21 1006.27 1006.4 1006.46 1006.24 1005.53 1004.15 1001.78 997.96 992.052 983.537 972.123 957.551 939.378 917.354 892.235 865.809 839.823 815.31 793.219 775.188 763.254 758.868 762.337 773.066 790.146 812.589 839.064 867.584 895.708 921.218 942.729 959.87 973.006 982.832 990.064 995.303 999.023 1001.6 1003.33 1004.47 1005.19 1005.64 1005.91 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.29 1006.29 1006.31 1006.32 1006.29 1006.23 1006.2 1006.25 1006.4 1006.49 1006.29 1005.6 1004.19 1001.78 997.845 991.75 982.963 971.215 956.26 937.648 915.162 889.625 862.809 836.395 811.474 789.193 771.311 759.781 755.874 759.718 770.572 787.462 809.508 835.645 864.14 892.63 918.777 940.993 958.736 972.3 982.389 989.769 995.093 998.869 1001.49 1003.26 1004.42 1005.16 1005.62 1005.9 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.29 1006.3 1006.32 1006.3 1006.24 1006.18 1006.23 1006.38 1006.51 1006.36 1005.7 1004.31 1001.89 997.934 991.77 982.864 970.969 955.868 937.134 914.595 889.089 862.322 835.917 811.054 789.007 771.519 760.398 756.797 760.816 771.683 788.342 809.897 835.438 863.472 891.79 918.038 940.497 958.487 972.221 982.391 989.789 995.101 998.861 1001.47 1003.24 1004.4 1005.14 1005.61 1005.89 1006.06 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.28 1006.3 1006.32 1006.31 1006.25 1006.18 1006.2 1006.36 1006.52 1006.44 1005.83 1004.49 1002.13 998.231 992.124 983.258 971.408 956.398 937.853 915.647 890.596 864.299 838.328 813.934 792.439 775.48 764.688 761.148 765.061 775.774 792.186 813.275 838.127 865.423 893.145 919.016 941.274 959.148 972.782 982.84 990.12 995.325 999 1001.55 1003.28 1004.42 1005.15 1005.61 1005.9 1006.06 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.28 1006.29 1006.32 1006.33 1006.26 1006.17 1006.17 1006.31 1006.51 1006.51 1005.99 1004.74 1002.48 998.726 992.803 984.141 972.526 957.831 939.757 918.231 894.014 868.57 843.412 819.827 799.132 782.833 772.358 768.712 772.263 782.612 798.705 819.329 843.437 869.789 896.566 921.639 943.283 960.692 973.959 983.716 990.745 995.751 999.276 1001.72 1003.38 1004.48 1005.19 1005.63 1005.9 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.32 1006.31 1006.28 1006.28 1006.32 1006.34 1006.28 1006.18 1006.14 1006.26 1006.48 1006.56 1006.16 1005.03 1002.92 999.397 993.779 985.484 974.288 960.115 942.759 922.204 899.138 874.876 850.848 828.341 808.658 793.191 783.15 779.396 782.449 792.241 807.852 827.903 851.143 876.339 901.857 925.76 946.421 963.044 975.697 984.974 991.631 996.354 999.672 1001.97 1003.53 1004.57 1005.24 1005.66 1005.92 1006.08 1006.17 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.3 1006.31 1006.32 1006.31 1006.28 1006.27 1006.31 1006.34 1006.31 1006.2 1006.12 1006.2 1006.43 1006.59 1006.33 1005.36 1003.45 1000.21 995.002 987.228 976.631 963.166 946.732 927.379 905.718 882.91 860.271 839.052 820.559 806.114 796.705 792.98 795.538 804.632 819.546 838.801 860.96 884.768 908.747 931.162 950.523 966.086 977.909 986.551 992.733 997.103 1000.17 1002.29 1003.73 1004.69 1005.31 1005.7 1005.95 1006.09 1006.18 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.29 1006.26 1006.29 1006.34 1006.33 1006.23 1006.12 1006.14 1006.34 1006.57 1006.47 1005.7 1004.02 1001.12 996.407 989.288 979.458 966.873 951.528 933.543 913.471 892.325 871.281 851.517 834.35 821.082 812.502 808.993 811.138 819.461 833.474 851.678 872.507 894.691 916.893 937.567 955.38 969.665 980.485 988.371 993.994 997.959 1000.73 1002.65 1003.96 1004.83 1005.39 1005.75 1005.97 1006.11 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.32 1006.33 1006.3 1006.26 1006.28 1006.33 1006.35 1006.27 1006.14 1006.1 1006.24 1006.5 1006.56 1006.02 1004.62 1002.08 997.92 991.562 982.646 971.101 956.984 940.479 922.111 902.77 883.471 865.283 849.531 837.539 829.921 826.774 828.606 836.152 849.135 866.079 885.354 905.707 925.935 944.677 960.758 973.605 983.302 990.347 995.356 998.881 1001.34 1003.05 1004.21 1004.98 1005.49 1005.81 1006 1006.13 1006.2 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.33 1006.31 1006.27 1006.26 1006.31 1006.35 1006.32 1006.19 1006.08 1006.14 1006.39 1006.57 1006.28 1005.2 1003.05 999.468 993.928 986.039 975.678 962.914 947.972 931.37 913.91 896.449 879.913 865.622 854.943 848.339 845.616 847.216 854.042 865.956 881.502 899.047 917.404 935.512 952.188 966.419 977.731 986.233 992.39 996.758 999.829 1001.97 1003.46 1004.47 1005.14 1005.58 1005.86 1006.04 1006.14 1006.21 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.32 1006.32 1006.3 1006.3 1006.32 1006.32 1006.28 1006.25 1006.28 1006.34 1006.35 1006.24 1006.1 1006.07 1006.25 1006.49 1006.44 1005.71 1003.99 1000.99 996.275 989.47 980.399 969.097 955.788 940.99 925.452 909.872 895.011 882.189 872.823 867.197 864.873 866.294 872.496 883.366 897.424 913.099 929.342 945.244 959.791 972.124 981.868 989.156 994.417 998.145 1000.76 1002.59 1003.86 1004.73 1005.3 1005.68 1005.92 1006.07 1006.16 1006.22 1006.26 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.32 1006.33 1006.3 1006.26 1006.26 1006.32 1006.36 1006.3 1006.16 1006.05 1006.12 1006.35 1006.47 1006.09 1004.84 1002.42 998.516 992.788 985.051 975.278 963.651 950.684 937.091 923.4 910.199 898.845 890.762 886.002 883.985 885.274 890.966 900.825 913.321 927.025 941.088 954.768 967.196 977.652 985.855 991.96 996.355 999.467 1001.66 1003.19 1004.25 1004.97 1005.46 1005.77 1005.98 1006.1 1006.18 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.32 1006.31 1006.27 1006.25 1006.29 1006.35 1006.35 1006.23 1006.08 1006.03 1006.18 1006.38 1006.28 1005.51 1003.7 1000.58 995.889 989.458 981.207 971.258 960.133 948.496 936.655 925.074 915.197 908.347 904.291 902.48 903.713 909.008 917.852 928.698 940.37 952.26 963.773 974.159 982.821 989.564 994.556 998.144 1000.69 1002.48 1003.73 1004.6 1005.2 1005.6 1005.86 1006.03 1006.13 1006.2 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.32 1006.32 1006.31 1006.3 1006.31 1006.32 1006.29 1006.26 1006.26 1006.32 1006.36 1006.3 1006.15 1006.03 1006.05 1006.21 1006.29 1005.92 1004.73 1002.39 998.691 993.5 986.684 978.347 969.045 959.32 949.229 939.227 930.856 925.16 921.635 919.994 921.288 926.244 933.993 943.094 952.729 962.533 972.009 980.492 987.495 992.9 996.884 999.745 1001.78 1003.21 1004.22 1004.93 1005.41 1005.73 1005.94 1006.08 1006.16 1006.22 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.32 1006.31 1006.27 1006.25 1006.28 1006.34 1006.34 1006.24 1006.09 1006 1006.04 1006.16 1006.07 1005.4 1003.82 1001.1 997.076 991.571 984.752 977.215 969.272 960.769 952.326 945.479 940.8 937.674 936.277 937.747 942.297 948.788 956.082 963.772 971.665 979.294 986.062 991.583 995.805 998.905 1001.13 1002.72 1003.85 1004.65 1005.2 1005.59 1005.84 1006.01 1006.12 1006.19 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.32 1006.31 1006.3 1006.31 1006.32 1006.29 1006.26 1006.26 1006.3 1006.34 1006.31 1006.19 1006.04 1005.96 1006 1006 1005.7 1004.79 1002.99 1000.03 995.734 990.382 984.516 978.126 971.047 964.178 958.795 954.934 952.168 951.158 952.8 956.723 961.778 967.318 973.282 979.518 985.536 990.803 995.041 998.254 1000.61 1002.31 1003.53 1004.4 1005.01 1005.44 1005.74 1005.94 1006.07 1006.15 1006.21 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.26 1006.27 1006.31 1006.33 1006.27 1006.14 1005.99 1005.91 1005.86 1005.74 1005.3 1004.25 1002.2 999.039 995.14 990.773 985.674 979.947 974.657 970.537 967.291 964.956 964.418 966.031 969.032 972.611 976.638 981.207 986.076 990.726 994.717 997.876 1000.26 1002 1003.27 1004.19 1004.84 1005.31 1005.64 1005.87 1006.02 1006.12 1006.18 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.3 1006.27 1006.26 1006.28 1006.31 1006.3 1006.23 1006.09 1005.93 1005.8 1005.7 1005.49 1004.87 1003.51 1001.43 998.867 995.712 991.72 987.376 983.552 980.38 977.646 975.86 975.7 976.946 978.865 981.191 984.113 987.647 991.412 994.915 997.846 1000.13 1001.85 1003.11 1004.04 1004.72 1005.21 1005.55 1005.8 1005.97 1006.08 1006.16 1006.21 1006.24 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.27 1006.26 1006.28 1006.3 1006.28 1006.19 1006.03 1005.87 1005.74 1005.54 1005.07 1004.21 1003.02 1001.43 999.139 996.2 993.214 990.544 988.034 985.855 984.647 984.597 985.236 986.239 987.77 990.018 992.791 995.643 998.192 1000.27 1001.87 1003.08 1003.98 1004.64 1005.13 1005.49 1005.75 1005.93 1006.05 1006.14 1006.19 1006.23 1006.26 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.27 1006.27 1006.27 1006.27 1006.23 1006.14 1006.02 1005.85 1005.58 1005.17 1004.66 1003.98 1002.89 1001.24 999.303 997.402 995.473 993.511 991.964 991.189 990.997 991.111 991.638 992.839 994.681 996.826 998.897 1000.67 1002.08 1003.18 1004.01 1004.63 1005.11 1005.45 1005.71 1005.89 1006.02 1006.11 1006.18 1006.22 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.28 1006.27 1006.26 1006.26 1006.25 1006.22 1006.13 1005.96 1005.7 1005.4 1005.07 1004.54 1003.67 1002.56 1001.39 1000.12 998.653 997.256 996.272 995.693 995.338 995.271 995.746 996.836 998.325 999.889 1001.3 1002.47 1003.4 1004.13 1004.69 1005.12 1005.45 1005.7 1005.88 1006.01 1006.1 1006.16 1006.21 1006.24 1006.26 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.23 1006.17 1006.05 1005.89 1005.7 1005.4 1004.9 1004.26 1003.58 1002.8 1001.82 1000.77 999.891 999.25 998.742 998.409 998.463 999.021 999.965 1001.05 1002.09 1002.99 1003.73 1004.33 1004.81 1005.19 1005.48 1005.71 1005.87 1006 1006.09 1006.15 1006.2 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.23 1006.19 1006.13 1006.06 1005.9 1005.62 1005.26 1004.87 1004.4 1003.78 1003.05 1002.39 1001.84 1001.36 1000.97 1000.82 1001.04 1001.57 1002.26 1002.96 1003.59 1004.14 1004.6 1004.98 1005.29 1005.54 1005.74 1005.89 1006 1006.09 1006.15 1006.19 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.22 1006.19 1006.12 1005.99 1005.81 1005.62 1005.36 1004.98 1004.51 1004.07 1003.67 1003.28 1002.93 1002.71 1002.74 1003 1003.38 1003.8 1004.2 1004.57 1004.89 1005.18 1005.42 1005.63 1005.79 1005.92 1006.02 1006.09 1006.15 1006.19 1006.22 1006.25 1006.26 1006.27 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.25 1006.21 1006.15 1006.08 1006 1005.87 1005.65 1005.39 1005.12 1004.87 1004.59 1004.31 1004.11 1004.05 1004.14 1004.32 1004.53 1004.75 1004.98 1005.19 1005.39 1005.57 1005.73 1005.85 1005.96 1006.04 1006.11 1006.16 1006.19 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.25 1006.22 1006.2 1006.17 1006.1 1005.99 1005.85 1005.72 1005.57 1005.39 1005.2 1005.04 1004.97 1004.98 1005.03 1005.12 1005.22 1005.34 1005.47 1005.6 1005.72 1005.83 1005.93 1006.01 1006.07 1006.13 1006.17 1006.2 1006.23 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.24 1006.21 1006.15 1006.09 1006.03 1005.95 1005.84 1005.72 1005.62 1005.56 1005.54 1005.54 1005.55 1005.58 1005.64 1005.71 1005.78 1005.86 1005.93 1006 1006.06 1006.11 1006.15 1006.18 1006.21 1006.23 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.25 1006.22 1006.2 1006.17 1006.14 1006.08 1006.01 1005.95 1005.91 1005.88 1005.86 1005.84 1005.84 1005.86 1005.89 1005.94 1005.98 1006.03 1006.07 1006.11 1006.14 1006.17 1006.2 1006.22 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.24 1006.22 1006.19 1006.15 1006.12 1006.1 1006.08 1006.05 1006.03 1006.02 1006.02 1006.04 1006.05 1006.08 1006.1 1006.13 1006.15 1006.18 1006.2 1006.21 1006.23 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.26 1006.24 1006.22 1006.21 1006.2 1006.18 1006.16 1006.14 1006.13 1006.13 1006.13 1006.14 1006.15 1006.16 1006.18 1006.19 1006.2 1006.22 1006.23 1006.24 1006.25 1006.26 1006.27 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.27 1006.26 1006.25 1006.24 1006.23 1006.22 1006.21 1006.2 1006.2 1006.2 1006.2 1006.2 1006.2 1006.21 1006.22 1006.23 1006.24 1006.24 1006.25 1006.26 1006.26 1006.27 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.28 1006.27 1006.27 1006.26 1006.25 1006.25 1006.24 1006.24 1006.24 1006.23 1006.23 1006.24 1006.24 1006.24 1006.25 1006.25 1006.26 1006.26 1006.27 1006.27 1006.28 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 ) ; boundaryField { emptyPatches_empt { type empty; } top_cyc { type cyclic; } bottom_cyc { type cyclic; } inlet_cyc { type cyclic; } outlet_cyc { type cyclic; } } // ************************************************************************* //
[ "tdg@debian" ]
tdg@debian
0551d10cb1609ecf39c8042925de9f5d92207f77
9fcabf72c99fff2b51334dd1bce0d993de0b2d96
/Lesson01/Chapter02/GetWords.cpp
45460680ad88965d72f2c373d3080e6af587596a
[]
no_license
tuturuam/TICPP
d5f13c69f3aa6082fc0a4334974eb38d69ba4163
fc8924091103cc259c115e0e2129ae304bbff50f
refs/heads/master
2021-05-09T02:45:46.073690
2018-01-28T04:38:22
2018-01-28T04:38:22
119,219,986
0
0
null
null
null
null
UTF-8
C++
false
false
133
cpp
#include <iostream> #include <fstream> using namespace std; int main() { cout << "There are three word word word words" << endl; }
[ "aizadmoh@gmail.com" ]
aizadmoh@gmail.com
2aede90569ac02da64f8295f674cf1d77d9b9546
819c616c3090c8a13a0e7f1a73fe10ed31f91623
/src/asmjit/base/podlist.h
899e0b921f459b82ab20d5a10c3f54eb0cba1f26
[ "Zlib" ]
permissive
xsacha/asmjit
a592b58282ef8c4c66416b733883e67ec44de901
a66efd54609aab7dd98e34c069937f34aa7c8f95
refs/heads/master
2021-01-18T04:42:40.145243
2014-06-07T19:57:07
2014-06-07T19:57:07
21,663,740
1
0
null
null
null
null
UTF-8
C++
false
false
3,038
h
// [AsmJit] // Complete x86/x64 JIT and Remote Assembler for C++. // // [License] // Zlib - See LICENSE.md file in the package. // [Guard] #ifndef _ASMJIT_BASE_PODLIST_H #define _ASMJIT_BASE_PODLIST_H // [Dependencies - AsmJit] #include "../base/globals.h" // [Api-Begin] #include "../apibegin.h" namespace asmjit { //! \addtogroup asmjit_base_util //! \{ // ============================================================================ // [asmjit::PodList<T>] // ============================================================================ //! \internal template <typename T> struct PodList { ASMJIT_NO_COPY(PodList<T>) // -------------------------------------------------------------------------- // [Link] // -------------------------------------------------------------------------- struct Link { // -------------------------------------------------------------------------- // [Accessors] // -------------------------------------------------------------------------- //! Get next node. ASMJIT_INLINE Link* getNext() const { return _next; } //! Get value. ASMJIT_INLINE T getValue() const { return _value; } //! Set value to `value`. ASMJIT_INLINE void setValue(const T& value) { _value = value; } // -------------------------------------------------------------------------- // [Members] // -------------------------------------------------------------------------- Link* _next; T _value; }; // -------------------------------------------------------------------------- // [Construction / Destruction] // -------------------------------------------------------------------------- ASMJIT_INLINE PodList() : _first(NULL), _last(NULL) {} ASMJIT_INLINE ~PodList() {} // -------------------------------------------------------------------------- // [Data] // -------------------------------------------------------------------------- ASMJIT_INLINE bool isEmpty() const { return _first != NULL; } ASMJIT_INLINE Link* getFirst() const { return _first; } ASMJIT_INLINE Link* getLast() const { return _last; } // -------------------------------------------------------------------------- // [Ops] // -------------------------------------------------------------------------- ASMJIT_INLINE void clear() { reset(); } ASMJIT_INLINE void reset() { _first = NULL; _last = NULL; } ASMJIT_INLINE void prepend(Link* link) { link->_next = _first; if (_first == NULL) _last = link; _first = link; } ASMJIT_INLINE void append(Link* link) { link->_next = NULL; if (_first == NULL) _first = link; else _last->_next = link; _last = link; } // -------------------------------------------------------------------------- // [Members] // -------------------------------------------------------------------------- Link* _first; Link* _last; }; //! \} } // asmjit namespace // [Api-End] #include "../apiend.h" // [Guard] #endif // _ASMJIT_BASE_PODLIST_H
[ "kobalicek.petr@gmail.com" ]
kobalicek.petr@gmail.com
b410efbe4181130e5a3eeb6cb6c51c8134b06e79
90baf5e84e934b2f979313292790d3b45534a9d9
/Triangle.cpp
0c6827e3d1f6cbae4ab17559e322b8d66e24d9f3
[]
no_license
Falki94/Cpp
bad8cec455559c04fb4e502adcab3d1d7481294c
a636fa0e42dd33e0af4756164a9ec6621412f4a0
refs/heads/master
2020-05-05T11:25:23.026390
2019-04-07T16:03:13
2019-04-07T16:03:13
179,988,798
0
0
null
null
null
null
UTF-8
C++
false
false
2,732
cpp
#include <iostream> #include <windows.h> #include <conio.h> #include <string> #define COLUMNS 120 // maksymalna liczba kolumn #define ROWS 30 // maksymalna liczba wierszy` using namespace std; void triangle(int h, int w, char znak, int x, int y); // podstawowa funkcja rysujaca trojkat void clear(); //czyszczenie ekranu void gotoxy(int column, int line); // ustawienie wspolrzednych kursora int main() { int strzalka, h, w; char znak; string info = "Wprowadz znak i rozmiar trojkata wysokosc i szerokosc (wieksze od 1)\n."; cout << info; while (true) { cin >> znak >> h >> w; if (h > 1 && w > 1) { break; } else { cout << info; } } triangle(h, w, znak, 0, 0); int x = 0; int y = 0; while (true) { unsigned char z = _getch(); if (z == 27) break; //ESC - wyjscie z programu if (z == 224) { z = _getch(); switch (z) { case 72: //strzałka w górę triangle(h, w, znak, x, (y > 0) ? --y : y); break; case 80: //strzałka w dół triangle(h, w, znak, x, (y < ROWS) ? ++y : y); break; case 75: //strzałka w lewo triangle(h, w, znak, (x > 0) ? --x : x, y); break; case 77: //strzałka w prawo triangle(h, w, znak, (x < COLUMNS) ? ++x : x, y); break; } } else if (z == 43) { // Powiekszanie za pomoca plusa '+' if ((h + y) < ROWS) { ++h; } else { if (y > 0) { --y; h++; } } if ((w + x) < COLUMNS) { ++w; } else { if (x > 0) { --x; w++; } } triangle(h, w, znak, x, y); } else if (z == 45) { // Zmniejszanie za pomoca minusa '-' triangle(h > 2 ? --h : h, w > 2 ? --w : w, znak, x, y); } } return 0; } void triangle(int h, int w, char znak, int x, int y) { clear(); gotoxy(x, y); for (int i = 1; i <= h; i++) { if (i == 1) { cout << znak; continue; } double a = (double)w / h * i; a = (a == 0) ? 1 : a; for (int j = 1; j <= a; j++) { gotoxy(x + j - 1, y + i - 1); cout << znak; } } } void clear() { COORD topLeft = { 0, 0 }; HANDLE console = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO screen; DWORD written; GetConsoleScreenBufferInfo(console, &screen); FillConsoleOutputCharacterA( console, ' ', screen.dwSize.X * screen.dwSize.Y, topLeft, &written ); FillConsoleOutputAttribute( console, FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE, screen.dwSize.X * screen.dwSize.Y, topLeft, &written ); SetConsoleCursorPosition(console, topLeft); } void gotoxy(int column, int line) { COORD c; c.X = column; c.Y = line; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c); }
[ "noreply@github.com" ]
Falki94.noreply@github.com
7748bbc9916432d6b16e963010e7b5744815927b
91ba0c0c42b3fcdbc2a7778e4a4684ab1942714b
/Cpp/SDK/bp_fire_bin_a_parameters.h
014c48b3081e180f92cde85a5688de5638a1054d
[]
no_license
zH4x/SoT-SDK-2.1.1
0f8c1ec3ad8821de82df3f75a0356642b581b8c6
35144dfc629aeddf96c1741e9e27e5113a2b1bb3
refs/heads/main
2023-05-12T09:03:32.050860
2021-06-05T01:54:15
2021-06-05T01:54:15
373,997,263
0
0
null
null
null
null
UTF-8
C++
false
false
932
h
#pragma once // Name: SoT, Version: 2.1.1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function bp_fire_bin_a.bp_fire_bin_a_C.UserConstructionScript struct Abp_fire_bin_a_C_UserConstructionScript_Params { }; // Function bp_fire_bin_a.bp_fire_bin_a_C.ReceiveBeginPlay struct Abp_fire_bin_a_C_ReceiveBeginPlay_Params { }; // Function bp_fire_bin_a.bp_fire_bin_a_C.ExecuteUbergraph_bp_fire_bin_a struct Abp_fire_bin_a_C_ExecuteUbergraph_bp_fire_bin_a_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
7e5f9593defffd8beccd309c17b645fc6255cf1a
6e57bdc0a6cd18f9f546559875256c4570256c45
/cts/tests/tests/debug/libdebugtest/android_debug_cts.cpp
3aa43181f6632b2419a20b1137993944d76e2a06
[]
no_license
dongdong331/test
969d6e945f7f21a5819cd1d5f536d12c552e825c
2ba7bcea4f9d9715cbb1c4e69271f7b185a0786e
refs/heads/master
2023-03-07T06:56:55.210503
2020-12-07T04:15:33
2020-12-07T04:15:33
134,398,935
2
1
null
2022-11-21T07:53:41
2018-05-22T10:26:42
null
UTF-8
C++
false
false
4,154
cpp
/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <jni.h> #include <gtest/gtest.h> #include <android/log.h> #include <errno.h> #include <sys/ptrace.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/wait.h> #include <unistd.h> #include <functional> #include <vector> #define LOG_TAG "Cts-DebugTest" // Used by child processes only #define assert_or_exit(x) \ do { \ if(x) break; \ __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "Assertion " #x " failed. errno(%d): %s", \ errno, strerror(errno)); \ _exit(1); \ } while (0) static void parent(pid_t child) { int status; int wpid = waitpid(child, &status, 0); ASSERT_EQ(child, wpid); ASSERT_TRUE(WIFEXITED(status)); ASSERT_EQ(0, WEXITSTATUS(status)); } static void run_test(const std::function<void(pid_t)> &test) { pid_t pid = fork(); ASSERT_NE(-1, pid) << "fork() failed with " << strerror(errno); if (pid != 0) { parent(pid); } else { // child test(getppid()); _exit(0); } } static void ptraceAttach(pid_t parent) { assert_or_exit(ptrace(PTRACE_ATTACH, parent, nullptr, nullptr) == 0); int status; assert_or_exit(waitpid(parent, &status, __WALL) == parent); assert_or_exit(WIFSTOPPED(status)); assert_or_exit(WSTOPSIG(status) == SIGSTOP); assert_or_exit(ptrace(PTRACE_DETACH, parent, nullptr, nullptr) == 0); } TEST(DebugTest, ptraceAttach) { run_test(ptraceAttach); } static void processVmReadv(pid_t parent, const std::vector<long *> &addresses) { long destination; iovec local = { &destination, sizeof destination }; for (long *address : addresses) { // Since we are forked, the address will be valid in the remote process as well. iovec remote = { address, sizeof *address }; __android_log_print(ANDROID_LOG_INFO, LOG_TAG, "%s About to read %p\n", __func__, address); assert_or_exit(process_vm_readv(parent, &local, 1, &remote, 1, 0) == sizeof destination); // Compare the data with the contents of our memory. assert_or_exit(destination == *address); } } static long global_variable = 0x47474747; // public static native boolean processVmReadv(); TEST(DebugTest, processVmReadv) { long stack_variable = 0x42424242; // This runs the test with a selection of different kinds of addresses and // makes sure the child process (simulating a debugger) can read them. run_test([&](pid_t parent) { processVmReadv(parent, std::vector<long *>{ &global_variable, &stack_variable, reinterpret_cast<long *>(&processVmReadv)}); }); } // public static native boolean processVmReadvNullptr(); TEST(DebugTest, processVmReadvNullptr) { // Make sure reading unallocated memory behaves reasonably. run_test([](pid_t parent) { long destination; iovec local = {&destination, sizeof destination}; iovec remote = {nullptr, sizeof(long)}; assert_or_exit(process_vm_readv(parent, &local, 1, &remote, 1, 0) == -1); assert_or_exit(errno == EFAULT); }); }
[ "dongdong331@163.com" ]
dongdong331@163.com
8557c2b2dc5967a03f1b62dee216ffb266d6fa2f
ea3f27b607f017e6a975ddfa63c9d1eaa649c7ea
/CodeForce/1690/E.cpp
130b22930e69fb21aabf0f56bd159a90a9438128
[]
no_license
Igorjan94/CF
fbbda0037a866ebab33efe2db49b67302e420c37
816648a3a8e310e790e43b9c62a56ae6cc273844
refs/heads/master
2023-08-08T19:13:14.785199
2023-08-08T18:44:22
2023-08-08T18:44:22
19,123,715
0
0
null
2021-01-09T02:10:45
2014-04-24T20:52:42
C++
UTF-8
C++
false
false
2,742
cpp
// Igorjan94, template version from 13 October 2017. C++17 version, modified 18 march 2020 (writeln<tuple>, whole->all) {{{ #include <bits/stdc++.h> #ifdef ONLINE_JUDGE #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #endif using namespace std; #define FOR(i, m, n) for (int i = m; i < (int) (n); ++i) #define ROF(i, m, n) for (int i = m; i >= (int) (n); --i) #define forn(i, n) for (int i = 0; i < (int) (n); ++i) #define fori1(n) for (int i = 1; i < (int) (n); ++i) #define forj1(n) for (int j = 1; j < (int) (n); ++j) #define fori(n) for (int i = 0; i < (int) (n); ++i) #define forj(n) for (int j = 0; j < (int) (n); ++j) #define SZ(a) int(size(a)) typedef pair<int, int> pii; typedef vector<int> vi; typedef long long ll; #define pb push_back #define all(a) begin(a), end(a) #define ints(a...) int a; readln(a) [[maybe_unused]] const int MOD = 1000000007; [[maybe_unused]] const int INTMAX = numeric_limits<int>::max(); #define ttt12i template<class T1, class T2> inline #define ttti template<class T> inline void writeln(){cout<<"\n";}ttti void print(T&& a);ttti void priws(T&& a);ttti void read(T& a); template<class... Args> inline void readln(Args&... args){(read(args),...);} template<class H, class...T> inline void writeln(H&& h,T&&...t){priws(h);(print(t),...);writeln();} //Igorjan //}}} void run() { ints(n, k); vi a(n); readln(a); vector<pair<int, int>> g; ll ans = 0; fori(n) ans += a[i] / k, g.pb({a[i] % k, a[i]}); sort(all(g)); int i = 0; int j = n - 1; while (i < j) { while (i < j && g[i].first + g[j].first < k) ++i; if (i < j) ++i, ans++; --j; } writeln(ans); } //{{{ int main() { ios_base::sync_with_stdio(false); ints(t); fori(t) run(); cerr << fixed << setprecision(0) << "Execution time = " << 1000.0 * clock() / CLOCKS_PER_SEC << "ms\n"; return 0; } #define a _a #define n _n ttt12i ostream&operator<<(ostream&os,pair<T1,T2>const&a); template<typename T,typename D=decltype(*begin(declval<T>())),typename enable_if<!is_same<T,basic_string<char>>::value>::type* =nullptr> ostream&operator<<(ostream&os,T const&a){auto it=begin(a);if(it!=end(a))os<<*it++;while(it!=end(a))os<<"\n "[is_fundamental<typename T::value_type>::value]<<*it++;return os;} ttt12i ostream&operator<<(ostream&os,pair<T1,T2>const&a){return os<<a.first<<" "<<a.second;} ttt12i istream&operator>>(istream&is,pair<T1,T2>&a){return is>>a.first>>a.second;} ttti istream&operator>>(istream&is,vector<T>&a){fori(a.size())is>>a[i];return is;} ttti void print(T&&a){cout<<" "<<a;} ttti void priws(T&&a){cout<<a;} ttti void read(T&a){cin>>a;} //}}}
[ "igorjan94@mail.ru" ]
igorjan94@mail.ru
e0200041558c97ec9e32bdf5e2e99fdc70439742
df61db6bae315efb7de401584f6932220dfc97a2
/Concurency/threadsafe_queue.h
b1702528349510d757814a81c601c864481fbd09
[]
no_license
Fedorr47/concurrency
3e8873ca46c5b5970013850d3a423849576db4a6
89a4c99002f821276463af2e8b2bea413b175421
refs/heads/develop/1.0.0
2020-09-06T16:33:36.753232
2020-01-30T12:13:59
2020-01-30T12:13:59
220,481,991
1
0
null
2019-12-23T12:35:46
2019-11-08T14:21:23
C++
UTF-8
C++
false
false
3,070
h
#pragma once #include <mutex> #include <chrono> #include <memory> template<typename T> class threadsafe_queue { private: struct node { std::shared_ptr<T> data; std::unique_ptr<node> next; }; std::mutex head_mutex; std::unique_ptr<node> head; std::mutex tail_mutex; node* tail; std::condition_variable data_cond; std::condition_variable free_cond; size_t size_node{ sizeof(node) }; size_t size_{ sizeof(node) }; node* get_tail() { std::lock_guard<std::mutex> tail_lock(tail_mutex); return tail; } std::unique_ptr<node> pop_head() { std::unique_ptr<node> old_head = std::move(head); head = std::move(old_head->next); size_ += size_node; return old_head; } std::unique_lock<std::mutex> wait_for_data() { std::unique_lock<std::mutex> head_lock(head_mutex); data_cond.wait(head_lock, [&] { if (head.get() != get_tail()) { return true; } else { free_cond.notify_one(); return false; } }); return std::move(head_lock); } std::unique_ptr<node> wait_pop_head() { std::unique_lock<std::mutex> head_lock(wait_for_data()); return pop_head(); } std::unique_ptr<node> wait_pop_head(T& value) { std::unique_lock<std::mutex> head_lock(wait_for_data()); value = std::move(*head->data); return pop_head(); } std::unique_ptr<node> try_pop_head() { std::lock_guard<std::mutex> head_lock(head_mutex); if (head.get() == get_tail()) { return std::unique_ptr<node>(); } return pop_head(); } std::unique_ptr<node> try_pop_head(T& value) { std::lock_guard<std::mutex> head_lock(head_mutex); if (head.get() == get_tail()) { return std::unique_ptr<node>(); } value = std::move(*head->data); return pop_head(); } public: explicit threadsafe_queue(size_t count_size) : head(new node), tail(head.get()) { size_ *= count_size; } threadsafe_queue(const threadsafe_queue& other) = delete; threadsafe_queue& operator=(const threadsafe_queue& other) = delete; void wait_and_push(T new_value) { std::shared_ptr<T> new_data( std::make_shared<T>(std::move(new_value))); std::unique_lock<std::mutex> tail_lock(tail_mutex); free_cond.wait(tail_lock, [&] {return size_ != 0; }); std::unique_ptr<node> p(new node); tail->data = new_data; node* const new_tail = p.get(); tail->next = std::move(p); tail = new_tail; size_ -= size_node; data_cond.notify_one(); } std::shared_ptr<T> wait_and_pop() { std::unique_ptr<node> const old_head = wait_pop_head(); free_cond.notify_one(); return old_head->data; } void wait_and_pop(T& value) { std::unique_ptr<node> const old_head = wait_pop_head(value); } std::shared_ptr<T> try_pop() { std::unique_ptr<node> const old_head = try_pop_head(); free_cond.notify_one(); return old_head ? old_head->data : std::shared_ptr<T>(); } bool try_pop(T& value) { std::unique_ptr<node> const old_head = try_pop_head(value); free_cond.notify_one(); return old_head; } void empty() { std::lock_guard<std::mutex> head_lock(head_mutex); return (head.get() == get_tail()); } };
[ "Fedor.Andreev@billing.ru" ]
Fedor.Andreev@billing.ru
fefc953311bbdd7ec91f1d0047afbc4eb01ce354
10c14a95421b63a71c7c99adf73e305608c391bf
/gui/core/qsize.cpp
a55b26ea65d32ffc8b573f00f2e2391ec6a953df
[]
no_license
eaglezzb/wtlcontrols
73fccea541c6ef1f6db5600f5f7349f5c5236daa
61b7fce28df1efe4a1d90c0678ec863b1fd7c81c
refs/heads/master
2021-01-22T13:47:19.456110
2009-05-19T10:58:42
2009-05-19T10:58:42
33,811,815
0
0
null
null
null
null
UTF-8
C++
false
false
21,576
cpp
/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qsize.h" // #include "qdatastream.h" // #include "qdebug.h" QT_BEGIN_NAMESPACE /*! \class QSize \ingroup multimedia \brief The QSize class defines the size of a two-dimensional object using integer point precision. A size is specified by a width() and a height(). It can be set in the constructor and changed using the setWidth(), setHeight(), or scale() functions, or using arithmetic operators. A size can also be manipulated directly by retrieving references to the width and height using the rwidth() and rheight() functions. Finally, the width and height can be swapped using the transpose() function. The isValid() function determines if a size is valid (a valid size has both width and height greater than zero). The isEmpty() function returns true if either of the width and height is less than, or equal to, zero, while the isNull() function returns true only if both the width and the height is zero. Use the expandedTo() function to retrieve a size which holds the maximum height and width of \e this size and a given size. Similarly, the boundedTo() function returns a size which holds the minimum height and width of \e this size and a given size. QSize objects can be streamed as well as compared. \sa QSizeF, QPoint, QRect */ /***************************************************************************** QSize member functions *****************************************************************************/ /*! \fn QSize::QSize() Constructs a size with an invalid width and height (i.e., isValid() returns false). \sa isValid() */ /*! \fn QSize::QSize(int width, int height) Constructs a size with the given \a width and \a height. \sa setWidth(), setHeight() */ /*! \fn bool QSize::isNull() const Returns true if both the width and height is 0; otherwise returns false. \sa isValid(), isEmpty() */ /*! \fn bool QSize::isEmpty() const Returns true if either of the width and height is less than or equal to 0; otherwise returns false. \sa isNull(), isValid() */ /*! \fn bool QSize::isValid() const Returns true if both the width and height is equal to or greater than 0; otherwise returns false. \sa isNull(), isEmpty() */ /*! \fn int QSize::width() const Returns the width. \sa height(), setWidth() */ /*! \fn int QSize::height() const Returns the height. \sa width(), setHeight() */ /*! \fn void QSize::setWidth(int width) Sets the width to the given \a width. \sa rwidth(), width(), setHeight() */ /*! \fn void QSize::setHeight(int height) Sets the height to the given \a height. \sa rheight(), height(), setWidth() */ /*! Swaps the width and height values. \sa setWidth(), setHeight() */ void QSize::transpose() { int tmp = wd; wd = ht; ht = tmp; } /*! \fn void QSize::scale(int width, int height, Qt::AspectRatioMode mode) Scales the size to a rectangle with the given \a width and \a height, according to the specified \a mode: \list \i If \a mode is Qt::IgnoreAspectRatio, the size is set to (\a width, \a height). \i If \a mode is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside (\a width, \a height), preserving the aspect ratio. \i If \a mode is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside (\a width, \a height), preserving the aspect ratio. \endlist Example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 0 \sa setWidth(), setHeight() */ /*! \fn void QSize::scale(const QSize &size, Qt::AspectRatioMode mode) \overload Scales the size to a rectangle with the given \a size, according to the specified \a mode. */ void QSize::scale(const QSize &s, Qt::AspectRatioMode mode) { if (mode == Qt::IgnoreAspectRatio || wd == 0 || ht == 0) { wd = s.wd; ht = s.ht; } else { bool useHeight; qint64 rw = qint64(s.ht) * qint64(wd) / qint64(ht); if (mode == Qt::KeepAspectRatio) { useHeight = (rw <= s.wd); } else { // mode == Qt::KeepAspectRatioByExpanding useHeight = (rw >= s.wd); } if (useHeight) { wd = rw; ht = s.ht; } else { ht = qint32(qint64(s.wd) * qint64(ht) / qint64(wd)); wd = s.wd; } } } /*! \fn int &QSize::rwidth() Returns a reference to the width. Using a reference makes it possible to manipulate the width directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 1 \sa rheight(), setWidth() */ /*! \fn int &QSize::rheight() Returns a reference to the height. Using a reference makes it possible to manipulate the height directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 2 \sa rwidth(), setHeight() */ /*! \fn QSize &QSize::operator+=(const QSize &size) Adds the given \a size to \e this size, and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 3 */ /*! \fn QSize &QSize::operator-=(const QSize &size) Subtracts the given \a size from \e this size, and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 4 */ /*! \fn QSize &QSize::operator*=(qreal factor) \overload Multiplies both the width and height by the given \a factor, and returns a reference to the size. Note that the result is rounded to the nearest integer. \sa scale() */ /*! \fn bool operator==(const QSize &s1, const QSize &s2) \relates QSize Returns true if \a s1 and \a s2 are equal; otherwise returns false. */ /*! \fn bool operator!=(const QSize &s1, const QSize &s2) \relates QSize Returns true if \a s1 and \a s2 are different; otherwise returns false. */ /*! \fn const QSize operator+(const QSize &s1, const QSize &s2) \relates QSize Returns the sum of \a s1 and \a s2; each component is added separately. */ /*! \fn const QSize operator-(const QSize &s1, const QSize &s2) \relates QSize Returns \a s2 subtracted from \a s1; each component is subtracted separately. */ /*! \fn const QSize operator*(const QSize &size, qreal factor) \relates QSize Multiplies the given \a size by the given \a factor, and returns the result rounded to the nearest integer. \sa QSize::scale() */ /*! \fn const QSize operator*(qreal factor, const QSize &size) \overload \relates QSize Multiplies the given \a size by the given \a factor, and returns the result rounded to the nearest integer. */ /*! \fn QSize &QSize::operator/=(qreal divisor) \overload Divides both the width and height by the given \a divisor, and returns a reference to the size. Note that the result is rounded to the nearest integer. \sa QSize::scale() */ /*! \fn const QSize operator/(const QSize &size, qreal divisor) \relates QSize \overload Divides the given \a size by the given \a divisor, and returns the result rounded to the nearest integer. \sa QSize::scale() */ /*! \fn QSize QSize::expandedTo(const QSize & otherSize) const Returns a size holding the maximum width and height of this size and the given \a otherSize. \sa boundedTo(), scale() */ /*! \fn QSize QSize::boundedTo(const QSize & otherSize) const Returns a size holding the minimum width and height of this size and the given \a otherSize. \sa expandedTo(), scale() */ /***************************************************************************** QSize stream functions *****************************************************************************/ // #ifndef QT_NO_DATASTREAM // /*! // \fn QDataStream &operator<<(QDataStream &stream, const QSize &size) // \relates QSize // // Writes the given \a size to the given \a stream, and returns a // reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator<<(QDataStream &s, const QSize &sz) // { // if (s.version() == 1) // s << (qint16)sz.width() << (qint16)sz.height(); // else // s << (qint32)sz.width() << (qint32)sz.height(); // return s; // } // // /*! // \fn QDataStream &operator>>(QDataStream &stream, QSize &size) // \relates QSize // // Reads a size from the given \a stream into the given \a size, and // returns a reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator>>(QDataStream &s, QSize &sz) // { // if (s.version() == 1) { // qint16 w, h; // s >> w; sz.rwidth() = w; // s >> h; sz.rheight() = h; // } // else { // qint32 w, h; // s >> w; sz.rwidth() = w; // s >> h; sz.rheight() = h; // } // return s; // } // #endif // QT_NO_DATASTREAM // // #ifndef QT_NO_DEBUG_STREAM // QDebug operator<<(QDebug dbg, const QSize &s) { // dbg.nospace() << "QSize(" << s.width() << ", " << s.height() << ')'; // return dbg.space(); // } // #endif /*! \class QSizeF \brief The QSizeF class defines the size of a two-dimensional object using floating point precision. \ingroup multimedia A size is specified by a width() and a height(). It can be set in the constructor and changed using the setWidth(), setHeight(), or scale() functions, or using arithmetic operators. A size can also be manipulated directly by retrieving references to the width and height using the rwidth() and rheight() functions. Finally, the width and height can be swapped using the transpose() function. The isValid() function determines if a size is valid. A valid size has both width and height greater than or equal to zero. The isEmpty() function returns true if either of the width and height is \e less than (or equal to) zero, while the isNull() function returns true only if both the width and the height is zero. Use the expandedTo() function to retrieve a size which holds the maximum height and width of this size and a given size. Similarly, the boundedTo() function returns a size which holds the minimum height and width of this size and a given size. The QSizeF class also provides the toSize() function returning a QSize copy of this size, constructed by rounding the width and height to the nearest integers. QSizeF objects can be streamed as well as compared. \sa QSize, QPointF, QRectF */ /***************************************************************************** QSizeF member functions *****************************************************************************/ /*! \fn QSizeF::QSizeF() Constructs an invalid size. \sa isValid() */ /*! \fn QSizeF::QSizeF(const QSize &size) Constructs a size with floating point accuracy from the given \a size. \sa toSize() */ /*! \fn QSizeF::QSizeF(qreal width, qreal height) Constructs a size with the given \a width and \a height. */ /*! \fn bool QSizeF::isNull() const Returns true if both the width and height is 0; otherwise returns false. \sa isValid(), isEmpty() */ /*! \fn bool QSizeF::isEmpty() const Returns true if either of the width and height is less than or equal to 0; otherwise returns false. \sa isNull(), isValid() */ /*! \fn bool QSizeF::isValid() const Returns true if both the width and height is equal to or greater than 0; otherwise returns false. \sa isNull(), isEmpty() */ /*! \fn int QSizeF::width() const Returns the width. \sa height(), setWidth() */ /*! \fn int QSizeF::height() const Returns the height. \sa width(), setHeight() */ /*! \fn void QSizeF::setWidth(qreal width) Sets the width to the given \a width. \sa width(), rwidth(), setHeight() */ /*! \fn void QSizeF::setHeight(qreal height) Sets the height to the given \a height. \sa height(), rheight(), setWidth() */ /*! \fn QSize QSizeF::toSize() const Returns an integer based copy of this size. Note that the coordinates in the returned size will be rounded to the nearest integer. \sa QSizeF() */ /*! Swaps the width and height values. \sa setWidth(), setHeight() */ void QSizeF::transpose() { qreal tmp = wd; wd = ht; ht = tmp; } /*! \fn void QSizeF::scale(qreal width, qreal height, Qt::AspectRatioMode mode) Scales the size to a rectangle with the given \a width and \a height, according to the specified \a mode. \list \i If \a mode is Qt::IgnoreAspectRatio, the size is set to (\a width, \a height). \i If \a mode is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside (\a width, \a height), preserving the aspect ratio. \i If \a mode is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside (\a width, \a height), preserving the aspect ratio. \endlist Example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 5 \sa setWidth(), setHeight() */ /*! \fn void QSizeF::scale(const QSizeF &size, Qt::AspectRatioMode mode) \overload Scales the size to a rectangle with the given \a size, according to the specified \a mode. */ void QSizeF::scale(const QSizeF &s, Qt::AspectRatioMode mode) { if (mode == Qt::IgnoreAspectRatio || qIsNull(wd) || qIsNull(ht)) { wd = s.wd; ht = s.ht; } else { bool useHeight; qreal rw = s.ht * wd / ht; if (mode == Qt::KeepAspectRatio) { useHeight = (rw <= s.wd); } else { // mode == Qt::KeepAspectRatioByExpanding useHeight = (rw >= s.wd); } if (useHeight) { wd = rw; ht = s.ht; } else { ht = s.wd * ht / wd; wd = s.wd; } } } /*! \fn int &QSizeF::rwidth() Returns a reference to the width. Using a reference makes it possible to manipulate the width directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 6 \sa rheight(), setWidth() */ /*! \fn int &QSizeF::rheight() Returns a reference to the height. Using a reference makes it possible to manipulate the height directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 7 \sa rwidth(), setHeight() */ /*! \fn QSizeF &QSizeF::operator+=(const QSizeF &size) Adds the given \a size to this size and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 8 */ /*! \fn QSizeF &QSizeF::operator-=(const QSizeF &size) Subtracts the given \a size from this size and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 9 */ /*! \fn QSizeF &QSizeF::operator*=(qreal factor) \overload Multiplies both the width and height by the given \a factor and returns a reference to the size. \sa scale() */ /*! \fn bool operator==(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns true if \a s1 and \a s2 are equal; otherwise returns false. */ /*! \fn bool operator!=(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns true if \a s1 and \a s2 are different; otherwise returns false. */ /*! \fn const QSizeF operator+(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns the sum of \a s1 and \a s2; each component is added separately. */ /*! \fn const QSizeF operator-(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns \a s2 subtracted from \a s1; each component is subtracted separately. */ /*! \fn const QSizeF operator*(const QSizeF &size, qreal factor) \overload \relates QSizeF Multiplies the given \a size by the given \a factor and returns the result. \sa QSizeF::scale() */ /*! \fn const QSizeF operator*(qreal factor, const QSizeF &size) \overload \relates QSizeF Multiplies the given \a size by the given \a factor and returns the result. */ /*! \fn QSizeF &QSizeF::operator/=(qreal divisor) \overload Divides both the width and height by the given \a divisor and returns a reference to the size. \sa scale() */ /*! \fn const QSizeF operator/(const QSizeF &size, qreal divisor) \relates QSizeF \overload Divides the given \a size by the given \a divisor and returns the result. \sa QSizeF::scale() */ /*! \fn QSizeF QSizeF::expandedTo(const QSizeF & otherSize) const Returns a size holding the maximum width and height of this size and the given \a otherSize. \sa boundedTo(), scale() */ /*! \fn QSizeF QSizeF::boundedTo(const QSizeF & otherSize) const Returns a size holding the minimum width and height of this size and the given \a otherSize. \sa expandedTo(), scale() */ /***************************************************************************** QSizeF stream functions *****************************************************************************/ // #ifndef QT_NO_DATASTREAM // /*! // \fn QDataStream &operator<<(QDataStream &stream, const QSizeF &size) // \relates QSizeF // // Writes the the given \a size to the given \a stream and returns a // reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator<<(QDataStream &s, const QSizeF &sz) // { // s << double(sz.width()) << double(sz.height()); // return s; // } // // /*! // \fn QDataStream &operator>>(QDataStream &stream, QSizeF &size) // \relates QSizeF // // Reads a size from the given \a stream into the given \a size and // returns a reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator>>(QDataStream &s, QSizeF &sz) // { // double w, h; // s >> w; // s >> h; // sz.setWidth(qreal(w)); // sz.setHeight(qreal(h)); // return s; // } // #endif // QT_NO_DATASTREAM // // #ifndef QT_NO_DEBUG_STREAM // QDebug operator<<(QDebug dbg, const QSizeF &s) { // dbg.nospace() << "QSizeF(" << s.width() << ", " << s.height() << ')'; // return dbg.space(); // } // #endif QT_END_NAMESPACE
[ "zhangyinquan@0feb242a-2539-11de-a0d7-251e5865a1c7" ]
zhangyinquan@0feb242a-2539-11de-a0d7-251e5865a1c7
fe825585ba1537250bc69b7b96acc1cd9a6bb0cf
ac7ba4252b430473ecf93fd3ee4818ac17e1e639
/C&C++基础/my_code/OrderedSet_template.h
6378e4c076978f1d36d280c69308d2d7d1f5a7af
[]
no_license
jiaGuYuan/StudyNote
8aaef0d51ce0be2d343b1a5814be8e4d7f193e9c
ccc740c62b035746a977847f10c1207914989f2e
refs/heads/master
2023-06-28T04:24:07.140969
2023-06-17T14:42:15
2023-06-17T14:42:15
219,988,184
4
0
null
null
null
null
UTF-8
C++
false
false
7,769
h
#include <list> #include <set> #include <iostream> #include <sstream> #include <algorithm> #include <iterator> // 使用Set+List构造一个'维持插入顺序的Set' template <typename T> class OrderedSet { using ListOfT = typename std::list<T>; using TIterator = typename ListOfT::iterator; using TConstIterator = typename ListOfT::const_iterator; // 集合中存储 pair(value, 以及value在list中的迭代器), 方便对list中元素的快速删除 using SetItem = typename std::pair<T, TIterator>; // set中元素的比较只与集合元素的value有关 struct classcomp { bool operator() (const SetItem& lhs, const SetItem& rhs) const {return lhs.first < rhs.first;} }; using SetOfListIter = typename std::set<SetItem, classcomp>; public: OrderedSet() {} OrderedSet(const OrderedSet &other){ for (auto item : other) { this->append(item); } } OrderedSet& operator=(const OrderedSet &other) { if (this == &other) { return *this; } m_set.clear(); m_list.clear(); for (auto item : other) { this->append(item); } return *this; } void append(T val) { // 元素已存在(只根据val进行查找) if (m_set.find(SetItem(val, m_list.end())) != m_set.end()) { return; } // 元素未存在. 加入到list和set中 auto iter = m_list.insert(m_list.end(), val); m_set.insert(SetItem(val, iter)); } void remove(T val) { auto iter = m_set.find(SetItem(val, m_list.end())); if (iter == m_set.end()) { // 元素不存在 return; } // 元素存在. 从list和set中删除 auto list_iter = iter->second; m_list.erase(list_iter); m_set.erase(iter); } void clear() { m_set.clear(); m_list.clear(); } TIterator begin() { return m_list.begin(); } TConstIterator begin() const { return m_list.begin(); } TIterator end() { return {m_list.end()}; } TConstIterator end() const { return m_list.end(); } // 交集 void intersection_set(const OrderedSet &other, OrderedSet &out_oset) { SetOfListIter inter_set; std::set_intersection(m_set.begin(), m_set.end(), other.m_set.begin(), other.m_set.end(), std::inserter(inter_set, inter_set.begin()), classcomp()); // 为了维护插入顺序, 需要从m_list进行操作 for (auto item : *this) { if (inter_set.find(SetItem(item, m_list.end())) != inter_set.end() ) { out_oset.append(item); } } } // 差集 void difference_set(const OrderedSet &other, OrderedSet &out_oset) { SetOfListIter diff_set; std::set_difference(m_set.begin(), m_set.end(), other.m_set.begin(), other.m_set.end(), std::inserter(diff_set, diff_set.begin()), classcomp()); // 为了维护插入顺序, 需要从m_list进行操作 for (auto item : *this) { if (diff_set.find(SetItem(item, m_list.end())) != diff_set.end() ) { out_oset.append(item); } } } // 并集 void union_set(OrderedSet &other, OrderedSet &out_oset) { // 为了维护插入顺序, 使用 "A并B = A + B差A" 来求并集 SetOfListIter diff_set; std::set_difference(other.m_set.begin(), other.m_set.end(), m_set.begin(), m_set.end(), std::inserter(diff_set, diff_set.begin()), classcomp()); for (auto item : *this) { out_oset.append(item); } for (auto item : other) { if (diff_set.find(SetItem(item, other.m_list.end())) != diff_set.end() ) { out_oset.append(item); } } } public: ListOfT m_list; SetOfListIter m_set; }; void orderset_test_01(){ OrderedSet<int> oset1; oset1.append(5); oset1.append(3); oset1.append(9); oset1.append(1); oset1.append(5); oset1.append(5); for (auto val : oset1) std::cout << val << " "; std::cout << std::endl; OrderedSet<int> oset2; oset2.append(3); oset2.append(1); oset2.append(10); oset2.append(12); oset2.append(10); oset2.append(10); for (auto val : oset2) std::cout << val << " "; std::cout << std::endl; OrderedSet<int> out_set; oset1.difference_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); oset1.union_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); oset1.intersection_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); for (int i=0; i<1000000; i++) { out_set.append(i); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { if (i%8==0) { out_set.remove(i); } }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { out_set.append(i); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; } struct Point2 { public: Point2(int x, int y) : x(x), y(y) {} // bool operator<(const Point2 &right) const { // if (this->x < right.x) { // return true; // } // else if (this->x > right.x) { // return false; // } // else { // return this->y < right.y; // } // } std::string str() { std::ostringstream os; os << "(" << x << ", " << y << ")"; return os.str(); } public: int x; int y; }; bool operator<(const Point2 &left, const Point2 &right) { if (left.x < right.x) { return true; } else if (left.x > right.x) { return false; } else { return left.y < right.y; } } void orderset_test(){ OrderedSet<Point2> oset1; oset1.append(Point2(1, 1)); oset1.append(Point2(2, 2)); oset1.append(Point2(9, 9)); oset1.append(Point2(1, 1)); oset1.append(Point2(5, 5)); oset1.append(Point2(5, 5)); for (auto val : oset1) std::cout << val.str() << " "; std::cout << std::endl; OrderedSet<Point2> oset2; oset2.append(Point2(3, 3)); oset2.append(Point2(5, 5)); for (auto val : oset2) std::cout << val.str() << " "; std::cout << std::endl; OrderedSet<Point2> out_set; oset1.difference_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); oset1.union_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); oset1.intersection_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); for (int i=0; i<1000000; i++) { out_set.append(Point2(i, i)); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { if (i%8==0) { out_set.remove(Point2(i, i)); } }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { out_set.append(Point2(i, i)); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; }
[ "w2504187153@sina.com" ]
w2504187153@sina.com
b393da1149d2abefb1aaee2e623e419ddd347a48
6433dd2d101492c20ab2f6088835fdb895bce6d4
/Classes/PlaySE.cpp
6f4c25a74c177af7105d8d500bc79ac422739d44
[]
no_license
UenoTAKAFUMI/Cocos2dx_practice_chapter01
eea3366b0c448841230dec7d6064e8d952123a21
878076a635c9feb9a331ba401a2ed46b73c44a2a
refs/heads/master
2021-01-10T20:21:44.229815
2014-07-09T00:44:47
2014-07-09T00:44:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,341
cpp
// // PlaySE.cpp // Nyangame // // Created by P on 2014/07/05. // // #include "PlaySE.h" #include "SimpleAudioEngine.h" using namespace cocos2d; using namespace CocosDenshion; CCPlaySE::CCPlaySE(std::string sound) { m_sound = sound; } CCPlaySE* CCPlaySE::create(std::string sound) { CCPlaySE* pRet = new CCPlaySE(sound); if (pRet) { pRet->autorelease(); } return pRet; } void CCPlaySE::update(float time) { CC_UNUSED_PARAM(time); SimpleAudioEngine::sharedEngine()->playEffect(m_sound.c_str()); } ActionInstant * CCPlaySE::reverse() const { return (ActionInstant*)(CCPlaySE::create(m_sound)); } // おそらくこれを実装しないとうまくいかないからreverseと同じような効果がでればいい感じで試しに実装 ActionInstant* CCPlaySE::clone() const { return (ActionInstant*)(CCPlaySE::create(m_sound)); } //CCObject* CCPlaySE::copyWithZone(CCZone* pZone) //{ // CCZone* pNewZone = NULL; // CCPlaySE* pRet = NULL; // if (pZone && pZone->m_pCopyObject) // { // pRet = (CCPlaySE*) (pZone->m_pCopyObject); // } // else // { // pRet = new CCPlaySE(m_sound); // pZone = pNewZone = new CCZone(pRet); // } // // CCActionInstant::copyWithZone(pZone); // CC_SAFE_DELETE(pNewZone); // return pRet; //}
[ "git.email.ueno@gmail.com" ]
git.email.ueno@gmail.com
9e3ac081a50cb16bc2330008da1b91ba5cb4fef5
ad44b6ba053a35154df530f8639a92e00184073f
/main.cpp
7c0230213685ea40428d9e47e0905d0e123fdf16
[]
no_license
xbubus/blackjack
00972104f8b849e1050cc8bd839b5e5bf3f887e3
3843fc9ce12ce8eb1adf2aabc12cc8c33f07f013
refs/heads/master
2022-11-30T17:18:43.845402
2020-08-06T15:27:33
2020-08-06T15:27:33
258,182,302
0
0
null
null
null
null
UTF-8
C++
false
false
1,768
cpp
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include "time.h" #include "Casino.h" std::ostream& operator<<(std::ostream& os, Card& card); void chooseNumberFrom1To3(int& number); int main() { Casino c1; int choice = 0; bool gameON = true; int numberOfHumanPlayers = 0; int numberOfBotPlayers = 0; srand(time(NULL)); while (gameON) { std::cout << "Enter 1 to start new game with the same players\n"; std::cout << "Enter 2 to start new game with other players\n"; std::cout << "Enter 3 to exit program\n"; chooseNumberFrom1To3(choice); switch (choice) { case 1: system("cls"); if (numberOfHumanPlayers == 0) { std::cout << "\nYou have to start first game with option 2!\n\n"; break; } system("cls"); c1.manageGame(); break; case 2: system("cls"); c1.deleteAllPlayers(); std::cout << "Choose how many human players will play(1-3):\n"; chooseNumberFrom1To3(numberOfHumanPlayers); std::cout << "Choose how many bots will play(1-3):\n"; chooseNumberFrom1To3(numberOfBotPlayers); c1.setNumberOfBotPlayers(numberOfBotPlayers); c1.setNumberOfHumanPlayers(numberOfHumanPlayers); c1.createPlayers(); c1.setupNicknamesAndBravery(); c1.manageGame(); break; case 3: gameON = false; break; } } } std::ostream& operator<<(std::ostream& os, Card& card) { os << card.getRank() << card.getSuit() << " "; return os; } void chooseNumberFrom1To3(int& number) { while (1) { std::cin >> number; if (std::cin.fail() == true || number < 1 || number>3) { std::cout << "Something went wrong. Try again." << std::endl; std::cin.clear(); std::cin.ignore(256, '\n'); } else return; } }
[ "xbubus@gmail.com" ]
xbubus@gmail.com
061d40216ecf9659afbe7094c163478043560a0c
00b70b0a46e8193284fbbfab9d06a94ae2df4c24
/Project1/RoutesAnalyser.h
cf8d613a6ce026308f07b49d28ac3e39b6ee2439
[]
no_license
CallMeK/Computer-Network-Codes
20785a1a03731b78051feae3b3ff81c6cb9f85a2
f575d1483c8b33145bcb937dfb7442065dd3dbe7
refs/heads/master
2021-01-13T01:03:10.348752
2015-10-08T19:52:18
2015-10-08T19:52:18
43,912,720
0
1
null
null
null
null
UTF-8
C++
false
false
3,812
h
// // RoutesAnalyser.h // Project1 // // Created by WuKe on 2/25/15. // Copyright (c) 2015 WuKe. All rights reserved. // #ifndef __Project1__RoutesAnalyser__ #define __Project1__RoutesAnalyser__ #include <iostream> #include <fstream> #include <sstream> #include <string> #include <vector> #include <bitset> #include <map> #include <set> class node { public: std::bitset<32> network_prefix; std::string ip_str; node* left; node* right; node() { this->left = NULL; this->right = NULL; } node(std::bitset<32> network_prefix_) { this->network_prefix = network_prefix_; this->left = NULL; this->right = NULL; } void SetValue(std::bitset<32> network_prefix_) { this->network_prefix = network_prefix_; } ~node() { delete this->left; delete this->right; } }; class BinaryTrie { public: BinaryTrie() { this->head = NULL; } BinaryTrie(std::vector<std::string>& routes_dest) { this->set(routes_dest); } void set(std::vector<std::string>& routes_dest) { for(unsigned int i = 0; i < routes_dest.size(); i++) { this->insert(routes_dest[i]); } } ~BinaryTrie() { delete this->head; } const std::string& find(const std::string& new_ip); private: void ip_convert(const std::string& network_prefix, std::bitset<32>& temp, int& size); void IptoBitset(const std::string& network_prefix, std::bitset<32>& temp); void insert(const std::string& network); node* head; }; class RoutesAnalyser { public: RoutesAnalyser(std::string filename) { this->filename = filename; createTable(); createBinaryTrie(); } std::string search(const std::string& new_ip); const std::vector<std::string>& report(const std::string& matched_network) { return table[matched_network]; } void printTable(); private: void createTable(); void createBinaryTrie(); std::map<std::string, std::vector<std::string> > table; std::string filename; BinaryTrie bt; }; class ARPtable { public: ARPtable(const std::string& filename) { this->filename = filename; this->err = "Not Found"; createTable(); } const std::string& search(const std::string& ip) { if (this->table.find(ip)!=this->table.end()) { return this->table[ip]; } else { return this->err; } } private: void createTable(); std::map<std::string,std::string> table; std::string filename; std::string err; }; class Nattable { public: Nattable(const std::string& filename) { this->filename = filename; this->err = "Not Found"; createTable(); } const std::string& search(const std::string& interface) { if (this->table.find(interface)!=this->table.end()) { return this->table[interface]; } else { return this->err; } } bool check() { return this->exist; } void translate_forward(std::string& interface,std::string& source, std::string& source_port, std::string& trans_source, std::string& trans_source_port); void translate_back(std::string& destination, std::string& dest_port); bool tablecheck(std::string& destination, std::string& dest_port); void printTranstable(); private: void createTable(); std::map<std::string, std::string> table; std::string filename; std::string err; std::map<std::string, std::string> transtable; std::set<std::string> portset; bool exist; }; #endif /* defined(__Project1__RoutesAnalyser__) */
[ "wkcoke.work@gmail.com" ]
wkcoke.work@gmail.com
40e4df12d90c5d28095414a74b7818e3b2180420
6105ea25e9375e5aa19c4e83659a3a1d8fa27b21
/Test_beam_2015/Test_Beam_2015/code/src/anaSelector.h
8917960f1f4a956e483964cc2e694e1465883c17
[]
no_license
Fedespring/TestBeam
cf1a97504f513aa55cbcf76b5dac44098ca365b8
97b0fae42476386307be8bbee7f87a49b37703f4
refs/heads/master
2021-01-10T17:19:35.925632
2015-10-30T08:54:22
2015-10-30T08:54:22
45,199,883
0
0
null
null
null
null
UTF-8
C++
false
false
9,162
h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Tue Nov 18 13:00:44 2014 by ROOT version 5.34/14 // from TTree t1/GemData // found on file: recSim_run34.root ////////////////////////////////////////////////////////// #ifndef anaSelector_h #define anaSelector_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <TSelector.h> // Header file for the classes stored in the TTree if any. // Fixed size dimensions of array or collections stored in the TTree if any. class anaSelector : public TSelector { private: public : TTree *fChain; //!pointer to the analyzed TTree or TChain // Declaration of leaf types Int_t Event; Int_t nGemHit; Int_t GemHit_apv[500]; //[nGemHit] Int_t GemHit_plane[500]; //[nGemHit] Int_t GemHit_view[500]; //[nGemHit] Int_t GemHit_half[500]; //[nGemHit] Int_t GemHit_sample[500]; //[nGemHit] Int_t GemHit_strip[500]; //[nGemHit] Int_t GemHit_q[500]; //[nGemHit] Double_t GemHit_x[500]; //[nGemHit] Double_t GemHit_y[500]; //[nGemHit] Double_t GemHit_z[500]; //[nGemHit] Int_t nGemCluster; Int_t GemCluster1d_plane[500]; //[nGemCluster] Int_t GemCluster1d_view[500]; //[nGemCluster] Int_t GemCluster1d_q[500]; //[nGemCluster] Int_t GemCluster1d_nHit[500]; //[nGemCluster] Double_t GemCluster1d_x[500]; //[nGemCluster] Double_t GemCluster1d_y[500]; //[nGemCluster] Double_t GemCluster1d_z[500]; //[nGemCluster] Double_t GemCluster1d_dx[500]; //[nGemCluster] Double_t GemCluster1d_dy[500]; //[nGemCluster] Double_t GemCluster1d_dz[500]; //[nGemCluster] Int_t nGemCluster2d; Int_t GemCluster2d_plane[500]; //[nGemCluster2d] Int_t GemCluster2d_q[500]; //[nGemCluster2d] Int_t GemCluster2d_qx[500]; //[nGemCluster2d] Int_t GemCluster2d_qy[500]; //[nGemCluster2d] Double_t GemCluster2d_x[500]; //[nGemCluster2d] Double_t GemCluster2d_y[500]; //[nGemCluster2d] Double_t GemCluster2d_z[500]; //[nGemCluster2d] Double_t GemCluster2d_dx[500]; //[nGemCluster2d] Double_t GemCluster2d_dy[500]; //[nGemCluster2d] Double_t GemCluster2d_dz[500]; //[nGemCluster2d] Int_t GemCluster2d_nHit[500]; //[nGemCluster2d] Int_t GemCluster2d_nHitX[500]; //[nGemCluster2d] Int_t GemCluster2d_nHitY[500]; //[nGemCluster2d] // List of branches TBranch *b_Event; //! TBranch *b_nGemHit; //! TBranch *b_GemHit_apv; //! TBranch *b_GemHit_plane; //! TBranch *b_GemHit_view; //! TBranch *b_GemHit_half; //! TBranch *b_GemHit_sample; //! TBranch *b_GemHit_strip; //! TBranch *b_GemHit_q; //! TBranch *b_GemHit_x; //! TBranch *b_GemHit_y; //! TBranch *b_GemHit_z; //! TBranch *b_nGemCluster; //! TBranch *b_GemCluster1d_plane; //! TBranch *b_GemCluster1d_view; //! TBranch *b_GemCluster1d_q; //! TBranch *b_GemCluster1d_nHit; //! TBranch *b_GemCluster1d_x; //! TBranch *b_GemCluster1d_y; //! TBranch *b_GemCluster1d_z; //! TBranch *b_GemCluster1d_dx; //! TBranch *b_GemCluster1d_dy; //! TBranch *b_GemCluster1d_dz; //! TBranch *b_nGemCluster2d; //! TBranch *b_GemCluster2d_plane; //! TBranch *b_GemCluster2d_q; //! TBranch *b_GemCluster2d_qx; //! TBranch *b_GemCluster2d_qy; //! TBranch *b_GemCluster2d_x; //! TBranch *b_GemCluster2d_y; //! TBranch *b_GemCluster2d_z; //! TBranch *b_GemCluster2d_dx; //! TBranch *b_GemCluster2d_dy; //! TBranch *b_GemCluster2d_dz; //! TBranch *b_GemCluster2d_nHit; //! TBranch *b_GemCluster2d_nHitX; //! TBranch *b_GemCluster2d_nHitY; //! anaSelector(TTree * /*tree*/ =0) : fChain(0) { } virtual ~anaSelector() { } virtual Int_t Version() const { return 2; } virtual void Begin(TTree *tree , TString); virtual void SlaveBegin(TTree *tree); virtual void Init(TTree *tree); virtual Bool_t Notify(); virtual Bool_t Process(Long64_t entry); virtual Int_t GetEntry(Long64_t entry, Int_t getall = 0) { return fChain ? fChain->GetTree()->GetEntry(entry, getall) : 0; } virtual void SetOption(const char *option) { fOption = option; } virtual void SetObject(TObject *obj) { fObject = obj; } virtual void SetInputList(TList *input) { fInput = input; } virtual TList *GetOutputList() const { return fOutput; } virtual void SlaveTerminate(); virtual void Terminate(TString); //ClassDef(anaSelector,0); }; #endif #ifdef anaSelector_cxx void anaSelector::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fChain->SetMakeClass(1); fChain->SetBranchAddress("Event", &Event, &b_Event); fChain->SetBranchAddress("nGemHit", &nGemHit, &b_nGemHit); fChain->SetBranchAddress("GemHit_apv", GemHit_apv, &b_GemHit_apv); fChain->SetBranchAddress("GemHit_plane", GemHit_plane, &b_GemHit_plane); fChain->SetBranchAddress("GemHit_view", GemHit_view, &b_GemHit_view); fChain->SetBranchAddress("GemHit_half", GemHit_half, &b_GemHit_half); fChain->SetBranchAddress("GemHit_sample", GemHit_sample, &b_GemHit_sample); fChain->SetBranchAddress("GemHit_strip", GemHit_strip, &b_GemHit_strip); fChain->SetBranchAddress("GemHit_q", GemHit_q, &b_GemHit_q); fChain->SetBranchAddress("GemHit_x", GemHit_x, &b_GemHit_x); fChain->SetBranchAddress("GemHit_y", GemHit_y, &b_GemHit_y); fChain->SetBranchAddress("GemHit_z", GemHit_z, &b_GemHit_z); fChain->SetBranchAddress("nGemCluster", &nGemCluster, &b_nGemCluster); fChain->SetBranchAddress("GemCluster1d_plane", GemCluster1d_plane, &b_GemCluster1d_plane); fChain->SetBranchAddress("GemCluster1d_view", GemCluster1d_view, &b_GemCluster1d_view); fChain->SetBranchAddress("GemCluster1d_q", GemCluster1d_q, &b_GemCluster1d_q); fChain->SetBranchAddress("GemCluster1d_nHit", GemCluster1d_nHit, &b_GemCluster1d_nHit); fChain->SetBranchAddress("GemCluster1d_x", GemCluster1d_x, &b_GemCluster1d_x); fChain->SetBranchAddress("GemCluster1d_y", GemCluster1d_y, &b_GemCluster1d_y); fChain->SetBranchAddress("GemCluster1d_z", GemCluster1d_z, &b_GemCluster1d_z); fChain->SetBranchAddress("GemCluster1d_dx", GemCluster1d_dx, &b_GemCluster1d_dx); fChain->SetBranchAddress("GemCluster1d_dy", GemCluster1d_dy, &b_GemCluster1d_dy); fChain->SetBranchAddress("GemCluster1d_dz", GemCluster1d_dz, &b_GemCluster1d_dz); fChain->SetBranchAddress("nGemCluster2d", &nGemCluster2d, &b_nGemCluster2d); fChain->SetBranchAddress("GemCluster2d_plane", GemCluster2d_plane, &b_GemCluster2d_plane); fChain->SetBranchAddress("GemCluster2d_q", GemCluster2d_q, &b_GemCluster2d_q); fChain->SetBranchAddress("GemCluster2d_qx", GemCluster2d_qx, &b_GemCluster2d_qx); fChain->SetBranchAddress("GemCluster2d_qy", GemCluster2d_qy, &b_GemCluster2d_qy); fChain->SetBranchAddress("GemCluster2d_x", GemCluster2d_x, &b_GemCluster2d_x); fChain->SetBranchAddress("GemCluster2d_y", GemCluster2d_y, &b_GemCluster2d_y); fChain->SetBranchAddress("GemCluster2d_z", GemCluster2d_z, &b_GemCluster2d_z); fChain->SetBranchAddress("GemCluster2d_dx", GemCluster2d_dx, &b_GemCluster2d_dx); fChain->SetBranchAddress("GemCluster2d_dy", GemCluster2d_dy, &b_GemCluster2d_dy); fChain->SetBranchAddress("GemCluster2d_dz", GemCluster2d_dz, &b_GemCluster2d_dz); fChain->SetBranchAddress("GemCluster2d_nHit", GemCluster2d_nHit, &b_GemCluster2d_nHit); fChain->SetBranchAddress("GemCluster2d_nHitX", GemCluster2d_nHitX, &b_GemCluster2d_nHitX); fChain->SetBranchAddress("GemCluster2d_nHitY", GemCluster2d_nHitY, &b_GemCluster2d_nHitY); } Bool_t anaSelector::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return kTRUE; } #endif // #ifdef anaSelector_cxx
[ "fedespring@gmail.com" ]
fedespring@gmail.com
e055d8782bf27ba337b41f2f9e6c6076117388e0
e0da8fc913c7c34b00dc42fd1c1e6a3076caed33
/include/container_traits/has_subscript_operator.h
356556c3ccacad4b39739ae9836ba4fb7c6258de
[ "MIT" ]
permissive
zeta1999/container_traits
f50c568131b8ca579db9ae69f369dd5a1a40954c
85d970030b8836ab1893ff72f38c74c4ca2908de
refs/heads/master
2022-12-28T20:05:39.535093
2020-10-11T03:03:20
2020-10-11T03:03:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
655
h
#pragma once #include <type_traits> namespace container_traits { template <typename, typename T> struct has_subscript_operator : std::false_type {}; template <typename C, typename Ret, typename... Args> struct has_subscript_operator<C, Ret(Args...)> { private: template <typename T> static constexpr auto check(T *) -> typename std::is_same<decltype(std::declval<T>().operator[](std::declval<Args>()...)), Ret>::type; template <typename> static constexpr std::false_type check(...); typedef decltype(check<C>(0)) type; public: static constexpr bool value = type::value; }; } // namespace container_traits
[ "pranav.srinivas.kumar@gmail.com" ]
pranav.srinivas.kumar@gmail.com
a30caac20e6dc01e4db0073c782b2cf79269ada1
c2fa8eda9baacc45c46a7079a61f5468c770562b
/iOS9/PrivateFrameworks/CoreLocation/CDStructures.h
4a042d60cd3ca0b7c2248eeb123f171eeb875d46
[]
no_license
silence0201/Headers
c832b10265bd2a913a579cc76ed7299319cf2d5a
3fe779d8e72817748eec8fa7c9ee9cfe8493ac77
refs/heads/master
2020-09-24T17:19:24.853523
2017-05-30T08:07:54
2017-05-30T08:07:54
66,088,098
6
1
null
null
null
null
UTF-8
C++
false
false
3,579
h
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Aug 19 2016 22:08:00). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #pragma mark Blocks typedef void (^CDUnknownBlockType)(void); // return type and parameters are unknown #pragma mark Named Structures struct CLConnection; struct CLConnectionClient { struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> _field1; id _field2; id _field3; id _field4; struct CLConnection *_field5; struct CLNameValuePair _field6; struct CLNameValuePair _field7; struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> _field8; CDUnknownBlockType _field9; CDUnknownBlockType _field10; id _field11; CDUnknownBlockType _field12; CDUnknownBlockType _field13; }; struct CLNameValuePair { CDUnknownFunctionPointerType *_field1; struct __CFDictionary *_field2; }; struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> { struct __compressed_pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::__rep, std::__1::allocator<char>> { struct __rep { union { struct __long { unsigned long long _field1; unsigned long long _field2; char *_field3; } _field1; struct __short { union { unsigned char _field1; char _field2; } _field1; char _field2[23]; } _field2; struct __raw { unsigned long long _field1[3]; } _field3; } _field1; } _field1; } _field1; }; struct ostream; struct value_ostream { _Bool _field1; struct ostream *_field2; }; #pragma mark Typedef'd Structures typedef struct { double x; double y; double z; double magneticHeading; double trueHeading; double accuracy; double timestamp; double temperature; double magnitude; double inclination; int calibration; } CDStruct_b560b707; typedef struct { int padding1; int suitability; CDStruct_2c43369c coordinate; double horizontalAccuracy; double altitude; double verticalAccuracy; double padding2; double padding3; double speed; double speedAccuracy; double course; double courseAccuracy; double timestamp; int confidence; double lifespan; int type; CDStruct_2c43369c rawCoordinate; double rawCourse; int floor; unsigned int integrity; int referenceFrame; } CDStruct_0aa5cb5c; typedef struct { char identifier[512]; char onBehalfOfIdentifier[512]; int type; _Bool notifyOnEntry; _Bool notifyOnExit; _Bool conservativeEntry; union { struct { char proximityUUID[512]; unsigned short major; unsigned short minor; int definitionMask; _Bool notifyEntryStateOnDisplay; } beaconAttributes; struct { CDStruct_2c43369c center; double radius; double desiredAccuracy; int referenceFrame; } circularAttributes; } ; } CDStruct_3afce72c; // Ambiguous groups typedef struct { double _field1; double _field2; } CDStruct_c3b9c2ee; typedef struct { double latitude; double longitude; } CDStruct_2c43369c;
[ "374619540@qq.com" ]
374619540@qq.com
0dde73d7d0967ada2048afea1e2bf070f568ac3e
c11930d68fb07c16bb71bd87ad1887fb6f219799
/Array/21. Count triplets in a sorted DLL whose sum is X.cpp
10c7b78a7c0a854730639ddf16558f465461104d
[]
no_license
vbhv17/DSA-Questions
3ea345b80ea71f96629c5ed3f075e4abcc689e0f
20b0a463a56f2bfbe6ed86c2357a60f22d708f3b
refs/heads/main
2023-07-17T01:28:03.435410
2021-08-31T08:20:56
2021-08-31T08:20:56
340,821,516
0
0
null
null
null
null
UTF-8
C++
false
false
2,204
cpp
Naive Solution: Using three nested loops generate all triplets and check whether elements in the triplet sum up to x or not. int countTriplets(struct Node* head, int x) { struct Node* ptr1, *ptr2, *ptr3; int count = 0; // generate all possible triplets for (ptr1 = head; ptr1 != NULL; ptr1 = ptr1->next) for (ptr2 = ptr1->next; ptr2 != NULL; ptr2 = ptr2->next) for (ptr3 = ptr2->next; ptr3 != NULL; ptr3 = ptr3->next) // if elements in the current triplet sum up to 'x' if ((ptr1->data + ptr2->data + ptr3->data) == x) // increment count count++; // required count of triplets return count; } Better Solution: Using extra space (set) int countTriplets(struct Node* head, int x) { // if list is empty if (head == NULL) return 0; int count = 0; unordered_set<int> st; for (Node *one = head; one->next->next->next != NULL; one = one->next) { int rem = x - one->data; Node *two = one->next; while (two) { int trem = rem - two->data; //total remaining if (st.find(trem) != st.end()) { count++; } else { st.insert(two->data); } two = two->next; } st.clear(); } return count; } TC: O(N*N) SC: O(N) Optimal Approach: Fix one pointer and then find two other pairs using two pointer method int countTriplets(struct Node* head, int x) { // if list is empty if (head == NULL) return 0; int count = 0; Node *first = head; Node *last = head; while (last->next != NULL) last = last->next; for (Node *one = head; one->next->next->next != NULL; one = one->next) { Node *left = one->next; Node *right = last; while (left != right && left->next != right) { int sum = one->data + left->data + right->data; if (sum == x) { count++; left = left->next; right = right->prev; } else if (sum > x) { right = right->prev; } else { left = left->next; } } } return count; } TC: O(N*N) SC: O(1)
[ "noreply@github.com" ]
vbhv17.noreply@github.com
3046d2ea75a9db7a174f70e76cd6ed059e82936a
45a26f28a29ab6dd9d3bcf315117d814f50808b1
/src/AppleMacRISC4PE/AppleMacRISC4PE-160.0.9/IOPlatformPlugins/PBG4_PlatformPlugin/CtrlLoops/PBG4_DPSCtrlLoop.cpp
2a19899649db63d8dfdd0944efda22a7143a7e95
[]
no_license
zeborrego/opensource.apple.com
0eb9161029ce8440dbdc4b5157b3927a6e381f8d
88cbaab4a42e97cbbfe6b660f2f0945536821be6
refs/heads/master
2021-07-06T17:16:28.241638
2017-10-02T11:58:56
2017-10-02T11:58:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
22,672
cpp
/* * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. * * File: $Id: PBG4_DPSCtrlLoop.cpp,v 1.12 2005/01/21 23:11:59 yee1 Exp $ * */ #include <IOKit/IOLib.h> #include <machine/machine_routines.h> #include "IOPlatformPluginSymbols.h" #include "IOPlatformPlugin.h" #include "PBG4_PlatformPlugin.h" #include "PBG4_DPSCtrlLoop.h" #define super IOPlatformCtrlLoop OSDefineMetaClassAndStructors( PBG4_DPSCtrlLoop, IOPlatformCtrlLoop ) #pragma mark - #pragma mark *** Initialization *** #pragma mark - /******************************************************************************* * Method: * initPlatformCtrlLoop * * Purpose: * Fetch control loop parameters (from thermal profile, SDB, etc.) and setup * control loop initial state. ******************************************************************************/ // virtual IOReturn PBG4_DPSCtrlLoop::initPlatformCtrlLoop(const OSDictionary *dict) { char functionName[64]; OSData *pHandle; OSNumber *watts; UInt32 pHandleValue; IOService *resources; IOReturn result; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop entered\n" ); // Find pHandle provided by platform expert if (pHandle = OSDynamicCast (OSData, gPlatformPlugin->getProvider()->getProperty (kAAPLPHandle))) pHandleValue = *(UInt32 *)pHandle->getBytesNoCopy(); else pHandleValue = 0; // Find service that handles cpu voltage if (gPlatformPlugin->getProvider()->getProperty (kCpuVCoreSelect)) { sprintf(functionName, "%s-%08lx", kCpuVCoreSelect, pHandleValue); fCpuVoltageControlSym = OSSymbol::withCString(functionName); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop waiting for function '%s'\n", functionName ); resources = gPlatformPlugin->waitForService(gPlatformPlugin->resourceMatching(fCpuVoltageControlSym)); if (resources) { fCpuVoltageControlService = OSDynamicCast (IOService, resources->getProperty(fCpuVoltageControlSym)); } } else { IOLog ("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no property '%s' - Dynamic Power Step will NOT be supported\n", kCpuVCoreSelect); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop no property '%s'\n", kCpuVCoreSelect); return kIOReturnError; } // lookup the cpu temp sensor by key kCPUTempSensorDesc if (!(fCpuTempSensor = lookupAndAddSensorByKey (kCPUTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no CPU sensor!!\n"); // lookup the battery temp sensor by key kBatteryTempSensorDesc if (!(fBattTempSensor = lookupAndAddSensorByKey (kBatteryTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no battery sensor!!\n"); // lookup the track pad temp sensor by key kTrackPadTempSensorDesc if (!(fTPadTempSensor = lookupAndAddSensorByKey (kTrackPadTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no track pad sensor!!\n"); // lookup the Uni-N temp sensor by key kUniNTempSensorDesc if (!(fUniNTempSensor = lookupAndAddSensorByKey (kUniNTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no Uni-N temp sensor!!\n"); // lookup the power supply temp sensor by key kPwrSupTempSensorDesc if (!(fPwrSupTempSensor = lookupAndAddSensorByKey (kPwrSupTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no power supply sensor!!\n"); watts = OSDynamicCast (OSNumber, dict->getObject (kCtrlLoopPowerAdapterBaseline)); if (watts) { fBaselineWatts = watts->unsigned32BitValue(); // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop got baseline watts %d\n", fBaselineWatts ); } else { fBaselineWatts = 0xFF; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop no baseline watts - defaulting to worst case\n" ); } result = super::initPlatformCtrlLoop (dict); fUsePowerPlay = gPlatformPlugin->fUsePowerPlay; // pmRootDomain is the recipient of GPU controller messages fPMRootDomain = OSDynamicCast(IOPMrootDomain, gPlatformPlugin->waitForService(gPlatformPlugin->serviceMatching("IOPMrootDomain"))); if (result == kIOReturnSuccess) (void) setInitialState (); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop done\n" ); return result; } #pragma mark - #pragma mark *** Control Loop Primitives *** #pragma mark - /******************************************************************************* * Method: * setProcessorVoltage * * Purpose: * Set the processor voltage high or low for vStep * stepValue == 0 => run fast (voltage high) * stepValue == 1 => run slow (voltage low) * * NOTE - this is opposite the sense of how the GPIO is set: * gpioData == 1 (true) => run fast (voltage high) * gpioData == 0 (false) => run slow (voltage low) ******************************************************************************/ bool PBG4_DPSCtrlLoop::setProcessorVoltage( UInt32 stepValue ) { if (fCpuVoltageControlSym && fCpuVoltageControlService) fCpuVoltageControlService->callPlatformFunction (fCpuVoltageControlSym, false, (void *) (stepValue == 0), 0, 0, 0); // Wait for power to settle when raising voltage if (stepValue == 0) IODelay (600); // 600 µseconds return true; } /******************************************************************************* * Method: * setProcessorVStepValue * * Purpose: * Set the processor stepping to the desired stepping value. * metaState == 0 => run fast (DP) * metaState == 1 => run slow (DP) * ******************************************************************************/ bool PBG4_DPSCtrlLoop::setProcessorVStepValue( const OSNumber *newMetaState ) { bool newUserStateSlow, prevUserStateSlow; //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - entered\n"); if (newMetaState->isEqualTo(fPreviousMetaState)) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - no change in metaState - exiting\n"); return true; } // Determine new and old conditions newUserStateSlow = (newMetaState->isEqualTo(gIOPPluginOne) || newMetaState->isEqualTo(gIOPPluginThree)); prevUserStateSlow = (fPreviousMetaState->isEqualTo(gIOPPluginOne) || fPreviousMetaState->isEqualTo(gIOPPluginThree)); // If going fast, raise voltage first if (!newUserStateSlow) { // Step the processor voltage up //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - stepping voltage up\n"); setProcessorVoltage (0); //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - step voltage up done\n"); } if (prevUserStateSlow != newUserStateSlow) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - setting processor speed %d\n", //newUserStateSlow ? 1 : 0); #if defined( __ppc__ ) ml_set_processor_speed( newUserStateSlow ? 1 : 0 ); #endif //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - done setting processor speed\n"); IODelay (300); // 300 µseconds } // else CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - no processor speed change required\n"); // If going slow, lower voltage after setting speed if (newUserStateSlow) { // Step the processor voltage down //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - stepping voltage down\n"); setProcessorVoltage (1); //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - step voltage down done\n"); } fPreviousMetaState = newMetaState; // Remember state //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - done\n"); return( true ); } /******************************************************************************* * Method: * setGraphicsProcessorStepValue * * Purpose: * Set the graphics processor stepping to the desired stepping value. * metaState == 0 => run fast * metaState == 1 => run slow * * This is not based on load but based on user setting "Reduced" in the * Energy Saver preferences. This is transmitted to us in the high bit * (kSetAggrUserAuto) of the setAggressiveness call ******************************************************************************/ bool PBG4_DPSCtrlLoop::setGraphicsProcessorStepValue( const OSNumber *newGPUMetaState ) { bool newUserStateSlow, prevUserStateSlow; // Determine new and old conditions newUserStateSlow = (newGPUMetaState->isEqualTo(gIOPPluginOne) || newGPUMetaState->isEqualTo(gIOPPluginThree)); prevUserStateSlow = (fPreviousGPUMetaState->isEqualTo(gIOPPluginOne) || fPreviousGPUMetaState->isEqualTo(gIOPPluginThree)); if (prevUserStateSlow != newUserStateSlow) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setGraphicsProcessorStepValue - sending %d\n", //newUserStateSlow ? 3 : 0); // Change GPU accordingly fPMRootDomain->setAggressiveness (kIOFBLowPowerAggressiveness, newUserStateSlow ? 3 : 0); fPreviousGPUMetaState = newGPUMetaState; // Remember state } return true; } /******************************************************************************* * Method: * batteryIsOvercurrent * ******************************************************************************/ bool PBG4_DPSCtrlLoop::batteryIsOvercurrent( void ) { bool envBatOvercurrent; if (!gPlatformPlugin->fEnvDataIsValid) // No battery data yet, assume we're OK return false; // Get the currently reported global environment state of the battery current envBatOvercurrent = (gPlatformPlugin->getEnv(gIOPPluginEnvBatteryOvercurrent) == kOSBooleanTrue); //If we're in an overcurrent situation re-evaluate it once the deadline expires if (fBatteryIsOvercurrent) { if (AbsoluteTime_to_scalar(&deadline) == 0) { // Deadline has expired, clear it unless the env overcurrent says otherwise fBatteryIsOvercurrent = envBatOvercurrent; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::batteryIsOvercurrent - deadline expired, setting overcurrent '%s'\n", fBatteryIsOvercurrent ? "true" : "false"); } } else { // Not currently in overcurrent if (envBatOvercurrent) { // Setup a deadline (kOvercurrentInterval seconds) for the overcurrent to expire clock_interval_to_deadline( kOvercurrentInterval /* seconds */, NSEC_PER_SEC, &deadline ); fBatteryIsOvercurrent = true; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::batteryIsOvercurrent - setting overcurrent 'true'\n"); } } return fBatteryIsOvercurrent; } /******************************************************************************* * Method: * lowPowerForcedDPS * ******************************************************************************/ bool PBG4_DPSCtrlLoop::lowPowerForcedDPS( void ) { OSNumber *powerStatus; UInt32 powerVal, curWatts; bool result; result = false; powerStatus = OSDynamicCast (OSNumber, gPlatformPlugin->getEnv (gIOPPluginEnvPowerStatus)); if (powerStatus) { powerVal = powerStatus->unsigned32BitValue(); curWatts = (powerVal >> 24) & 0xFF; if (!((curWatts > 0) && (curWatts >= fBaselineWatts)) || ((curWatts == 0) && ((powerVal & (kIOPMACInstalled | kIOPMACnoChargeCapability)) == (kIOPMACInstalled | kIOPMACnoChargeCapability)))) { CTRLLOOP_DLOG ("PBG4_DPSCtrlLoop::lowPowerForcedDPS - got powerStatus 0x%x, curWatts %d\n", powerVal, curWatts); if (((powerVal & (kIOPMACInstalled | kIOPMACnoChargeCapability)) == (kIOPMACInstalled | kIOPMACnoChargeCapability)) || ((powerVal & (kIOPMRawLowBattery | kIOPMBatteryDepleted)) != 0) || ((powerVal & kIOPMBatteryInstalled) == 0)) { CTRLLOOP_DLOG ("PBG4_DPSCtrlLoop::lowPowerForcedDPS - forcing reduced speed\n"); result = true; // force low speed } } } return result; } #pragma mark - #pragma mark *** High Level Transition Logic *** #pragma mark - /******************************************************************************* * Method: * setInitialState * * Purpose: * At the end of initialization, we set the stepping and voltage to known * initial settings. Initial state is based on dynamic power step and * whether or not we can step and switch voltage. At this early point we'll * never have a temp sensor or a slew controller available yet. * ******************************************************************************/ bool PBG4_DPSCtrlLoop::setInitialState( void ) { bool success = false; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setInitialState entered\n" ); fPreviousMetaState = gIOPPluginOne; // Start out in low state setMetaState( fPreviousMetaState ); // Remember the initial state fPreviousGPUMetaState = gIOPPluginZero; // Graphics starts out high ctrlloopState = kIOPCtrlLoopFirstAdjustment; success = updateMetaState(); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setInitialState returning %s\n", success ? "true" : "false" ); return success; } /******************************************************************************* * Method: * adjustControls * * Purpose: * Implements high-level slewing/stepping algorithm and performs system sleep * check(s). * ******************************************************************************/ void PBG4_DPSCtrlLoop::adjustControls( void ) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::adjustControls entered\n" ); updateMetaState(); // updateMetaState does the work for us CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::adjustControls done\n" ); return; } /******************************************************************************* * Method: * updateMetaState * * Purpose: * Examine environmental conditions and choose DPSCtrlLoop's meta state. * ******************************************************************************/ // virtual bool PBG4_DPSCtrlLoop::updateMetaState( void ) { OSNumber *tmpNumber; const OSNumber *newMetaState, *newGPUMetaState; UInt32 dpsTarget; bool isIdle, didAct; if (ctrlloopState == kIOPCtrlLoopNotReady) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered with control loop not ready\n"); return false; } if (ctrlloopState == kIOPCtrlLoopWillSleep) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered with control loop in sleep state - exiting\n" ); return false; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered\n" ); // fetch the current Dynamic Power Step setting tmpNumber = OSDynamicCast( OSNumber, gPlatformPlugin->getEnv( gIOPPluginEnvDynamicPowerStep ) ); dpsTarget = tmpNumber ? tmpNumber->unsigned32BitValue() : 0; /* * Check idle state - based on no events happening in kIdleInterval when we're on battery * Only do this if we are DFS low and not in an overcurrent situation, i.e., the idleTimer is active * Once the deadline reaches zero, we consider ourselves in the idle state until fIdleTimerActive is cleared */ isIdle = false; if ((gPlatformPlugin->getEnv(gIOPPluginEnvACPresent) == kOSBooleanFalse) && fIdleTimerActive) isIdle = (AbsoluteTime_to_scalar(&deadline) == 0); /* * gIOPPluginEnvUserPowerAuto being true indicates user set "Automatic" in Energy Saver Preferences * If it's false then the user has chosen either "Highest" or "Reduced". If it's "Reduced", then * our response to that is to request the graphics processor run slower * * If fUsePowerPlay is false we never go slow on graphics */ if ((gPlatformPlugin->getEnv(gIOPPluginEnvUserPowerAuto) == kOSBooleanTrue) || !fUsePowerPlay) { if (!fUsePowerPlay) // Stay with highest newGPUMetaState = gIOPPluginZero; else { if (isIdle) CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState GPU low based on idle\n"); // Base it on the idle state newGPUMetaState = isIdle ? gIOPPluginOne : gIOPPluginZero; } } else // Use whatever user set newGPUMetaState = dpsTarget ? gIOPPluginOne : gIOPPluginZero; // Start out in 0 - the highest metaState or 1 if DFS requests it newMetaState = dpsTarget ? gIOPPluginOne : gIOPPluginZero; if (!fIdleTimerActive && batteryIsOvercurrent()) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - battery overcurrent forced metastate 1\n"); newMetaState = gIOPPluginOne; } /* * Get thermal sensor states. The current model here is that if *any* sensors report a thermal * state >= 1 then we DFS low. There is more resolution than states 0 & 1 in the state sensors * but for now all the two states are all we care about */ // fetch the current cpu0 temperature state if (safeGetState(fCpuTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState CPU0 non-zero temp state 0x%lx\n", safeGetState(fCpuTempSensor)); } // fetch the current batt temperature state if (safeGetState(fBattTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState battery non-zero temp state 0x%lx\n", safeGetState(fBattTempSensor)); } // fetch the current trackpad temperature state if (safeGetState(fTPadTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState trackpad non-zero temp state 0x%lx\n", safeGetState(fTPadTempSensor)); } // fetch the current Uni-N temperature state if (safeGetState(fUniNTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState Uni-N non-zero temp state 0x%lx\n", safeGetState(fUniNTempSensor)); } // fetch the current power supply temperature state if (safeGetState(fPwrSupTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState power supply non-zero temp state 0x%lx\n", safeGetState(fPwrSupTempSensor)); } // Check for low power conditions if (lowPowerForcedDPS ()) { newMetaState = gIOPPluginOne; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - final metaState %d\n", newMetaState->unsigned32BitValue() ); didAct = false; // Step processor, if necessary if (!newMetaState->isEqualTo(getMetaState())) { setMetaState( newMetaState ); // Set the new state CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState calling setProcessorVStepValue(0x%lx)\n", newMetaState->unsigned32BitValue()); setProcessorVStepValue (newMetaState); // If we're not in an overcurrent situation, handle idle timers if (!fBatteryIsOvercurrent) { // If the new state is high, clear any idle timer if (newMetaState->isEqualTo(gIOPPluginZero)) { // Clear out deadline so we don't get called because of the idle timer super::deadlinePassed(); // Use the IOPlatformCtrlLoop implementation so we don't get re-entered // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - state high - clearing idle timer\n"); fIdleTimerActive = false; } else { // The new state is low so, start the idle timer // Setup a deadline (kIdleInterval seconds) for the activity monitor to expire // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - state low - setting idle timer\n"); clock_interval_to_deadline( kIdleInterval /* seconds */, NSEC_PER_SEC, &deadline ); fIdleTimerActive = true; } } didAct = true; } // Step graphics processor, if necessary if (!newGPUMetaState->isEqualTo(fPreviousGPUMetaState)) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState calling setGraphicsProcessorStepValue(0x%lx)\n", newGPUMetaState->unsigned32BitValue()); setGraphicsProcessorStepValue (newGPUMetaState); didAct = true; } return(didAct); // Signal the change } #pragma mark - #pragma mark *** Helpers / Entry Points *** #pragma mark - /******************************************************************************* * Method: * willSleep * * Purpose: * This is a virtual method that's called when the system is going down to sleep ******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::willSleep( void ) { if (ctrlloopState == kIOPCtrlLoopNotReady) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep entered with control loop not ready\n"); return; } CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep entered\n"); super::willSleep(); fSavedMetaState = getMetaState(); // Save state setMetaState( gIOPPluginZero ); // Force highspeed CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep calling setProcessorVStepValue(0)\n"); setProcessorVStepValue (gIOPPluginZero); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep done\n"); return; } /******************************************************************************* * Method: * didWake * * Purpose: * This is a virtual method that's called when the system is waking from sleep ******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::didWake( void ) { if (ctrlloopState == kIOPCtrlLoopNotReady) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered with control loop not ready\n"); return; } if (!fSavedMetaState) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered with no savedMetaState - exiting\n"); return; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered\n"); setMetaState( fSavedMetaState ); // Restore previous state //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake calling setProcessorVStepValue(0x%lx)\n", //fSavedMetaState->unsigned32BitValue()); setProcessorVStepValue (fSavedMetaState); super::didWake(); updateMetaState(); // Set new state based on current conditions CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake done\n"); return; } /******************************************************************************* * Method: * deadlinePassed * * Purpose: * When a battery overcurrent event occurs we set an interval timer to clear * it later. We get called here when that happens. The deadline is set in * batteryIsOvercurrent() *******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::deadlinePassed( void ) { super::deadlinePassed(); // clear the deadline updateMetaState(); // Re-evaluate the situation return; }
[ "mattl@cnuk.org" ]
mattl@cnuk.org
f490d62c699838a3baabfab762973f2394c14b56
8c03b5a410c7747d5ef601db1f75f0c664739fdd
/JCDT/JCDT_Lib/internal/ast/AstSwitchStatement.h
754c40d4d1b6795707a177c855e78cc274fd2106
[ "MIT" ]
permissive
15831944/JCDT
5d76f4cdb3751b54bc8700f46ab7c8e27ed9e07c
2b009ea887b4816303fed9e6e1dc104a90c67d16
refs/heads/main
2023-04-14T18:28:39.589647
2021-04-25T02:34:54
2021-04-25T02:34:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,098
h
#ifndef AstSwitchStatement_INCLUDED #define AstSwitchStatement_INCLUDED #include "JCDT_Lib/internal/ast/ast_Pre_declaration.h" #include "JCDT_Lib/internal/ast/ReachComleteAbleStatement.h" namespace Jikes { // Open namespace Jikes block // // SwitchStatement --> <SWITCH, Label_opt, switch_token, Expression, {_token, // SwitchBlockStatements, SwitchLabels_opt, }_token> // class SwitchStatement : public ReachComleteAbleStatement { AstStoragePool* pool; // // The sorted list of case label values. Index 0 is reserved for the // default case. Index 1 - size are for the case labels, and get sorted. // CaseElement** cases; unsigned num_cases; #ifdef JIKES_DEBUG unsigned max_cases; // bounds check only when debugging #endif // JIKES_DEBUG public: static SwitchStatement* SwitchStatementCast(Ast* node) { return DYNAMIC_CAST<SwitchStatement*>(node->kind == SWITCH ? node : NULL); } Token* switch_token; Expression* expression; AstBlock* switch_block; SwitchStatement(AstStoragePool* p); ~SwitchStatement() {} CaseElement*& Case(unsigned i) { assert(i < num_cases); return cases[i + 1]; } CaseElement*& DefaultCase() { return cases[0]; } unsigned NumCases() { return num_cases; } void AllocateCases(unsigned estimate = 1); void AddCase(CaseElement*); AstSwitchBlockStatement* GetBlock(unsigned i); unsigned NumBlocks(); void SortCases(); CaseElement* CaseForValue(i4 value); #ifdef JIKES_DEBUG void Print(Ostream&,LexStream&) override; virtual void Unparse(Ostream&, LexStream*); #endif // JIKES_DEBUG virtual Ast* Clone(AstStoragePool*); virtual void traverse(ASTVisitor* visitor,AstNodeScope* scope) override; ; virtual Token* LeftToken() { return switch_token; } virtual Token* RightToken(); }; inline void SwitchStatement::AddCase(CaseElement* case_element) { assert(cases); cases[++num_cases] = case_element; #ifdef JIKES_DEBUG assert(num_cases < max_cases); #endif // JIKES_DEBUG } } // Close namespace Jikes block #endif // AstSwitchStatement_INCLUDED
[ "731784510@qq.com" ]
731784510@qq.com
4b9ced68e07824a426a0b9873c169e892d696024
ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c
/out/release/gen/services/network/public/mojom/fetch_api.mojom.h
ef4d53e6b1840eaefea5dec9a95b76e6eba69684
[ "BSD-3-Clause" ]
permissive
xueqiya/chromium_src
5d20b4d3a2a0251c063a7fb9952195cda6d29e34
d4aa7a8f0e07cfaa448fcad8c12b29242a615103
refs/heads/main
2022-07-30T03:15:14.818330
2021-01-16T16:47:22
2021-01-16T16:47:22
330,115,551
1
0
null
null
null
null
UTF-8
C++
false
false
1,371
h
// services/network/public/mojom/fetch_api.mojom.h is auto generated by mojom_bindings_generator.py, do not edit // Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_ #define SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_ #include <stdint.h> #include <limits> #include <type_traits> #include <utility> #include "base/callback.h" #include "base/macros.h" #include "base/optional.h" #include "mojo/public/cpp/bindings/mojo_buildflags.h" #if BUILDFLAG(MOJO_TRACE_ENABLED) #include "base/trace_event/trace_event.h" #endif #include "mojo/public/cpp/bindings/clone_traits.h" #include "mojo/public/cpp/bindings/equals_traits.h" #include "mojo/public/cpp/bindings/lib/serialization.h" #include "mojo/public/cpp/bindings/struct_ptr.h" #include "mojo/public/cpp/bindings/struct_traits.h" #include "mojo/public/cpp/bindings/union_traits.h" #include "services/network/public/mojom/fetch_api.mojom-shared.h" #include "services/network/public/mojom/fetch_api.mojom-forward.h" #include <string> #include <vector> namespace network { namespace mojom { } // namespace mojom } // namespace network namespace mojo { } // namespace mojo #endif // SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_
[ "xueqi@zjmedia.net" ]
xueqi@zjmedia.net
05a37fa7ad026ff0456327e80ba48d8bf6eb006b
65ec68d841e158de3376657fa843db0cb152c142
/condition.cpp
62a5bfc2c6c3f17315e1b7c1eacca70f242a206b
[]
no_license
iversongit/20160302
d4fd2c037f5271884fda59a16ee49996683fa66a
e90b2bee341a9a31cf7070d6188eebbec78b83eb
refs/heads/master
2021-01-10T10:27:24.928524
2016-03-03T06:44:44
2016-03-03T06:44:44
52,935,851
0
0
null
null
null
null
UTF-8
C++
false
false
2,016
cpp
/// /// @file homework4_condition.cpp /// @iverson (1564329410@qq.com) /// @date 2016-02-29 05:18:03 /// #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <pthread.h> #include <iostream> using std::cout; using std::endl; class Mutexlock{ //互斥锁类 public: Mutexlock(); ~Mutexlock(); void lock(); void unlock(); // private: pthread_mutex_t _mutex; //由于pthread_cond_wait中要用到_mutex,为方便起见, }; //将_mutex设置于public下 class Condition{ //条件变量类 public: Condition(); ~Condition(); void wait(); void signal(); void broadcast(); private: pthread_cond_t _cond; }; Condition cond; Mutexlock mutex; /*---------Mutexlock区------------*/ Mutexlock::Mutexlock(){ cout<<"Mutexlock()"<<endl; pthread_mutex_init(&_mutex,NULL); } Mutexlock::~Mutexlock(){ cout<<"~Mutexlock()"<<endl; pthread_mutex_destroy(&_mutex); } void Mutexlock::lock(){ pthread_mutex_lock(&_mutex); } void Mutexlock::unlock(){ pthread_mutex_unlock(&_mutex); } /*---------Condition区------------*/ Condition::Condition(){ cout<<"Condition()"<<endl; pthread_cond_init(&_cond,NULL); } Condition::~Condition(){ cout<<"~Condition()"<<endl; pthread_cond_destroy(&_cond); } void Condition::wait(){ pthread_cond_wait(&_cond,&(mutex._mutex)); } void Condition::signal(){ pthread_cond_signal(&_cond); } void Condition::broadcast(){ pthread_cond_broadcast(&_cond); } void * pthread_func(void* p){ mutex.lock(); cout<<"this is child thread"<<endl; cond.wait(); cout<<"waking"<<endl; mutex.unlock(); pthread_exit(NULL); } int main(void){ //创建子线程 pthread_t phid[5]; for(int i=0; i<5; i++){ pthread_create(&phid[i],NULL,pthread_func,NULL); } sleep(1); mutex.lock(); cout<<"this is main thread"<<endl; mutex.unlock(); // cond.signal(); // cond.broadcast(); for(int j=0; j<5; j++){ pthread_join(phid[j],NULL); } // pthread_join(phid,NULL); return 0; }
[ "1564329410@qq.com" ]
1564329410@qq.com
e809f5be556237c6ff93153b59d5307e0df31742
6d20d1c3ab187c56ded3d3b5f38b53369758a5d5
/Server.h
5e1ef26016ac94be3ba1f86bb98bea72c84a6081
[]
no_license
matiutd888/screen-worms
021cd064e0d0ffa106b5ea61e5b020cf24e119fb
1039813dd197c7b77af2b08b6cb0d4ae0ff13342
refs/heads/master
2023-08-15T02:33:01.331007
2021-09-25T16:04:40
2021-09-25T16:04:40
368,588,813
0
0
null
null
null
null
UTF-8
C++
false
false
5,653
h
// // // Created by mateusz on 23.05.2021. #ifndef ZADANIE_2_SERVER_H #define ZADANIE_2_SERVER_H #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include <cstring> #include <unistd.h> #include <map> #include <set> #include "err.h" #include "PollUtils.h" #include "Game.h" #include "Packet.h" #include <iostream> #include "Connection.h" #include "DataBuilders.h" class MsgQueue { static constexpr int CLIENTS_SIZE = 25; static constexpr int NO_EVENT = -1; Client clients[CLIENTS_SIZE]; int64_t expectedEventNo[CLIENTS_SIZE]; size_t nextClientIndex; uint32_t eventsCount; static void advanceModulo(size_t &i) { i++; i %= CLIENTS_SIZE; } public: class NoClientWithMessagesException : std::exception { const char * what() const noexcept override { return "No Client with messages Exeption!"; } }; class InvalidEventNoException : std::exception { const char * what() const noexcept override { return "Invalid event No!"; } }; MsgQueue() { eventsCount = 0; nextClientIndex = 0; for (int i = 0; i < CLIENTS_SIZE; ++i) { expectedEventNo[i] = NO_EVENT; } } bool addClient(Client client, uint32_t nextExpectedEventNo); bool hasMessages() const; size_t getNextExpectedClientIndexAndAdvance(); uint32_t getExpectedEventNo(size_t index) const { return expectedEventNo[index]; } const Client &getClientByIndex(size_t index); void setEventsCount(uint32_t events) { eventsCount = events; } void setExpectedEventsToZero(); void updateClient(const Client &client, uint32_t nextExpectedEventNo); void deleteClientFromQueue(const Client &client); void setExpectedEventNo(size_t index, uint32_t value); }; class ClientManager { using clientValue_t = std::pair<Player, int>; std::map<Client, clientValue_t> clients; Game game; int countReadyPlayers; int countNotObservers; Random random; std::vector<Record> gameRecords; MsgQueue queue; static constexpr int PLAYER_INDEX = 0; static constexpr int TICKS_INDEX = 1; inline static const std::string TAG = "Client Manager: "; public: ClientManager(uint32_t width, uint32_t height, int turningSpeed, uint32_t seed) : game(width, height, turningSpeed), countReadyPlayers(0), countNotObservers(0), random(seed) {}; // Gets package containing events that next client in queue expects. std::pair<WritePacket, Client> handleNextInQueue(); void addTicksAndCleanInactive() { for (auto it = clients.begin(), next_it = it; it != clients.end(); it = next_it) { ++next_it; auto &valIt = it->second; std::get<TICKS_INDEX>(valIt)++; if (std::get<TICKS_INDEX>(valIt) >= Utils::NUMBER_OF_TICKS) { debug_out_1 << "TICKS: Erasing client " << it->first << std::endl; removeClient(it); debug_out_1 << "TICKS: Clients size after = " << clients.size() << std::endl; } } } Game &getGame() { return game; } bool canGameStart() const { debug_out_1 << "cout not observers " << countNotObservers << " count ready players" << countReadyPlayers << std::endl; return !game.isGameNow() && countReadyPlayers == countNotObservers && countNotObservers >= 2; } bool isNameUnique(const std::string &name, const Client &c) { for (const auto &it : clients) { if (it.second.first.getName() == name && !(it.first == c)) return false; } return true; } void addClient(const Client &client, const ClientMessage &newMsg); void removeClient(const std::map<Client, clientValue_t>::iterator &iterator); void updateClientPlayersInfo(const Client &client, clientValue_t &val, const ClientMessage &message); void handleClient(Client &newClient, const ClientMessage &newMsg); bool clientExists(const Client &client) const { return clients.find(client) != clients.end(); } bool hasMessages() const { return queue.hasMessages(); } auto startGame(); void endGame(); void performRound(); MsgQueue& getQueue() { return queue; } }; class Server { inline static const std::string TAG = "Server: "; ServerData serverData; ClientManager manager; UDPServerSocket serverSocket; PollServer pollServer; static void readTimeout(int fd); void readFromClients(struct sockaddr_storage &clientAddr, ReadPacket &packet); void sendPacketToClient(const Client &client, const WritePacket &writePacket) const; public: explicit Server(const ServerData &serverData) : serverData(serverData), manager(serverData.getWidth(), serverData.getHeight(), serverData.getTuriningSpeed(), serverData.getSeed()), serverSocket(serverData.getPortNum()), pollServer(serverSocket.getSocket(), serverData.getRoundsPerSec()) {} [[noreturn]] void start(); }; #endif //ZADANIE_2_SERVER_H
[ "matiutd888@gmail.com" ]
matiutd888@gmail.com
3379efc25d5470de8ff8eefbc8719a13eef2a4f8
6484f4d0bd1bd429f4ce373c2b43d4de09b3cd64
/src/qt/splashscreen.cpp
faf7b5b3a44d5b9fe2232fd4a64e085b1b66cffd
[ "MIT" ]
permissive
seduscoin/seduscoin
2c4b138374b7066dc85e0ea371111b9fb98672d7
a584075870d4adca3c7b545e1a4a9b88bdaade9f
refs/heads/master
2020-03-30T23:38:07.018445
2018-10-05T13:53:43
2018-10-05T13:53:43
148,973,399
0
0
null
null
null
null
UTF-8
C++
false
false
6,198
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Sedus Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "splashscreen.h" #include "guiutil.h" #include "networkstyle.h" #include "clientversion.h" #include "init.h" #include "util.h" #include "ui_interface.h" #include "version.h" #ifdef ENABLE_WALLET #include "wallet/wallet.h" #endif #include <QApplication> #include <QCloseEvent> #include <QDesktopWidget> #include <QPainter> SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) : QWidget(0, f), curAlignment(0) { // transparent background setAttribute(Qt::WA_TranslucentBackground); setStyleSheet("background:transparent;"); // no window decorations setWindowFlags(Qt::FramelessWindowHint); // set reference point, paddings int paddingLeft = 14; int paddingTop = 470; int titleVersionVSpace = 17; int titleCopyrightVSpace = 32; float fontFactor = 1.0; // define text to place QString titleText = tr("Sedus Core"); QString versionText = QString(tr("Version %1")).arg(QString::fromStdString(FormatFullVersion())); QString copyrightTextBtc = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers")); QString copyrightTextSedus = QChar(0xA9)+QString(" 2014-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Sedus Core developers")); QString titleAddText = networkStyle->getTitleAddText(); // networkstyle.cpp can't (yet) read themes, so we do it here to get the correct Splash-screen QString splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash"; if(GetBoolArg("-regtest", false)) splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash_testnet"; if(GetBoolArg("-testnet", false)) splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash_testnet"; QString font = QApplication::font().toString(); // load the bitmap for writing some text over it pixmap = QPixmap(splashScreenPath); QPainter pixPaint(&pixmap); pixPaint.setPen(QColor(100,100,100)); // check font size and drawing with pixPaint.setFont(QFont(font, 28*fontFactor)); QFontMetrics fm = pixPaint.fontMetrics(); int titleTextWidth = fm.width(titleText); if(titleTextWidth > 160) { // strange font rendering, Arial probably not found fontFactor = 0.75; } pixPaint.setFont(QFont(font, 28*fontFactor)); fm = pixPaint.fontMetrics(); titleTextWidth = fm.width(titleText); pixPaint.drawText(paddingLeft,paddingTop,titleText); pixPaint.setFont(QFont(font, 15*fontFactor)); pixPaint.drawText(paddingLeft,paddingTop+titleVersionVSpace,versionText); // draw copyright stuff pixPaint.setFont(QFont(font, 10*fontFactor)); pixPaint.drawText(paddingLeft,paddingTop+titleCopyrightVSpace,copyrightTextBtc); pixPaint.drawText(paddingLeft,paddingTop+titleCopyrightVSpace+12,copyrightTextSedus); // draw additional text if special network if(!titleAddText.isEmpty()) { QFont boldFont = QFont(font, 10*fontFactor); boldFont.setWeight(QFont::Bold); pixPaint.setFont(boldFont); fm = pixPaint.fontMetrics(); int titleAddTextWidth = fm.width(titleAddText); pixPaint.drawText(pixmap.width()-titleAddTextWidth-10,pixmap.height()-25,titleAddText); } pixPaint.end(); // Resize window and move to center of desktop, disallow resizing QRect r(QPoint(), pixmap.size()); resize(r.size()); setFixedSize(r.size()); move(QApplication::desktop()->screenGeometry().center() - r.center()); subscribeToCoreSignals(); } SplashScreen::~SplashScreen() { unsubscribeFromCoreSignals(); } void SplashScreen::slotFinish(QWidget *mainWin) { Q_UNUSED(mainWin); /* If the window is minimized, hide() will be ignored. */ /* Make sure we de-minimize the splashscreen window before hiding */ if (isMinimized()) showNormal(); hide(); deleteLater(); // No more need for this } static void InitMessage(SplashScreen *splash, const std::string &message) { QMetaObject::invokeMethod(splash, "showMessage", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(message)), Q_ARG(int, Qt::AlignBottom|Qt::AlignHCenter), Q_ARG(QColor, QColor(55,55,55))); } static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress) { InitMessage(splash, title + strprintf("%d", nProgress) + "%"); } #ifdef ENABLE_WALLET static void ConnectWallet(SplashScreen *splash, CWallet* wallet) { wallet->ShowProgress.connect(boost::bind(ShowProgress, splash, _1, _2)); } #endif void SplashScreen::subscribeToCoreSignals() { // Connect signals to client uiInterface.InitMessage.connect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET uiInterface.LoadWallet.connect(boost::bind(ConnectWallet, this, _1)); #endif } void SplashScreen::unsubscribeFromCoreSignals() { // Disconnect signals from client uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET if(pwalletMain) pwalletMain->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #endif } void SplashScreen::showMessage(const QString &message, int alignment, const QColor &color) { curMessage = message; curAlignment = alignment; curColor = color; update(); } void SplashScreen::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.drawPixmap(0, 0, pixmap); QRect r = rect().adjusted(5, 5, -5, -5); painter.setPen(curColor); painter.drawText(r, curAlignment, curMessage); } void SplashScreen::closeEvent(QCloseEvent *event) { StartShutdown(); // allows an "emergency" shutdown during startup event->ignore(); }
[ "43329933+seduscoin@users.noreply.github.com" ]
43329933+seduscoin@users.noreply.github.com
32e2b5915fc92d2bece7634cf0edfdf873fa36a8
2f18747e7d2ba0123e046eabc322c5441454b923
/2_Foundations/02_Introduction_to_the_C++_Language/27_Formatting_the_Printed_Board/solution.cpp
d8d8a29dc8b204df88f95f3fc5a88efd90ede2d5
[]
no_license
jiangnanqw12/CPP-Nanodegree-master
37080a50bcd7e9ce77df63b48ff2739c18f9ab7d
362118edcf9ff59f02858d485a6fbd9fabf9347d
refs/heads/master
2020-08-08T14:31:02.580364
2020-08-03T23:50:38
2020-08-03T23:50:38
213,848,821
0
0
null
null
null
null
UTF-8
C++
false
false
2,126
cpp
/* Formatting the Printed Board 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 The board will eventually have more than two cell states as the program becomes more complicated, and it would be nice to add formatting to the printed output of the board to ensure readability as the number of board states increases. To accommodate more board states and facilitate print formatting, we have provided the State enum with enumerator values kEmpty and kObstacle. In this exercise, you will write a CellString function which converts each State to an appropriate string. In the next exercise, we will update the program to use the enum values and CellString function. */ #include <fstream> #include <iostream> #include <sstream> #include <string> #include <vector> using std::cout; using std::ifstream; using std::istringstream; using std::string; using std::vector; enum class State {kEmpty, kObstacle}; vector<int> ParseLine(string line) { istringstream sline(line); int n; char c; vector<int> row; while (sline >> n >> c && c == ',') { row.push_back(n); } return row; } vector<vector<int>> ReadBoardFile(string path) { ifstream myfile (path); vector<vector<int>> board{}; if (myfile) { string line; while (getline(myfile, line)) { vector<int> row = ParseLine(line); board.push_back(row); } } return board; } // TODO: Create the CellString function here, // using the following return strings: // "⛰️ " // "0 " string CellString(State cell){ switch(cell){ case State::kEmpty: return "0 "; case State::kObstacle: return "⛰️ "; } } void PrintBoard(const vector<vector<int>> board) { for (int i = 0; i < board.size(); i++) { for (int j = 0; j < board[i].size(); j++) { cout << board[i][j]; } cout << "\n"; } } int main() { auto board = ReadBoardFile("1.board"); PrintBoard(board); }
[ "382961818@qq.com" ]
382961818@qq.com
42ddd096d0ba5246c2873d66ded63b5c06cae3d9
862e7afe5da58e3dd4fc800eb178626b666663fb
/BoostLab/src/boost_asio_api.cpp
a4a283e11ab98086d9c80da746a16000a2357a7d
[]
no_license
goofycoder/goofytest
ca051dcdc7928ead4fe387cc156c192931a22153
9188fdf0e2dfc559fcdb05e360ee81575959335c
refs/heads/master
2020-06-06T14:18:18.757662
2014-10-13T19:31:33
2014-10-13T19:31:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,897
cpp
/* boost::asio::io_service io_service; // provide core I/O functionality boost::asio::io_service::work work(io_service); // 'work' class is a "class to inform io_service when it has work to do." // As long as an io_service has a work object associated with it, it will never run out of stuff to do. io_service.run() // run io_service object's event processing loop // run() blocks until all work has finished and there are no more handlers to be dispatched, // or until the io_service has been stopped // Multiple threads may call the run() function to set up a pool of threads // from which the io_service may execute handlers. // All threads that are waiting in the pool are equivalent and // the io_service may choose any one of them to invoke a handler. io_service.poll() // Run io_service object's event processing loop to execute ready handlers. // poll() function runs handlers that are ready to run, ** without blocking** // until the io_service has been stopped or there are no more ready handlers. io_service.reset() // Remove a work object from io_service // must be called prior to any second or later set of invocations of the run(), run_one(), poll() or poll_one() functions // when a previous invocation of these functions returned due to the io_service being stopped or running out of work. io_service.stop() // stop() function will signal the io_service that all work should be stopped // so after the current batch of work finishes, no more work will be done. // It stops the io_service object's event processing loop. // This function does not block, but instead simply signals the io_service to stop. // All invocations of its run() or run_one() member functions should return as soon as possible. io_service.post() // give io_service work via post() // post() asks the io_service to execute the given handler // but without allowing the io_service to call the handler from inside this function. // io_service guarantees that the handler will only be called in a thread in which // the run(), run_one(), poll() or poll_one() member functions is currently being invoked. ** Difference between stop() and reset(): 1) If we had associated a work object with the io_service and wanted to let all queued work finish - we would not call stop but rather destroy the work object. 2) If we want all work to finish but keep giving the io_service more things to do - it will never exit! - In that case, at some point, we would want to call the stop function to ensure the system actually stops. boost::bind() // supports arbitrary function objects, functions, function pointers, and class member function pointers // provides a great deal of flexibility */ #include <boost/asio.hpp> #include <boost/shared_ptr.hpp> #include <boost/thread.hpp> #include <boost/thread/mutex.hpp> #include <boost/bind.hpp> #include <iostream> static void example_run(); static void example_poll(); static void example_reset(); static void example_mthread_io(); static void WorkerThread(boost::shared_ptr<boost::asio::io_service> io_service_t); static void example_boost_bind(); static void goo(int i, float f); static void calc_fibo(size_t n); static size_t fibo(size_t n); boost::mutex global_stream_lock; // for std::cout class MyClass { public: void mFoo(int i, float f) { std::cout << "mFoo has input arg i: " << i << "\n"; std::cout << "mFoo has input arg f: " << f << "\n"; } }; static void example_run() { boost::asio::io_service io_service; //boost::asio::io_service::work work(io_service); // will block at run() blow if uncommented io_service.run(); std::cout << "Event processing is not blocked." << std::endl; // never reach here if io_server has work object associated with } static void example_poll() { const int NUM_TASKS = 7; boost::asio::io_service io_service; boost::asio::io_service::work work(io_service); for (int i=0; i<NUM_TASKS; i++) { size_t rv; rv = io_service.poll(); std::cout << "Task #" << i << " with return value: " << rv << "\n"; } } // remove a work object from an io_service static void example_reset() { boost::asio::io_service io_service; boost::shared_ptr<boost::asio::io_service::work> work(new boost::asio::io_service::work(io_service)); work.reset(); io_service.run(); std::cout << "Event processing is not blocked." << std::endl; } static void example_boost_bind() { // bind and invocate the regular function std::cout << "Bind regular function: \n"; boost::bind(&goo, 23, 3.14f)(); // bind and invocate the class member function std::cout << "Bind class member function: \n"; MyClass mc; boost::bind(&MyClass::mFoo, mc, 23, 3.14f)(); // pay attention to the bind and invocation of class member function } static void goo(int i, float f) { std::cout << "goo has input arg i: " << i << "\n"; std::cout << "goo has input arg f: " << f << "\n"; } static size_t fibo(size_t n) { if (n<=1) return n; boost::this_thread::sleep(boost::posix_time::millisec(500)); return fibo(n-1) + fibo(n-2); } static void calc_fibo(size_t n) { global_stream_lock.lock(); std::cout << "[" << boost::this_thread::get_id() << "] Now calculating fib( " << n << " ) " << std::endl; global_stream_lock.unlock(); size_t f = fibo(n); global_stream_lock.lock(); std::cout << "[" << boost::this_thread::get_id() << "] fib(" << n << ") = " << f << std::endl; global_stream_lock.unlock(); } static void WorkerThread(boost::shared_ptr<boost::asio::io_service> io_service_t) { global_stream_lock.lock(); std::cout << "Thread [" << boost::this_thread::get_id() <<"] Starts...\n"; global_stream_lock.unlock(); size_t rv = io_service_t->run(); // support more concurrency for processing work through io_service object. global_stream_lock.lock(); std::cout << "Thread [" << boost::this_thread::get_id() <<"] Terminates. Executed " << rv << " tasks.\n"; global_stream_lock.unlock(); } // create multiple threads to handle io_service events static void example_mthread_io() { global_stream_lock.lock(); std::cout << "Main thread [" << boost::this_thread::get_id() <<"] Starts...\n"; global_stream_lock.unlock(); const int NUM_THREADS = 3; // shared_ptr makes it copyable boost::shared_ptr<boost::asio::io_service> io_service_t(new boost::asio::io_service); boost::shared_ptr<boost::asio::io_service::work> work(new boost::asio::io_service::work(*io_service_t)); boost::thread_group worker_threads; for (int i=0; i<NUM_THREADS; ++i) { worker_threads.create_thread(boost::bind(&WorkerThread, io_service_t)); } // give io_service work via post() // post work to other worker threads (because the current thread did not call poll() or run() io_service_t->post( boost::bind(calc_fibo, 3) ); io_service_t->post( boost::bind(calc_fibo, 4) ); io_service_t->post( boost::bind(calc_fibo, 5) ); io_service_t->post( boost::bind(calc_fibo, 6) ); io_service_t->post( boost::bind(calc_fibo, 7) ); io_service_t->post( boost::bind(calc_fibo, 8) ); size_t rv = io_service_t->poll(); std::cout << "Main thread processed " << rv << " tasks.\n"; // reset the work object to signal once the work has been completed that we wish to exit work.reset(); //io_service_t->stop(); // if still use stop(), none of the work would be done // wait on all the threads to finish worker_threads.join_all(); global_stream_lock.lock(); std::cout << "Main thread [" << boost::this_thread::get_id() <<"] Terminates.\n"; global_stream_lock.unlock(); } void TEST_boost_asio_api() { std::cout << "\n=== Example: io_service run:\n"; example_run(); std::cout << "\n=== Example: io_service poll:\n"; example_poll(); std::cout << "\n=== Example: io_service reset:\n"; example_reset(); std::cout << "\n=== Example: boost bind:\n"; example_boost_bind(); std::cout << "\n=== Example: multithread io:\n"; example_mthread_io(); }
[ "yazhou2@linux01.(none)" ]
yazhou2@linux01.(none)
9e31719f37a33b900db7c5c2daf0cafe34c6f39c
5b8641e3be3fe9b80de788b70c261da13f084d78
/BruteForce.cpp
9830c07d47b1704a184af813e57734559664778a
[]
no_license
zg9uagfv/Algorithms
9be4dab71866b0b99b6ec579b429af4157dd8f36
8951826f01d3b01839059bdfe02a65cd16911b6e
refs/heads/master
2020-04-19T09:04:57.211806
2020-03-12T14:35:48
2020-03-12T14:35:48
168,099,143
2
0
null
null
null
null
UTF-8
C++
false
false
1,007
cpp
/* 暴风(Brute Force) 算法是普通的模式匹配算法,BF算法的思想就是将目标串 S 的 第一个字符与模式串 T 的第一个字符进行匹配,若相等,则继续比较 S 的第二个字 符和 T 的第二个字符;若不相等,则比较 S 的第二个字符和T的第一个字符,依次 比较下去,直到得出最后的匹配结果。BF算法是一种蛮力算法。 */ #include <iostream> #include <string> using namespace std; int brute_force(string& S, string& T) { int s_size = S.size(); int t_size = T.size(); int i = 0, j = 0, index = -1; while (i < s_size && j < t_size) { if (S[i] == T[j]) { i++; j++; } else { i = i - j + 1; j = 0; } } if (j == t_size){ index = i - j + 1; } return index; } int main(void) { string s = "12343214325789"; string t = "3257"; int ret = brute_force(s, t); std::cout<<"result : "<<ret<<std::endl; }
[ "noreply@github.com" ]
zg9uagfv.noreply@github.com
2e5f54b8668446dbbfdd1fa5af10c6112d66327b
90cf003e72163de2c209456d5d6908bfe40d6c8c
/src/NNWordLocalContextSeparate/model/Driver.h
e8f56aabc8cc3d8ba90373f1543db1dc2b9d5d8a
[]
no_license
zhangmeishan/SarcasmDetection
504829d3d78e02805df63e281a3741d2aadaf311
1ad8b31cd89d69417b90f5288bf0597f03f2546f
refs/heads/master
2021-01-11T18:16:23.486994
2017-04-28T02:53:55
2017-04-28T02:53:55
69,332,367
16
8
null
2017-04-28T02:53:56
2016-09-27T07:49:20
C++
UTF-8
C++
false
false
2,988
h
/* * Driver.h * * Created on: Mar 18, 2015 * Author: mszhang */ #ifndef SRC_Driver_H_ #define SRC_Driver_H_ #include <iostream> #include "ComputionGraph.h" //A native neural network classfier using only linear features class Driver{ public: Driver(size_t memsize) : aligned_mem(memsize){ _pcg = NULL; } ~Driver() { if (_pcg != NULL) delete _pcg; _pcg = NULL; } public: ComputionGraph *_pcg; // build neural graphs ModelParams _modelparams; // model parameters HyperParams _hyperparams; Metric _eval; CheckGrad _checkgrad; ModelUpdate _ada; // model update AlignedMemoryPool aligned_mem; public: inline void initial(int maxseq_size) { if (!_hyperparams.bValid()){ std::cout << "hyper parameter initialization Error, Please check!" << std::endl; return; } if (!_modelparams.initial(_hyperparams, &aligned_mem)){ std::cout << "model parameter initialization Error, Please check!" << std::endl; return; } _modelparams.exportModelParams(_ada); _modelparams.exportCheckGradParams(_checkgrad); _hyperparams.print(); _pcg = new ComputionGraph(); _pcg->createNodes(ComputionGraph::max_sentence_length, maxseq_size); _pcg->initial(_modelparams, _hyperparams, &aligned_mem); setUpdateParameters(_hyperparams.nnRegular, _hyperparams.adaAlpha, _hyperparams.adaEps); } inline dtype train(const vector<Example>& examples, int iter) { _eval.reset(); int example_num = examples.size(); dtype cost = 0.0; for (int count = 0; count < example_num; count++) { const Example& example = examples[count]; //forward _pcg->forward(example.m_densefeatures, true); //loss function int seq_size = example.m_densefeatures.size(); int wordnum = example.m_densefeatures[seq_size - 1].words.size(); cost += _modelparams.loss.loss(&_pcg->output, example.m_labels, _eval, example_num); // backward, which exists only for training _pcg->backward(); } if (_eval.getAccuracy() < 0) { std::cout << "strange" << std::endl; } return cost; } inline void predict(const vector<Feature> densefeatures, int& results) { _pcg->forward(densefeatures); _modelparams.loss.predict(&_pcg->output, results); } inline dtype cost(const Example& example){ _pcg->forward(example.m_densefeatures); //forward here int seq_size = example.m_densefeatures.size(); dtype cost = 0.0; cost += _modelparams.loss.cost(&_pcg->output, example.m_labels, 1); return cost; } void checkgrad(const vector<Example>& examples, int iter){ ostringstream out; out << "Iteration: " << iter; _checkgrad.check(this, examples, out.str()); } void updateModel() { _ada.update(); //_ada.update(5.0); } void writeModel(); void loadModel(); private: inline void resetEval() { _eval.reset(); } inline void setUpdateParameters(dtype nnRegular, dtype adaAlpha, dtype adaEps){ _ada._alpha = adaAlpha; _ada._eps = adaEps; _ada._reg = nnRegular; } }; #endif /* SRC_Driver_H_ */
[ "pdjlzs@live.com" ]
pdjlzs@live.com
658d2bb12374a8a7ede3a243864f0e669ae7e653
2e16c613e15e2c93b4ed7cce5aacd00c09647f50
/scenes/animation/02_simulation/cloth.hpp
ca162248da450d5229a11583f7096e74695c37f9
[ "MIT" ]
permissive
pypaut/epita_image_animation3d_vcl
d34c91577271b2f8a9fae6cfcc4e9e6b956a955b
e7eb68fed4f6a4615810a80c842f6b10467d339c
refs/heads/main
2023-01-01T01:17:37.377660
2020-10-21T17:13:29
2020-10-21T17:13:29
305,510,721
0
0
MIT
2020-10-19T20:54:24
2020-10-19T20:54:24
null
UTF-8
C++
false
false
2,796
hpp
#pragma once #include "main/scene_base/base.hpp" #ifdef SCENE_CLOTH struct user_parameters_structure { float m; // Global mass (to be divided by the number of particles) float K; // Global stiffness (to be divided by the number of particles) float mu; // Damping float wind; // Wind magnitude; }; struct simulation_parameters_structure { float m; // mass float L0; // spring rest length }; // Sphere and ground used for collision struct collision_shapes_structure { vcl::vec3 sphere_p; // position of the colliding sphere float sphere_r; // radius of the colliding sphere float ground_height; // height of the ground (in y-coordinate) }; struct scene_model : scene_base { // Particles parameters vcl::buffer2D<vcl::vec3> position; vcl::buffer2D<vcl::vec3> speed; vcl::buffer2D<vcl::vec3> force; // Simulation parameters simulation_parameters_structure simulation_parameters; // parameters that user can control directly user_parameters_structure user_parameters; // parameters adjusted with respect to mesh size (not controled directly by the user) // Cloth mesh elements vcl::mesh_drawable cloth; // Visual model for the cloth vcl::buffer<vcl::vec3> normals; // Normal of the cloth used for rendering and wind force computation vcl::buffer<vcl::uint3> connectivity; // Connectivity of the triangular model // Parameters of the shape used for collision collision_shapes_structure collision_shapes; // Store index and position of vertices constrained to have a fixed 3D position std::map<int,vcl::vec3> positional_constraints; // Textures GLuint texture_cloth; GLuint texture_wood; // Visual elements of the scene vcl::mesh_drawable sphere; vcl::mesh_drawable ground; // Gui parameters bool gui_display_wireframe; bool gui_display_texture; // Parameters used to control if the simulation runs when a numerical divergence is detected bool simulation_diverged; // Active when divergence is detected bool force_simulation; // Force to run simulation even if divergence is detected GLuint shader_mesh; vcl::timer_event timer; void initialize(); void collision_constraints(); void compute_forces(); void numerical_integration(float h); void detect_simulation_divergence(); void hard_constraints(); void set_gui(); void setup_data(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); void frame_draw(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); void display_elements(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); }; #endif
[ "damien.rohmer@gmail.com" ]
damien.rohmer@gmail.com
681fe8205c525964d7a06bfbc6c496f25ba4be58
2548f34e2ad49d5f5ddde5ccbab0990709de08ab
/Il2CppOutputProject/Source/il2cppOutput/Generics12.cpp
5e5c7a66f45a3fcc786a8e856fe2cc0840c46fec
[]
no_license
yutaosong2020/Hololens2_Tutorials
2e97b6242b6e44447f6ae21848f52dc6e3296804
2cef83823642f0c995926b82f7bafb0e604096e2
refs/heads/master
2023-04-28T08:00:49.381240
2021-05-24T02:54:59
2021-05-24T02:54:59
370,210,304
0
0
null
null
null
null
UTF-8
C++
false
false
2,094,714
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> // System.Collections.Generic.Dictionary`2<System.Int32,System.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1; // System.Collections.Generic.Dictionary`2<System.Int32,System.Char> struct Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int64> struct Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single> struct Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94; // System.Collections.Generic.Dictionary`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt32> struct Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Vector3> struct Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E; // System.Collections.Generic.Dictionary`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Boolean> struct Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1<System.Int32Enum> struct IEqualityComparer_1_t7AA149E6B89D540CAA0C0E63998D86FFAF7B9FAC; // System.Collections.Generic.IEqualityComparer`1<System.Int64> struct IEqualityComparer_1_tBD7EB381E8B25356EF3AED6C41B65AECA6B91A19; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1<System.UInt32> struct IEqualityComparer_1_t75C3361D3BE51E9742B0BBFA0F3998120E7CB6CE; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Boolean> struct KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Char> struct KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32> struct KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int64> struct KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object> struct KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single> struct KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int64,System.Object> struct KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean> struct KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt32> struct KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,UnityEngine.Vector3> struct KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Boolean> struct KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Int32> struct KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Object> struct KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> struct List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty> struct List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty> struct List_1_t2496D96CE063836FAF596CF99739372B64DE8397; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean> struct ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Char> struct ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32> struct ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int64> struct ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct ValueCollection_t35B217278C526310A4452FC95797832328E69020; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object> struct ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single> struct ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int64,System.Object> struct ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt32> struct ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,UnityEngine.Vector3> struct ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Boolean> struct ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Int32> struct ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Object> struct ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>[] struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>[] struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>[] struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>[] struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>[] struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>[] struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32>[] struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3>[] struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>[] struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean>[] struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // Microsoft.MixedReality.Toolkit.Utilities.Easing struct Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.String struct String_t; // System.Type struct Type_t; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97; IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_RuntimeMethod_var; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20; struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44; struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E; struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6; struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1; struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB; struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA; struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98; struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4; struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85; struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA; struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2<System.Int32,System.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___entries_1)); } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___keys_7)); } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___values_8)); } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * get_values_8() const { return ___values_8; } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Char> struct Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* ___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_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___entries_1)); } inline EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* 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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___keys_7)); } inline KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * 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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___values_8)); } inline ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * get_values_8() const { return ___values_8; } inline ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * 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_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___entries_1)); } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___keys_7)); } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___values_8)); } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * get_values_8() const { return ___values_8; } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int64> struct Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* ___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_t6C75FA39C169AFB913CD046927B28E95AA96C54A * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___entries_1)); } inline EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* 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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___keys_7)); } inline KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A * 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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___values_8)); } inline ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * get_values_8() const { return ___values_8; } inline ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * 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_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* ___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_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___entries_1)); } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___keys_7)); } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___values_8)); } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * get_values_8() const { return ___values_8; } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * 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_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* ___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_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t35B217278C526310A4452FC95797832328E69020 * ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___entries_1)); } inline EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* 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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___keys_7)); } inline KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * 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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___values_8)); } inline ValueCollection_t35B217278C526310A4452FC95797832328E69020 * get_values_8() const { return ___values_8; } inline ValueCollection_t35B217278C526310A4452FC95797832328E69020 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t35B217278C526310A4452FC95797832328E69020 * 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_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* ___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_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___entries_1)); } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* 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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___keys_7)); } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * 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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___values_8)); } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * get_values_8() const { return ___values_8; } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * 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_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single> struct Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* ___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_t282A033A4B816C4981A4DB989A4D7878489B643E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___entries_1)); } inline EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* 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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___keys_7)); } inline KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E * 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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___values_8)); } inline ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * get_values_8() const { return ___values_8; } inline ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * 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_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* ___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_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___entries_1)); } inline EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* 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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___keys_7)); } inline KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * 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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___values_8)); } inline ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * get_values_8() const { return ___values_8; } inline ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * 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_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* ___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_t16FDDD229F402DEF0A0B7629138ED4056009E52E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___entries_1)); } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* 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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___keys_7)); } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * 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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___values_8)); } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * get_values_8() const { return ___values_8; } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * 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_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* ___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_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___entries_1)); } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* 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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___keys_7)); } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * 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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___values_8)); } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * get_values_8() const { return ___values_8; } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * 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_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* ___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_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___entries_1)); } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___keys_7)); } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___values_8)); } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * get_values_8() const { return ___values_8; } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * 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_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* ___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_tCA4820F8266AF4059CC5A14888D8195F0D797499 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___entries_1)); } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___keys_7)); } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___values_8)); } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * get_values_8() const { return ___values_8; } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * 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_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* ___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_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___entries_1)); } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___keys_7)); } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___values_8)); } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * get_values_8() const { return ___values_8; } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * 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_t1A7031D56269D606C19F997EEDB8F24872DACD94, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* ___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_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___entries_1)); } inline EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* 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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___keys_7)); } inline KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * 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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___values_8)); } inline ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * get_values_8() const { return ___values_8; } inline ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * 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_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt32> struct Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* ___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_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___entries_1)); } inline EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* 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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___keys_7)); } inline KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * 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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___values_8)); } inline ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * get_values_8() const { return ___values_8; } inline ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * 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_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Vector3> struct Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* ___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_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___entries_1)); } inline EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* 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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___keys_7)); } inline KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * 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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___values_8)); } inline ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * get_values_8() const { return ___values_8; } inline ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * 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_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* ___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_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___entries_1)); } inline EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* 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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___keys_7)); } inline KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * 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_t5BB631D653FC099355128DBC14DC44E27AD30739, ___values_8)); } inline ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * get_values_8() const { return ___values_8; } inline ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * 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_t5BB631D653FC099355128DBC14DC44E27AD30739, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Boolean> struct Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* ___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_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___entries_1)); } inline EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* 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_t727597657DBCDE8841E480361B4F6009E211BACA, ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___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_t727597657DBCDE8841E480361B4F6009E211BACA, ___keys_7)); } inline KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * 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_t727597657DBCDE8841E480361B4F6009E211BACA, ___values_8)); } inline ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * get_values_8() const { return ___values_8; } inline ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * 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_t727597657DBCDE8841E480361B4F6009E211BACA, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* ___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_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___entries_1)); } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* 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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___keys_7)); } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * 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_t613970F5DB840DE525998C9C40E993772B7B7F60, ___values_8)); } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * get_values_8() const { return ___values_8; } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * 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_t613970F5DB840DE525998C9C40E993772B7B7F60, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* ___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_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___entries_1)); } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* 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_t32479D928C553725424938B11A68D3CD8069EA75, ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___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_t32479D928C553725424938B11A68D3CD8069EA75, ___keys_7)); } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * 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_t32479D928C553725424938B11A68D3CD8069EA75, ___values_8)); } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * get_values_8() const { return ___values_8; } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * 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_t32479D928C553725424938B11A68D3CD8069EA75, ____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); } }; struct Il2CppArrayBounds; // System.Array // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean> struct Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char> struct Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 { 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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___value_3)); } inline Il2CppChar get_value_3() const { return ___value_3; } inline Il2CppChar* get_address_of_value_3() { return &___value_3; } inline void set_value_3(Il2CppChar value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32> struct Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64> struct Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E { 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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___value_3)); } inline int64_t get_value_3() const { return ___value_3; } inline int64_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int64_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object> struct Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object> struct Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A { 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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean> struct Entry_tE032650534234E8BCC41BF224A68F799EB231216 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___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_tE032650534234E8BCC41BF224A68F799EB231216, ___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_tE032650534234E8BCC41BF224A68F799EB231216, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32> struct Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object> struct Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32> struct Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value uint32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___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_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___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_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___value_3)); } inline uint32_t get_value_3() const { return ___value_3; } inline uint32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(uint32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean> struct Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___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_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___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_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___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_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___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.UInt32,System.Int32> struct Entry_t208639F3F4F37C945E22645BD356EDD28167B721 { 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_t208639F3F4F37C945E22645BD356EDD28167B721, ___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_t208639F3F4F37C945E22645BD356EDD28167B721, ___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_t208639F3F4F37C945E22645BD356EDD28167B721, ___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_t208639F3F4F37C945E22645BD356EDD28167B721, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object> struct Entry_t03A87BF6367938D67497088665C733ED14E14AC9 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___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_t03A87BF6367938D67497088665C733ED14E14AC9, ___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_t03A87BF6367938D67497088665C733ED14E14AC9, ___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_t03A87BF6367938D67497088665C733ED14E14AC9, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean> struct Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean> struct Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char> struct Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char> struct Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue Il2CppChar ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___currentValue_3)); } inline Il2CppChar get_currentValue_3() const { return ___currentValue_3; } inline Il2CppChar* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Il2CppChar value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32> struct Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32> struct Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64> struct Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64> struct Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int64_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___currentValue_3)); } inline int64_t get_currentValue_3() const { return ___currentValue_3; } inline int64_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int64_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object> struct Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object> struct Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object> struct Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single> struct Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue float ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___currentValue_3)); } inline float get_currentValue_3() const { return ___currentValue_3; } inline float* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(float value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object> struct Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int64_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___currentKey_3)); } inline int64_t get_currentKey_3() const { return ___currentKey_3; } inline int64_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int64_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object> struct Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean> struct Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean> struct Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32> struct Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32> struct Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object> struct Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object> struct Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32> struct Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32> struct Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue uint32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___currentValue_3)); } inline uint32_t get_currentValue_3() const { return ___currentValue_3; } inline uint32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(uint32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32> struct Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32> struct Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object> struct Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object> struct Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char> struct KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 { 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_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___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_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___value_1)); } inline Il2CppChar get_value_1() const { return ___value_1; } inline Il2CppChar* get_address_of_value_1() { return &___value_1; } inline void set_value_1(Il2CppChar value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___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_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64> struct KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 { 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_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___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_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___value_1)); } inline int64_t get_value_1() const { return ___value_1; } inline int64_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int64_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___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_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object> struct KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int64_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___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_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32> struct KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value uint32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700, ___value_1)); } inline uint32_t get_value_1() const { return ___value_1; } inline uint32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(uint32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean> struct KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93, ___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_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93, ___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.UInt32,System.Int32> struct KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 { 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_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___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_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object> struct KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___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_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken struct EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 { public: // System.UInt64 System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A { public: // System.Type Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::Type Type_t * ___Type_0; // System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::ClassName String_t* ___ClassName_1; // System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::AssemblyQualifiedName String_t* ___AssemblyQualifiedName_2; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::stateProperties List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::customProperties List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; // Microsoft.MixedReality.Toolkit.Utilities.Easing Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::easing Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; public: inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___Type_0)); } inline Type_t * get_Type_0() const { return ___Type_0; } inline Type_t ** get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(Type_t * value) { ___Type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Type_0), (void*)value); } inline static int32_t get_offset_of_ClassName_1() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___ClassName_1)); } inline String_t* get_ClassName_1() const { return ___ClassName_1; } inline String_t** get_address_of_ClassName_1() { return &___ClassName_1; } inline void set_ClassName_1(String_t* value) { ___ClassName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_1), (void*)value); } inline static int32_t get_offset_of_AssemblyQualifiedName_2() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___AssemblyQualifiedName_2)); } inline String_t* get_AssemblyQualifiedName_2() const { return ___AssemblyQualifiedName_2; } inline String_t** get_address_of_AssemblyQualifiedName_2() { return &___AssemblyQualifiedName_2; } inline void set_AssemblyQualifiedName_2(String_t* value) { ___AssemblyQualifiedName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyQualifiedName_2), (void*)value); } inline static int32_t get_offset_of_stateProperties_3() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___stateProperties_3)); } inline List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * get_stateProperties_3() const { return ___stateProperties_3; } inline List_1_t2496D96CE063836FAF596CF99739372B64DE8397 ** get_address_of_stateProperties_3() { return &___stateProperties_3; } inline void set_stateProperties_3(List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * value) { ___stateProperties_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateProperties_3), (void*)value); } inline static int32_t get_offset_of_customProperties_4() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___customProperties_4)); } inline List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * get_customProperties_4() const { return ___customProperties_4; } inline List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A ** get_address_of_customProperties_4() { return &___customProperties_4; } inline void set_customProperties_4(List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * value) { ___customProperties_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___customProperties_4), (void*)value); } inline static int32_t get_offset_of_easing_5() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___easing_5)); } inline Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * get_easing_5() const { return ___easing_5; } inline Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 ** get_address_of_easing_5() { return &___easing_5; } inline void set_easing_5(Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * value) { ___easing_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___easing_5), (void*)value); } }; // Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A_marshaled_pinvoke { Type_t * ___Type_0; char* ___ClassName_1; char* ___AssemblyQualifiedName_2; List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; }; // Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A_marshaled_com { Type_t * ___Type_0; Il2CppChar* ___ClassName_1; Il2CppChar* ___AssemblyQualifiedName_2; List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings struct AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 { public: // System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings::<LowPassCutoff>k__BackingField float ___U3CLowPassCutoffU3Ek__BackingField_0; // System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings::<HighPassCutoff>k__BackingField float ___U3CHighPassCutoffU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CLowPassCutoffU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0, ___U3CLowPassCutoffU3Ek__BackingField_0)); } inline float get_U3CLowPassCutoffU3Ek__BackingField_0() const { return ___U3CLowPassCutoffU3Ek__BackingField_0; } inline float* get_address_of_U3CLowPassCutoffU3Ek__BackingField_0() { return &___U3CLowPassCutoffU3Ek__BackingField_0; } inline void set_U3CLowPassCutoffU3Ek__BackingField_0(float value) { ___U3CLowPassCutoffU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CHighPassCutoffU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0, ___U3CHighPassCutoffU3Ek__BackingField_1)); } inline float get_U3CHighPassCutoffU3Ek__BackingField_1() const { return ___U3CHighPassCutoffU3Ek__BackingField_1; } inline float* get_address_of_U3CHighPassCutoffU3Ek__BackingField_1() { return &___U3CHighPassCutoffU3Ek__BackingField_1; } inline void set_U3CHighPassCutoffU3Ek__BackingField_1(float value) { ___U3CHighPassCutoffU3Ek__BackingField_1 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___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_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___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_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___value_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_3() const { return ___value_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___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_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___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_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___value_3)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_value_3() const { return ___value_3; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3> struct Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___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_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___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_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___value_3)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_value_3() const { return ___value_3; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_value_3() { return &___value_3; } inline void set_value_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char> struct Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___current_3)); } inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32> struct Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___current_3)); } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB get_current_3() const { return ___current_3; } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64> struct Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___current_3)); } inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object> struct Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___current_3)); } inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___currentValue_3)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_currentValue_3() const { return ___currentValue_3; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object> struct Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___current_3)); } inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean> struct Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___current_3)); } inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32> struct Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___current_3)); } inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object> struct Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___current_3)); } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___currentValue_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_currentValue_3() const { return ___currentValue_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___currentValue_3)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_currentValue_3() const { return ___currentValue_3; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32> struct Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___current_3)); } inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___currentValue_3)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_currentValue_3() const { return ___currentValue_3; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___current_3)); } inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32> struct Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___current_3)); } inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object> struct Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___current_3)); } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA get_current_3() const { return ___current_3; } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___value_1)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_1() const { return ___value_1; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37, ___value_1)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_value_1() const { return ___value_1; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3> struct KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823, ___value_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_value_1() const { return ___value_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_value_1() { return &___value_1; } inline void set_value_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___value_1 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose struct MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 { public: // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_1; // UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_2; public: inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99, ___position_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_1() const { return ___position_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_1() { return &___position_1; } inline void set_position_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___position_1 = value; } inline static int32_t get_offset_of_rotation_2() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99, ___rotation_2)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_2() const { return ___rotation_2; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_2() { return &___rotation_2; } inline void set_rotation_2(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rotation_2 = value; } }; struct MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99_StaticFields { public: // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::<ZeroIdentity>k__BackingField MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___U3CZeroIdentityU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CZeroIdentityU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99_StaticFields, ___U3CZeroIdentityU3Ek__BackingField_0)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_U3CZeroIdentityU3Ek__BackingField_0() const { return ___U3CZeroIdentityU3Ek__BackingField_0; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_U3CZeroIdentityU3Ek__BackingField_0() { return &___U3CZeroIdentityU3Ek__BackingField_0; } inline void set_U3CZeroIdentityU3Ek__BackingField_0(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___U3CZeroIdentityU3Ek__BackingField_0 = value; } }; // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 { public: // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::firstToken EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::restTokens List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; public: inline static int32_t get_offset_of_firstToken_0() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128, ___firstToken_0)); } inline EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 get_firstToken_0() const { return ___firstToken_0; } inline EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 * get_address_of_firstToken_0() { return &___firstToken_0; } inline void set_firstToken_0(EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 value) { ___firstToken_0 = value; } inline static int32_t get_offset_of_restTokens_1() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128, ___restTokens_1)); } inline List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * get_restTokens_1() const { return ___restTokens_1; } inline List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 ** get_address_of_restTokens_1() { return &___restTokens_1; } inline void set_restTokens_1(List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * value) { ___restTokens_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___restTokens_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128_marshaled_pinvoke { EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; }; // Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128_marshaled_com { EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___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_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___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_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___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_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___value_3)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_value_3() const { return ___value_3; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object> struct Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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.Int32Enum,System.Single> struct Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 { 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 float ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___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_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___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_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___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_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___value_3)); } inline float get_value_3() const { return ___value_3; } inline float* get_address_of_value_3() { return &___value_3; } inline void set_value_3(float value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___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_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___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_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___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_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___value_3)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_value_3() const { return ___value_3; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___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_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___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_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___value_3)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_value_3() const { return ___value_3; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___restTokens_1), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___currentValue_3)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_currentValue_3() const { return ___currentValue_3; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object> struct Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single> struct Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___current_3)); } inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->____value_0), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___current_3)); } inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___easing_5), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___current_3)); } inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___currentValue_3)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_currentValue_3() const { return ___currentValue_3; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___restTokens_1), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB, ___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_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB, ___value_1)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_value_1() const { return ___value_1; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object> struct KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___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_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single> struct KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value float ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA, ___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_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA, ___value_1)); } inline float get_value_1() const { return ___value_1; } inline float* get_address_of_value_1() { return &___value_1; } inline void set_value_1(float value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8, ___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_t6135B924936D20EBA38AA5686925B2557F90B9A8, ___value_1)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_value_1() const { return ___value_1; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA, ___value_1)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_value_1() const { return ___value_1; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___restTokens_1), (void*)NULL); } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___current_3)); } inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB get_current_3() const { return ___current_3; } inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object> struct Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___current_3)); } inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single> struct Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___current_3)); } inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA get_current_3() const { return ___current_3; } inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___current_3)); } inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___current_3)); } inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA get_current_3() const { return ___current_3; } inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___restTokens_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 m_Items[1]; public: inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>[] struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 m_Items[1]; public: inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 * GetAddressAt(il2cpp_array_size_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_t451329272BBC6DD557728CC31D180CDB00BCFB39 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 m_Items[1]; public: inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>[] struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E m_Items[1]; public: inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E * GetAddressAt(il2cpp_array_size_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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 m_Items[1]; public: inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 * GetAddressAt(il2cpp_array_size_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_tD3C172E348082DAA38034A7BFC5251A40A96D632 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_tD3C172E348082DAA38034A7BFC5251A40A96D632 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>[] struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 m_Items[1]; public: inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 * GetAddressAt(il2cpp_array_size_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_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B m_Items[1]; public: inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAt(il2cpp_array_size_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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B 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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>[] struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 m_Items[1]; public: inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 * GetAddressAt(il2cpp_array_size_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_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>[] struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB m_Items[1]; public: inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB * GetAddressAt(il2cpp_array_size_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_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A m_Items[1]; public: inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAt(il2cpp_array_size_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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A 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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tE032650534234E8BCC41BF224A68F799EB231216 m_Items[1]; public: inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAt(il2cpp_array_size_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_tE032650534234E8BCC41BF224A68F799EB231216 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE032650534234E8BCC41BF224A68F799EB231216 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A m_Items[1]; public: inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAt(il2cpp_array_size_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_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE m_Items[1]; public: inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAt(il2cpp_array_size_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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE 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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 m_Items[1]; public: inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAt(il2cpp_array_size_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_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>[] struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C m_Items[1]; public: inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C * GetAddressAt(il2cpp_array_size_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_tD249FC5F239C257FAE235E483F9ADFD29571488C 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))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___easing_5), (void*)NULL); #endif } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C 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))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32>[] struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E m_Items[1]; public: inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E * GetAddressAt(il2cpp_array_size_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_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3>[] struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 m_Items[1]; public: inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 * GetAddressAt(il2cpp_array_size_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_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>[] struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B m_Items[1]; public: inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B * GetAddressAt(il2cpp_array_size_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_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B 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))->___restTokens_1), (void*)NULL); #endif } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B 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))->___restTokens_1), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean>[] struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C m_Items[1]; public: inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C * GetAddressAt(il2cpp_array_size_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_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t208639F3F4F37C945E22645BD356EDD28167B721 m_Items[1]; public: inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAt(il2cpp_array_size_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_t208639F3F4F37C945E22645BD356EDD28167B721 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t208639F3F4F37C945E22645BD356EDD28167B721 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03A87BF6367938D67497088665C733ED14E14AC9 m_Items[1]; public: inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAt(il2cpp_array_size_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_t03A87BF6367938D67497088665C733ED14E14AC9 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_t03A87BF6367938D67497088665C733ED14E14AC9 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03A87BF6367938D67497088665C733ED14E14AC9 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0_gshared (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, int32_t ___key0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56_gshared (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F_gshared (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, int32_t ___key0, int64_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270_gshared (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB_gshared (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, int32_t ___key0, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6_gshared (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B_gshared (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, int32_t ___key0, float ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA_gshared (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, int32_t ___key0, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E_gshared (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6_gshared (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8_gshared (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44_gshared (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, RuntimeObject * ___key0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54_gshared (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, RuntimeObject * ___key0, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B_gshared (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120_gshared (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, RuntimeObject * ___key0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD_gshared (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91_gshared (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, uint32_t ___key0, bool ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9_gshared (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, uint32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E_gshared (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared)(__this, method); } // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() inline int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() inline void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() inline bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0 (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, int32_t ___key0, Il2CppChar ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, int32_t, Il2CppChar, const RuntimeMethod*))KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Key() inline int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Value() inline Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { return (( Il2CppChar (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline)(__this, method); } // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4 (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, const RuntimeMethod*))Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() inline int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024 (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, const RuntimeMethod*))Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() inline Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( Il2CppChar (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56 (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() inline int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, int32_t ___key0, int64_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, int32_t, int64_t, const RuntimeMethod*))KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Key() inline int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Value() inline int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, const RuntimeMethod*))Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() inline int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, const RuntimeMethod*))Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() inline int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( int64_t (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, int32_t, const RuntimeMethod*))Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270 (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, const RuntimeMethod*))Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() inline int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, const RuntimeMethod*))Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4 (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16 (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, int32_t ___key0, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, int32_t, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 , const RuntimeMethod*))KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Key() inline int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Value() inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { return (( MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, const RuntimeMethod*))KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, const RuntimeMethod*))Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74 (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, const RuntimeMethod*))Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764 (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6 (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1 (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3 (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() inline int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, int32_t, const RuntimeMethod*))Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, int32_t ___key0, float ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, int32_t, float, const RuntimeMethod*))KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Key() inline int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, const RuntimeMethod*))KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Value() inline float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { return (( float (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, const RuntimeMethod*))KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, const RuntimeMethod*))Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() inline int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, const RuntimeMethod*))Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() inline float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( float (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, int32_t ___key0, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, int32_t, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 , const RuntimeMethod*))KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Key() inline int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Value() inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { return (( AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4 (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, const RuntimeMethod*))Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0 (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, const RuntimeMethod*))Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, int64_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() inline int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() inline int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( int64_t (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516 (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6 (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() inline RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() inline bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8 (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() inline RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44 (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, RuntimeObject * ___key0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, RuntimeObject *, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 , const RuntimeMethod*))KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { return (( ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, const RuntimeMethod*))KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54 (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, RuntimeObject * ___key0, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, RuntimeObject *, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A , const RuntimeMethod*))KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Value() inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { return (( ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, const RuntimeMethod*))Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, const RuntimeMethod*))Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, int32_t, const RuntimeMethod*))Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, RuntimeObject *, uint32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Value() inline uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, const RuntimeMethod*))Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() inline RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, const RuntimeMethod*))Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4 (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() inline uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, int32_t, const RuntimeMethod*))Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120 (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, RuntimeObject * ___key0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, RuntimeObject *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*))KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Value() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, const RuntimeMethod*))Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, const RuntimeMethod*))Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, RuntimeObject *, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 , const RuntimeMethod*))KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { return (( EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, const RuntimeMethod*))Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, const RuntimeMethod*))Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579 (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483 (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, int32_t, const RuntimeMethod*))Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91 (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, uint32_t ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, uint32_t, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, const RuntimeMethod*))Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() inline uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, const RuntimeMethod*))Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() inline bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9 (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, uint32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, uint32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3 (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Key() inline uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749 (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71 (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() inline uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7 (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, uint32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() inline uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() inline uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared)(__this, method); } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_4 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_5 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_8 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_9 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_15 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_17 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_2 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_4 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_5 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_8 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_9 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_15 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_17 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_2 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_4 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_12 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_13 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); Il2CppChar L_15 = (Il2CppChar)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0((&L_16), (int32_t)L_11, (Il2CppChar)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_20 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_22 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_24 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_0 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )__this->get_current_3(); return (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 _returnValue; _returnValue = Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_6 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_10 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_11; L_11 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_17 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_19 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_20; L_20 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0((&L_21), (int32_t)L_18, (Il2CppChar)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_22 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_4 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_9 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_10; L_10 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_6; L_6 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_15 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_17 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); Il2CppChar L_11 = (Il2CppChar)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_15 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_17 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); Il2CppChar* L_19 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(Il2CppChar)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_currentValue_3(); return (Il2CppChar)L_0; } } IL2CPP_EXTERN_C Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Il2CppChar _returnValue; _returnValue = Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_RuntimeMethod_var))); } IL_0028: { Il2CppChar L_5 = (Il2CppChar)__this->get_currentValue_3(); Il2CppChar L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); Il2CppChar* L_4 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(Il2CppChar)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_4 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_12 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_13 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56((&L_16), (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_20 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_22 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_24 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_0 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )__this->get_current_3(); return (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB _returnValue; _returnValue = Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_6 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_10 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_11; L_11 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_17 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_19 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_20; L_20 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56((&L_21), (int32_t)L_18, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_22 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_4 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_9 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_10; L_10 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_15 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_17 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_15 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_17 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_4 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_12 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_13 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int64_t L_15 = (int64_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F((&L_16), (int32_t)L_11, (int64_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_20 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_22 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_24 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_0 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )__this->get_current_3(); return (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 _returnValue; _returnValue = Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_6 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_10 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_11; L_11 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_17 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_19 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_20; L_20 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F((&L_21), (int32_t)L_18, (int64_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_22 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_4 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_9 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_10; L_10 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_15 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_17 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int64_t* L_3 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_15 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_17 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int64_t* L_19 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int64_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentValue_3(); return (int64_t)L_0; } } IL2CPP_EXTERN_C int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); int64_t _returnValue; _returnValue = Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_RuntimeMethod_var))); } IL_0028: { int64_t L_5 = (int64_t)__this->get_currentValue_3(); int64_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int64_t* L_4 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_4 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_12 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_13 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270((&L_16), (int32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_20 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_22 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_24 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_0 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )__this->get_current_3(); return (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 _returnValue; _returnValue = Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_6 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_10 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_15 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_16; L_16 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_17 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270((&L_19), (int32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_20 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_4 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_9 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_15 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_17 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_15 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_17 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_4 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_12 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_13 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_15 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB((&L_16), (int32_t)L_11, (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_20 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_22 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_24 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_0 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )__this->get_current_3(); return (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB _returnValue; _returnValue = Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_6 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_10 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11; L_11 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_12 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_17 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_19 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_20; L_20 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB((&L_21), (int32_t)L_18, (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_22 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_4 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_9 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_10; L_10 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_6; L_6 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_7 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_15 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_17 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_3 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_15 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_17 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_19 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_EXTERN_C MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 _returnValue; _returnValue = Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_RuntimeMethod_var))); } IL_0028: { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_5 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_6 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_4 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_4 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_12 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_13 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6((&L_16), (int32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_20 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_22 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_24 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_0 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )__this->get_current_3(); return (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 _returnValue; _returnValue = Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_6 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_10 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_15 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_16; L_16 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_17 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6((&L_19), (int32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_20 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_4 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_9 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_15 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_17 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_15 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_17 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_4 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_12 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_13 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); float L_15 = (float)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B((&L_16), (int32_t)L_11, (float)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_20 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_22 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_24 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_0 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )__this->get_current_3(); return (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA _returnValue; _returnValue = Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_6 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_10 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_11; L_11 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_17 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_19 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_20; L_20 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B((&L_21), (int32_t)L_18, (float)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_22 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_4 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_9 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_10; L_10 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_6; L_6 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_15 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_17 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); float* L_3 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(float)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); float L_11 = (float)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_15 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_17 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); float* L_19 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(float)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_currentValue_3(); return (float)L_0; } } IL2CPP_EXTERN_C float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); float _returnValue; _returnValue = Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_RuntimeMethod_var))); } IL_0028: { float L_5 = (float)__this->get_currentValue_3(); float L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); float* L_4 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(float)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_4 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_12 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_13 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_15 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA((&L_16), (int32_t)L_11, (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_20 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_22 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_24 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_0 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )__this->get_current_3(); return (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 _returnValue; _returnValue = Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_6 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_10 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11; L_11 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_12 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_17 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_19 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_20; L_20 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA((&L_21), (int32_t)L_18, (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_22 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_4 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_9 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_10; L_10 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_6; L_6 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_7 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_15 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_17 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_3 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_15 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_17 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_19 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_EXTERN_C AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 _returnValue; _returnValue = Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_RuntimeMethod_var))); } IL_0028: { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_5 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_6 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_4 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_4 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_12 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_13 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E((&L_16), (int64_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_20 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_22 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_24 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_0 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )__this->get_current_3(); return (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 _returnValue; _returnValue = Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_6 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_7; L_7 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_10 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_15 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_16; L_16 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_17 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E((&L_19), (int64_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_20 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_4 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_9 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int64_t* L_3 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_15 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_17 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int64_t* L_19 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int64_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentKey_3(); return (int64_t)L_0; } } IL2CPP_EXTERN_C int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); int64_t _returnValue; _returnValue = Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_RuntimeMethod_var))); } IL_0028: { int64_t L_5 = (int64_t)__this->get_currentKey_3(); int64_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int64_t* L_4 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_15 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_17 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_4 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_12 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_13 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); bool L_15 = (bool)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6((&L_16), (RuntimeObject *)L_11, (bool)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_20 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_22 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_24 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_0 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )__this->get_current_3(); return (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A _returnValue; _returnValue = Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_6 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_8 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_9; L_9 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_15 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_17 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_18; L_18 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6((&L_19), (RuntimeObject *)L_16, (bool)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_20 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_4 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_7 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_8; L_8 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_6; L_6 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_15 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_17 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_15 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_17 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_4 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_12 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_13 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8((&L_16), (RuntimeObject *)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_20 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_22 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_24 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_0 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )__this->get_current_3(); return (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 _returnValue; _returnValue = Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_6 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_8 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_9; L_9 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_15 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_17 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8((&L_19), (RuntimeObject *)L_16, (int32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_20 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_4 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_7 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_8; L_8 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_15 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_17 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_15 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_17 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_4 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_12 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_13 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_16), (RuntimeObject *)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_20 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_22 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_24 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3(); return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 _returnValue; _returnValue = Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_6 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_8 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_9; L_9 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_10; memset((&L_10), 0, sizeof(L_10)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_10), (RuntimeObject *)L_7, (RuntimeObject *)L_9, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_10; RuntimeObject * L_12 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_11); return (RuntimeObject *)L_12; } IL_005c: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_13 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_14; L_14 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_15 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_17; memset((&L_17), 0, sizeof(L_17)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_17), (RuntimeObject *)L_14, (RuntimeObject *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_18 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_18); return (RuntimeObject *)L_19; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_4 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_7 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_9; memset((&L_9), 0, sizeof(L_9)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_9), (RuntimeObject *)L_6, (RuntimeObject *)L_8, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_9; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_15 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_17 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_15 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_17 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_4 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_12 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_13 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_15 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44((&L_16), (RuntimeObject *)L_11, (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_20 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_22 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_24 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_0 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )__this->get_current_3(); return (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF _returnValue; _returnValue = Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_6 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_8 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_9; L_9 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_10 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_15 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_17 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_18; L_18 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44((&L_19), (RuntimeObject *)L_16, (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_20 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_4 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_7 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_8; L_8 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_9 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_6; L_6 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_7 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_15 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_17 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_3 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_11 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_15 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_17 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_19 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_EXTERN_C ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 _returnValue; _returnValue = Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_RuntimeMethod_var))); } IL_0028: { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_5 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_6 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_4 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_4 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_12 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_13 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_15 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54((&L_16), (RuntimeObject *)L_11, (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_20 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_22 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_24 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_0 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )__this->get_current_3(); return (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 _returnValue; _returnValue = Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_6 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_8 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_9; L_9 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_10 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_15 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_17 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_18; L_18 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54((&L_19), (RuntimeObject *)L_16, (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_20 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_4 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_7 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_8; L_8 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_9 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_6; L_6 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_7 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_15 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_17 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_3 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_11 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_15 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_17 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_19 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_EXTERN_C ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A _returnValue; _returnValue = Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_RuntimeMethod_var))); } IL_0028: { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_5 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_6 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_4 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_4 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_12 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_13 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); uint32_t L_15 = (uint32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B((&L_16), (RuntimeObject *)L_11, (uint32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_20 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_22 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_24 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_0 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )__this->get_current_3(); return (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 _returnValue; _returnValue = Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_6 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_8 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_9; L_9 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_15 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_17 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B((&L_19), (RuntimeObject *)L_16, (uint32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_20 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_4 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_7 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_8; L_8 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_15 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_17 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_15 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_17 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentValue_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentValue_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_4 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_12 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_13 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_15 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120((&L_16), (RuntimeObject *)L_11, (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_20 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_22 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_24 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_0 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )__this->get_current_3(); return (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 _returnValue; _returnValue = Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_6 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_8 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; L_9 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_15 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_17 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_18; L_18 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120((&L_19), (RuntimeObject *)L_16, (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_20 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_4 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_7 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6; L_6 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_15 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_17 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_3 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_15 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_17 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_19 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue; _returnValue = Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_RuntimeMethod_var))); } IL_0028: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_4 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_4 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_12 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_13 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_15 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD((&L_16), (RuntimeObject *)L_11, (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_20 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_22 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_24 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_0 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )__this->get_current_3(); return (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA _returnValue; _returnValue = Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_6 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_8 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_9; L_9 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_10 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_15 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_17 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_18; L_18 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD((&L_19), (RuntimeObject *)L_16, (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_20 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_4 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_7 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_8; L_8 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_9 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_6; L_6 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_7 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_15 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_17 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_3 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_11 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_15 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_17 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_19 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_EXTERN_C EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 _returnValue; _returnValue = Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_RuntimeMethod_var))); } IL_0028: { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_5 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_6 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_4 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_4 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_12 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_13 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); bool L_15 = (bool)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91((&L_16), (uint32_t)L_11, (bool)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_20 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_22 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_24 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_0 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )__this->get_current_3(); return (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 _returnValue; _returnValue = Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_6 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_10 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_11; L_11 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_17 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_19 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_20; L_20 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91((&L_21), (uint32_t)L_18, (bool)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_22 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_4 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_9 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_10; L_10 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_6; L_6 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_15 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_17 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_15 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_17 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_4 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_12 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_13 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9((&L_16), (uint32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_20 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_22 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_24 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_0 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )__this->get_current_3(); return (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 _returnValue; _returnValue = Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_6 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_10 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_11; L_11 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_17 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_19 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_20; L_20 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9((&L_21), (uint32_t)L_18, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_22 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_4 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_9 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_10; L_10 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_15 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_17 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_15 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_17 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_4 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_12 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_13 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E((&L_16), (uint32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_20 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_22 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_24 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )__this->get_current_3(); return (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA _returnValue; _returnValue = Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_6 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_10 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_15 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_16; L_16 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_17 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E((&L_19), (uint32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_20 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_4 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_9 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_15 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_17 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_15 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_17 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_0 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )__this->get_current_3(); return (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_value_1(); return (Il2CppChar)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_currentValue_3(); return (Il2CppChar)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_0 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )__this->get_current_3(); return (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_0 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )__this->get_current_3(); return (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_value_1(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentValue_3(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_0 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )__this->get_current_3(); return (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_0 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )__this->get_current_3(); return (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_value_1(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_0 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )__this->get_current_3(); return (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_0 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )__this->get_current_3(); return (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_value_1(); return (float)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_currentValue_3(); return (float)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_0 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )__this->get_current_3(); return (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_value_1(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_0 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )__this->get_current_3(); return (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_key_0(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentKey_3(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_0 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )__this->get_current_3(); return (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_0 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )__this->get_current_3(); return (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3(); return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_0 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )__this->get_current_3(); return (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_value_1(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_0 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )__this->get_current_3(); return (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_value_1(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_0 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )__this->get_current_3(); return (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_value_1(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentValue_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_0 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )__this->get_current_3(); return (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_value_1(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_0 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )__this->get_current_3(); return (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_value_1(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_0 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )__this->get_current_3(); return (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_0 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )__this->get_current_3(); return (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )__this->get_current_3(); return (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } }
[ "yutao.song@burohappold.com" ]
yutao.song@burohappold.com
b571a3d45d7c4995e667bb3034afa285c87bce53
3cf9e141cc8fee9d490224741297d3eca3f5feff
/C++ Benchmark Programs/Benchmark Files 1/classtester/autogen-sources/source-15629.cpp
521c01bfaaebf779f7e34915df9ae5ab3133ce1c
[]
no_license
TeamVault/tauCFI
e0ac60b8106fc1bb9874adc515fc01672b775123
e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10
refs/heads/master
2023-05-30T20:57:13.450360
2021-06-14T09:10:24
2021-06-14T09:10:24
154,563,655
0
1
null
null
null
null
UTF-8
C++
false
false
3,008
cpp
struct c0; void __attribute__ ((noinline)) tester0(c0* p); struct c0 { bool active0; c0() : active0(true) {} virtual ~c0() { tester0(this); active0 = false; } virtual void f0(){} }; void __attribute__ ((noinline)) tester0(c0* p) { p->f0(); } struct c1; void __attribute__ ((noinline)) tester1(c1* p); struct c1 : virtual c0 { bool active1; c1() : active1(true) {} virtual ~c1() { tester1(this); c0 *p0_0 = (c0*)(c1*)(this); tester0(p0_0); active1 = false; } virtual void f1(){} }; void __attribute__ ((noinline)) tester1(c1* p) { p->f1(); if (p->active0) p->f0(); } struct c2; void __attribute__ ((noinline)) tester2(c2* p); struct c2 : virtual c0 { bool active2; c2() : active2(true) {} virtual ~c2() { tester2(this); c0 *p0_0 = (c0*)(c2*)(this); tester0(p0_0); active2 = false; } virtual void f2(){} }; void __attribute__ ((noinline)) tester2(c2* p) { p->f2(); if (p->active0) p->f0(); } struct c3; void __attribute__ ((noinline)) tester3(c3* p); struct c3 : virtual c1, virtual c2 { bool active3; c3() : active3(true) {} virtual ~c3() { tester3(this); c0 *p0_0 = (c0*)(c1*)(c3*)(this); tester0(p0_0); c0 *p0_1 = (c0*)(c2*)(c3*)(this); tester0(p0_1); c1 *p1_0 = (c1*)(c3*)(this); tester1(p1_0); c2 *p2_0 = (c2*)(c3*)(this); tester2(p2_0); active3 = false; } virtual void f3(){} }; void __attribute__ ((noinline)) tester3(c3* p) { p->f3(); if (p->active0) p->f0(); if (p->active1) p->f1(); if (p->active2) p->f2(); } struct c4; void __attribute__ ((noinline)) tester4(c4* p); struct c4 : virtual c1, virtual c0, c2 { bool active4; c4() : active4(true) {} virtual ~c4() { tester4(this); c0 *p0_0 = (c0*)(c1*)(c4*)(this); tester0(p0_0); c0 *p0_1 = (c0*)(c4*)(this); tester0(p0_1); c0 *p0_2 = (c0*)(c2*)(c4*)(this); tester0(p0_2); c1 *p1_0 = (c1*)(c4*)(this); tester1(p1_0); c2 *p2_0 = (c2*)(c4*)(this); tester2(p2_0); active4 = false; } virtual void f4(){} }; void __attribute__ ((noinline)) tester4(c4* p) { p->f4(); if (p->active2) p->f2(); if (p->active0) p->f0(); if (p->active1) p->f1(); } int __attribute__ ((noinline)) inc(int v) {return ++v;} int main() { c0* ptrs0[25]; ptrs0[0] = (c0*)(new c0()); ptrs0[1] = (c0*)(c1*)(new c1()); ptrs0[2] = (c0*)(c2*)(new c2()); ptrs0[3] = (c0*)(c1*)(c3*)(new c3()); ptrs0[4] = (c0*)(c2*)(c3*)(new c3()); ptrs0[5] = (c0*)(c1*)(c4*)(new c4()); ptrs0[6] = (c0*)(c4*)(new c4()); ptrs0[7] = (c0*)(c2*)(c4*)(new c4()); for (int i=0;i<8;i=inc(i)) { tester0(ptrs0[i]); delete ptrs0[i]; } c1* ptrs1[25]; ptrs1[0] = (c1*)(new c1()); ptrs1[1] = (c1*)(c3*)(new c3()); ptrs1[2] = (c1*)(c4*)(new c4()); for (int i=0;i<3;i=inc(i)) { tester1(ptrs1[i]); delete ptrs1[i]; } c2* ptrs2[25]; ptrs2[0] = (c2*)(new c2()); ptrs2[1] = (c2*)(c3*)(new c3()); ptrs2[2] = (c2*)(c4*)(new c4()); for (int i=0;i<3;i=inc(i)) { tester2(ptrs2[i]); delete ptrs2[i]; } c3* ptrs3[25]; ptrs3[0] = (c3*)(new c3()); for (int i=0;i<1;i=inc(i)) { tester3(ptrs3[i]); delete ptrs3[i]; } c4* ptrs4[25]; ptrs4[0] = (c4*)(new c4()); for (int i=0;i<1;i=inc(i)) { tester4(ptrs4[i]); delete ptrs4[i]; } return 0; }
[ "ga72foq@mytum.de" ]
ga72foq@mytum.de
8ee3f080f46c16e3a7c4ec32eeb363cadd9315aa
b37ef978997166542b82488589b62787b84d25cf
/examples/components/tft_display/DrawSuperMario/DrawSuperMario.ino
5339a17a5a05d6a54eb536aa0eea15a939aabfe3
[ "MIT" ]
permissive
Edinburgh-College-of-Art/Design-Informatics-Kit
1896e355fd74236aef6bfedf4cbd6b3036bb6967
dcc1ce957106e209bb6515aa04564d676b3f11aa
refs/heads/master
2023-01-08T16:09:52.532764
2020-11-11T14:38:53
2020-11-11T14:38:53
281,622,341
1
0
null
null
null
null
UTF-8
C++
false
false
1,539
ino
/* Draw the original 16 x 16 pixel Super Mario sprite Demonstrating drawing technique and converting colours to 565 colour space. The 1.44" TFT breakout https://www.adafruit.com/product/2088 Wiring: | Nano | 1.44" TFT | | ---- | --------- | | 3.3v | Vin | | GND | GND | | D13 | SCK | | D12 | SO | | D11 | SI | | D10 | TCS | | D9 | RST | | D8 | D/C | */ //------------------------------------------------------------------------------ #include <Adafruit_GFX.h> // Core graphics library #include <Adafruit_ST7735.h> // Hardware-specific library for ST7735 #include <Adafruit_ST7789.h> // Hardware-specific library for ST7789 #include <SPI.h> //------------------------------------------------------------------------------ #define TFT_CS 10 #define TFT_RST 9 #define TFT_DC 8 //------------------------------------------------------------------------------ Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); //------------------------------------------------------------------------------ void setup(void) { //---------------------------------------------------------------------------- tft.initR(INITR_144GREENTAB); // Init ST7735R chip, green tab //---------------------------------------------------------------------------- supermario(); //---------------------------------------------------------------------------- } void loop() { }
[ "matt.hamilton@ed.ac.uk" ]
matt.hamilton@ed.ac.uk
5800bcca6f6884b41b392a50d61655212d610b23
b99b0f6d8f188b15f9cb4ae801e033f6bb2c8f91
/Algorithms_C-Plus-Plus_Part2.2/sorting/tree_sort.cpp
ae72ac345cd2f9ffbec86a58ab2a2d1f66aa2a7a
[]
no_license
alvarohenriquecz/Algorithms_C-Plus-Plus_Part2
acec1b61ce714fa6bc4ed674d1746f74c78065e7
f09e87dcfcfe813678b90f708df1845958a16fc8
refs/heads/master
2022-11-14T11:33:46.410786
2020-07-08T08:05:20
2020-07-08T08:05:20
274,775,766
0
0
null
null
null
null
UTF-8
C++
false
false
1,250
cpp
#include <iostream> using namespace std; struct Node { int key; struct Node *left, *right; }; struct Node *newNode(int item) { struct Node *temp = new Node; temp->key = item; temp->left = temp->right = NULL; return temp; } void storeSorted(Node *root, int arr[], int &i) { if (root != NULL) { storeSorted(root->left, arr, i); arr[i++] = root->key; storeSorted(root->right, arr, i); } } Node* insert(Node* node, int key) { if (node == NULL) return newNode(key); if (key < node->key) node->left = insert(node->left, key); else if (key > node->key) node->right = insert(node->right, key); return node; } void treeSort(int arr[], int n) { struct Node *root = NULL; root = insert(root, arr[0]); for (int i = 1; i < n; i++) insert(root, arr[i]); int i = 0; storeSorted(root, arr, i); } int main() { int arr[] = {12, 11, 13, 5, 6, 7}; int n = sizeof(arr)/sizeof(arr[0]); cout << "Given array is "; for (int i = 0; i < n; i++) cout << arr[i] << " "; treeSort(arr, n); cout << "\nSorted array is "; for (int i = 0; i < n; i++) cout << arr[i] << " "; return 0; }
[ "alvarohenriquecz@gmail.com" ]
alvarohenriquecz@gmail.com
05c7631c4e7c644d248b46561a03974c35b4f938
ecc353a05d407197c7d5e9aff17aad4721dc077b
/src/walletdb.cpp
5039482fa034bdf4f748a2b75cc4d88d84c5f0d2
[ "MIT" ]
permissive
SaltineChips/endox
7fe4db1c9b85a879b3880e8d60a82f66cd7690ea
d3f657927f0225788e01d004c8eb5d987f74c5b7
refs/heads/master
2021-06-16T15:42:39.647798
2021-01-30T23:06:55
2021-01-30T23:06:55
147,242,758
1
2
MIT
2019-07-21T02:43:51
2018-09-03T18:59:13
C++
UTF-8
C++
false
false
29,643
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "walletdb.h" #include "base58.h" #include "protocol.h" #include "serialize.h" #include "sync.h" #include "wallet.h" #include <boost/filesystem.hpp> #include <boost/foreach.hpp> using namespace std; using namespace boost; static uint64_t nAccountingEntryNumber = 0; extern bool fWalletUnlockStakingOnly; // // CWalletDB // bool CWalletDB::WriteName(const string& strAddress, const string& strName) { nWalletDBUpdated++; return Write(make_pair(string("name"), strAddress), strName); } bool CWalletDB::EraseName(const string& strAddress) { // This should only be used for sending addresses, never for receiving addresses, // receiving addresses must always have an address book entry if they're not change return. nWalletDBUpdated++; return Erase(make_pair(string("name"), strAddress)); } bool CWalletDB::WriteTx(uint256 hash, const CWalletTx& wtx) { nWalletDBUpdated++; return Write(std::make_pair(std::string("tx"), hash), wtx); } bool CWalletDB::EraseTx(uint256 hash) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("tx"), hash)); } bool CWalletDB::WriteStealthKeyMeta(const CKeyID& keyId, const CStealthKeyMetadata& sxKeyMeta) { nWalletDBUpdated++; return Write(std::make_pair(std::string("sxKeyMeta"), keyId), sxKeyMeta, true); } bool CWalletDB::EraseStealthKeyMeta(const CKeyID& keyId) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("sxKeyMeta"), keyId)); } bool CWalletDB::WriteStealthAddress(const CStealthAddress& sxAddr) { nWalletDBUpdated++; return Write(std::make_pair(std::string("sxAddr"), sxAddr.scan_pubkey), sxAddr, true); } bool CWalletDB::ReadStealthAddress(CStealthAddress& sxAddr) { // -- set scan_pubkey before reading return Read(std::make_pair(std::string("sxAddr"), sxAddr.scan_pubkey), sxAddr); } bool CWalletDB::WriteKey(const CPubKey& vchPubKey, const CPrivKey& vchPrivKey, const CKeyMetadata& keyMeta) { nWalletDBUpdated++; if (!Write(std::make_pair(std::string("keymeta"), vchPubKey), keyMeta, false)) return false; // hash pubkey/privkey to accelerate wallet load std::vector<unsigned char> vchKey; vchKey.reserve(vchPubKey.size() + vchPrivKey.size()); vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end()); vchKey.insert(vchKey.end(), vchPrivKey.begin(), vchPrivKey.end()); return Write(std::make_pair(std::string("key"), vchPubKey), std::make_pair(vchPrivKey, Hash(vchKey.begin(), vchKey.end())), false); } bool CWalletDB::WriteCryptedKey(const CPubKey& vchPubKey, const std::vector<unsigned char>& vchCryptedSecret, const CKeyMetadata &keyMeta) { const bool fEraseUnencryptedKey = true; nWalletDBUpdated++; if (!Write(std::make_pair(std::string("keymeta"), vchPubKey), keyMeta)) return false; if (!Write(std::make_pair(std::string("ckey"), vchPubKey), vchCryptedSecret, false)) return false; if (fEraseUnencryptedKey) { Erase(std::make_pair(std::string("key"), vchPubKey)); Erase(std::make_pair(std::string("wkey"), vchPubKey)); } return true; } bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey) { nWalletDBUpdated++; return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true); } bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript) { nWalletDBUpdated++; return Write(std::make_pair(std::string("cscript"), hash), redeemScript, false); } bool CWalletDB::WriteWatchOnly(const CScript &dest) { nWalletDBUpdated++; return Write(std::make_pair(std::string("watchs"), dest), '1'); } bool CWalletDB::EraseWatchOnly(const CScript &dest) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("watchs"), dest)); } bool CWalletDB::WriteBestBlock(const CBlockLocator& locator) { nWalletDBUpdated++; return Write(std::string("bestblock"), locator); } bool CWalletDB::ReadBestBlock(CBlockLocator& locator) { return Read(std::string("bestblock"), locator); } bool CWalletDB::WriteOrderPosNext(int64_t nOrderPosNext) { nWalletDBUpdated++; return Write(std::string("orderposnext"), nOrderPosNext); } bool CWalletDB::WriteDefaultKey(const CPubKey& vchPubKey) { nWalletDBUpdated++; return Write(std::string("defaultkey"), vchPubKey); } bool CWalletDB::ReadPool(int64_t nPool, CKeyPool& keypool) { return Read(std::make_pair(std::string("pool"), nPool), keypool); } bool CWalletDB::WritePool(int64_t nPool, const CKeyPool& keypool) { nWalletDBUpdated++; return Write(std::make_pair(std::string("pool"), nPool), keypool); } bool CWalletDB::ErasePool(int64_t nPool) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("pool"), nPool)); } bool CWalletDB::WriteMinVersion(int nVersion) { return Write(std::string("minversion"), nVersion); } bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account) { account.SetNull(); return Read(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) { return Write(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry) { return Write(boost::make_tuple(string("acentry"), acentry.strAccount, nAccEntryNum), acentry); } bool CWalletDB::WriteAccountingEntry_Backend(const CAccountingEntry& acentry) { return WriteAccountingEntry(++nAccountingEntryNumber, acentry); } int64_t CWalletDB::GetAccountCreditDebit(const string& strAccount) { list<CAccountingEntry> entries; ListAccountCreditDebit(strAccount, entries); int64_t nCreditDebit = 0; BOOST_FOREACH (const CAccountingEntry& entry, entries) nCreditDebit += entry.nCreditDebit; return nCreditDebit; } void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries) { bool fAllAccounts = (strAccount == "*"); Dbc* pcursor = GetCursor(); if (!pcursor) throw runtime_error("CWalletDB::ListAccountCreditDebit() : cannot create DB cursor"); unsigned int fFlags = DB_SET_RANGE; while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); if (fFlags == DB_SET_RANGE) ssKey << boost::make_tuple(string("acentry"), (fAllAccounts? string("") : strAccount), uint64_t(0)); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags); fFlags = DB_NEXT; if (ret == DB_NOTFOUND) break; else if (ret != 0) { pcursor->close(); throw runtime_error("CWalletDB::ListAccountCreditDebit() : error scanning DB"); } // Unserialize string strType; ssKey >> strType; if (strType != "acentry") break; CAccountingEntry acentry; ssKey >> acentry.strAccount; if (!fAllAccounts && acentry.strAccount != strAccount) break; ssValue >> acentry; ssKey >> acentry.nEntryNo; entries.push_back(acentry); } pcursor->close(); } DBErrors CWalletDB::ReorderTransactions(CWallet* pwallet) { LOCK(pwallet->cs_wallet); // Old wallets didn't have any defined order for transactions // Probably a bad idea to change the output of this // First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap. typedef pair<CWalletTx*, CAccountingEntry*> TxPair; typedef multimap<int64_t, TxPair > TxItems; TxItems txByTime; for (map<uint256, CWalletTx>::iterator it = pwallet->mapWallet.begin(); it != pwallet->mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); txByTime.insert(make_pair(wtx->nTimeReceived, TxPair(wtx, (CAccountingEntry*)0))); } list<CAccountingEntry> acentries; ListAccountCreditDebit("", acentries); BOOST_FOREACH(CAccountingEntry& entry, acentries) { txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } int64_t& nOrderPosNext = pwallet->nOrderPosNext; nOrderPosNext = 0; std::vector<int64_t> nOrderPosOffsets; for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it) { CWalletTx *const pwtx = (*it).second.first; CAccountingEntry *const pacentry = (*it).second.second; int64_t& nOrderPos = (pwtx != 0) ? pwtx->nOrderPos : pacentry->nOrderPos; if (nOrderPos == -1) { nOrderPos = nOrderPosNext++; nOrderPosOffsets.push_back(nOrderPos); if (pwtx) { if (!WriteTx(pwtx->GetHash(), *pwtx)) return DB_LOAD_FAIL; } else if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } else { int64_t nOrderPosOff = 0; BOOST_FOREACH(const int64_t& nOffsetStart, nOrderPosOffsets) { if (nOrderPos >= nOffsetStart) ++nOrderPosOff; } nOrderPos += nOrderPosOff; nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1); if (!nOrderPosOff) continue; // Since we're changing the order, write it back if (pwtx) { if (!WriteTx(pwtx->GetHash(), *pwtx)) return DB_LOAD_FAIL; } else if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } } WriteOrderPosNext(nOrderPosNext); return DB_LOAD_OK; } class CWalletScanState { public: unsigned int nKeys; unsigned int nCKeys; unsigned int nKeyMeta; bool fIsEncrypted; bool fAnyUnordered; int nFileVersion; vector<uint256> vWalletUpgrade; CWalletScanState() { nKeys = nCKeys = nKeyMeta = 0; fIsEncrypted = false; fAnyUnordered = false; nFileVersion = 0; } }; bool ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, CWalletScanState &wss, string& strType, string& strErr) { try { // Unserialize // Taking advantage of the fact that pair serialization // is just the two items serialized one after the other ssKey >> strType; if (strType == "name") { string strAddress; ssKey >> strAddress; ssValue >> pwallet->mapAddressBook[CEndoxCoinAddress(strAddress).Get()]; } else if (strType == "tx") { uint256 hash; ssKey >> hash; CWalletTx& wtx = pwallet->mapWallet[hash]; ssValue >> wtx; if (!(wtx.CheckTransaction() && (wtx.GetHash() == hash))) return false; // Undo serialize changes in 31600 if (31404 <= wtx.fTimeReceivedIsTxTime && wtx.fTimeReceivedIsTxTime <= 31703) { if (!ssValue.empty()) { char fTmp; char fUnused; ssValue >> fTmp >> fUnused >> wtx.strFromAccount; strErr = strprintf("LoadWallet() upgrading tx ver=%d %d '%s' %s", wtx.fTimeReceivedIsTxTime, fTmp, wtx.strFromAccount, hash.ToString()); wtx.fTimeReceivedIsTxTime = fTmp; } else { strErr = strprintf("LoadWallet() repairing tx ver=%d %s", wtx.fTimeReceivedIsTxTime, hash.ToString()); wtx.fTimeReceivedIsTxTime = 0; } wss.vWalletUpgrade.push_back(hash); } if (wtx.nOrderPos == -1) wss.fAnyUnordered = true; pwallet->AddToWallet(wtx, true); //// debug print //LogPrintf("LoadWallet %s\n", wtx.GetHash().ToString()); //LogPrintf(" %12d %s %s %s\n", // wtx.vout[0].nValue, // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()), // wtx.hashBlock.ToString(), // wtx.mapValue["message"]); } else if (strType == "sxAddr") { if (fDebug) printf("WalletDB ReadKeyValue sxAddr\n"); CStealthAddress sxAddr; ssValue >> sxAddr; pwallet->stealthAddresses.insert(sxAddr); } else if (strType == "acentry") { string strAccount; ssKey >> strAccount; uint64_t nNumber; ssKey >> nNumber; if (nNumber > nAccountingEntryNumber) nAccountingEntryNumber = nNumber; if (!wss.fAnyUnordered) { CAccountingEntry acentry; ssValue >> acentry; if (acentry.nOrderPos == -1) wss.fAnyUnordered = true; } } else if (strType == "watchs") { CScript script; ssKey >> script; char fYes; ssValue >> fYes; if (fYes == '1') pwallet->LoadWatchOnly(script); // Watch-only addresses have no birthday information for now, // so set the wallet birthday to the beginning of time. pwallet->nTimeFirstKey = 1; } else if (strType == "key" || strType == "wkey") { CPubKey vchPubKey; ssKey >> vchPubKey; if (!vchPubKey.IsValid()) { strErr = "Error reading wallet database: CPubKey corrupt"; return false; } CKey key; CPrivKey pkey; uint256 hash = 0; if (strType == "key") { wss.nKeys++; ssValue >> pkey; } else { CWalletKey wkey; ssValue >> wkey; pkey = wkey.vchPrivKey; } // Old wallets store keys as "key" [pubkey] => [privkey] // ... which was slow for wallets with lots of keys, because the public key is re-derived from the private key // using EC operations as a checksum. // Newer wallets store keys as "key"[pubkey] => [privkey][hash(pubkey,privkey)], which is much faster while // remaining backwards-compatible. try { ssValue >> hash; } catch(...){} bool fSkipCheck = false; if (hash != 0) { // hash pubkey/privkey to accelerate wallet load std::vector<unsigned char> vchKey; vchKey.reserve(vchPubKey.size() + pkey.size()); vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end()); vchKey.insert(vchKey.end(), pkey.begin(), pkey.end()); if (Hash(vchKey.begin(), vchKey.end()) != hash) { strErr = "Error reading wallet database: CPubKey/CPrivKey corrupt"; return false; } fSkipCheck = true; } if (!key.Load(pkey, vchPubKey, fSkipCheck)) { strErr = "Error reading wallet database: CPrivKey corrupt"; return false; } if (!pwallet->LoadKey(key, vchPubKey)) { strErr = "Error reading wallet database: LoadKey failed"; return false; } } else if (strType == "mkey") { unsigned int nID; ssKey >> nID; CMasterKey kMasterKey; ssValue >> kMasterKey; if(pwallet->mapMasterKeys.count(nID) != 0) { strErr = strprintf("Error reading wallet database: duplicate CMasterKey id %u", nID); return false; } pwallet->mapMasterKeys[nID] = kMasterKey; if (pwallet->nMasterKeyMaxID < nID) pwallet->nMasterKeyMaxID = nID; } else if (strType == "ckey") { wss.nCKeys++; vector<unsigned char> vchPubKey; ssKey >> vchPubKey; vector<unsigned char> vchPrivKey; ssValue >> vchPrivKey; if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey)) { strErr = "Error reading wallet database: LoadCryptedKey failed"; return false; } wss.fIsEncrypted = true; } else if (strType == "keymeta") { CPubKey vchPubKey; ssKey >> vchPubKey; CKeyMetadata keyMeta; ssValue >> keyMeta; wss.nKeyMeta++; pwallet->LoadKeyMetadata(vchPubKey, keyMeta); // find earliest key creation time, as wallet birthday if (!pwallet->nTimeFirstKey || (keyMeta.nCreateTime < pwallet->nTimeFirstKey)) pwallet->nTimeFirstKey = keyMeta.nCreateTime; } else if (strType == "sxKeyMeta") { if (fDebug) printf("WalletDB ReadKeyValue sxKeyMeta\n"); CKeyID keyId; ssKey >> keyId; CStealthKeyMetadata sxKeyMeta; ssValue >> sxKeyMeta; pwallet->mapStealthKeyMeta[keyId] = sxKeyMeta; } else if (strType == "defaultkey") { ssValue >> pwallet->vchDefaultKey; } else if (strType == "pool") { int64_t nIndex; ssKey >> nIndex; CKeyPool keypool; ssValue >> keypool; pwallet->setKeyPool.insert(nIndex); // If no metadata exists yet, create a default with the pool key's // creation time. Note that this may be overwritten by actually // stored metadata for that key later, which is fine. CKeyID keyid = keypool.vchPubKey.GetID(); if (pwallet->mapKeyMetadata.count(keyid) == 0) pwallet->mapKeyMetadata[keyid] = CKeyMetadata(keypool.nTime); } else if (strType == "version") { ssValue >> wss.nFileVersion; if (wss.nFileVersion == 10300) wss.nFileVersion = 300; } else if (strType == "cscript") { uint160 hash; ssKey >> hash; CScript script; ssValue >> script; if (!pwallet->LoadCScript(script)) { strErr = "Error reading wallet database: LoadCScript failed"; return false; } } else if (strType == "orderposnext") { ssValue >> pwallet->nOrderPosNext; } } catch (...) { return false; } return true; } static bool IsKeyType(string strType) { return (strType== "key" || strType == "wkey" || strType == "mkey" || strType == "ckey"); } DBErrors CWalletDB::LoadWallet(CWallet* pwallet) { pwallet->vchDefaultKey = CPubKey(); CWalletScanState wss; bool fNoncriticalErrors = false; DBErrors result = DB_LOAD_OK; try { LOCK(pwallet->cs_wallet); int nMinVersion = 0; if (Read((string)"minversion", nMinVersion)) { if (nMinVersion > CLIENT_VERSION) return DB_TOO_NEW; pwallet->LoadMinVersion(nMinVersion); } // Get cursor Dbc* pcursor = GetCursor(); if (!pcursor) { LogPrintf("Error getting wallet database cursor\n"); return DB_CORRUPT; } while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue); if (ret == DB_NOTFOUND) break; else if (ret != 0) { LogPrintf("Error reading next record from wallet database\n"); return DB_CORRUPT; } // Try to be tolerant of single corrupt records: string strType, strErr; if (!ReadKeyValue(pwallet, ssKey, ssValue, wss, strType, strErr)) { // losing keys is considered a catastrophic error, anything else // we assume the user can live with: if (IsKeyType(strType)) result = DB_CORRUPT; else { // Leave other errors alone, if we try to fix them we might make things worse. fNoncriticalErrors = true; // ... but do warn the user there is something wrong. if (strType == "tx") // Rescan if there is a bad transaction record: SoftSetBoolArg("-rescan", true); } } if (!strErr.empty()) LogPrintf("%s\n", strErr); } pcursor->close(); } catch (boost::thread_interrupted) { throw; } catch (...) { result = DB_CORRUPT; } if (fNoncriticalErrors && result == DB_LOAD_OK) result = DB_NONCRITICAL_ERROR; // Any wallet corruption at all: skip any rewriting or // upgrading, we don't want to make it worse. if (result != DB_LOAD_OK) return result; LogPrintf("nFileVersion = %d\n", wss.nFileVersion); LogPrintf("Keys: %u plaintext, %u encrypted, %u w/ metadata, %u total\n", wss.nKeys, wss.nCKeys, wss.nKeyMeta, wss.nKeys + wss.nCKeys); // nTimeFirstKey is only reliable if all keys have metadata if ((wss.nKeys + wss.nCKeys) != wss.nKeyMeta) pwallet->nTimeFirstKey = 1; // 0 would be considered 'no value' BOOST_FOREACH(uint256 hash, wss.vWalletUpgrade) WriteTx(hash, pwallet->mapWallet[hash]); // Rewrite encrypted wallets of versions 0.4.0 and 0.5.0rc: if (wss.fIsEncrypted && (wss.nFileVersion == 40000 || wss.nFileVersion == 50000)) return DB_NEED_REWRITE; if (wss.nFileVersion < CLIENT_VERSION) // Update WriteVersion(CLIENT_VERSION); if (wss.fAnyUnordered) result = ReorderTransactions(pwallet); pwallet->laccentries.clear(); ListAccountCreditDebit("*", pwallet->laccentries); BOOST_FOREACH(CAccountingEntry& entry, pwallet->laccentries) { pwallet->wtxOrdered.insert(make_pair(entry.nOrderPos, CWallet::TxPair((CWalletTx*)0, &entry))); } return result; } void ThreadFlushWalletDB(const string& strFile) { // Make this thread recognisable as the wallet flushing thread RenameThread("Endox-Coin-wallet"); static bool fOneThread; if (fOneThread) return; fOneThread = true; if (!GetBoolArg("-flushwallet", true)) return; unsigned int nLastSeen = nWalletDBUpdated; unsigned int nLastFlushed = nWalletDBUpdated; int64_t nLastWalletUpdate = GetTime(); while (true) { MilliSleep(500); if (nLastSeen != nWalletDBUpdated) { nLastSeen = nWalletDBUpdated; nLastWalletUpdate = GetTime(); } if (nLastFlushed != nWalletDBUpdated && GetTime() - nLastWalletUpdate >= 2) { TRY_LOCK(bitdb.cs_db,lockDb); if (lockDb) { // Don't do this if any databases are in use int nRefCount = 0; map<string, int>::iterator mi = bitdb.mapFileUseCount.begin(); while (mi != bitdb.mapFileUseCount.end()) { nRefCount += (*mi).second; mi++; } if (nRefCount == 0) { boost::this_thread::interruption_point(); map<string, int>::iterator mi = bitdb.mapFileUseCount.find(strFile); if (mi != bitdb.mapFileUseCount.end()) { LogPrint("db", "Flushing wallet.dat\n"); nLastFlushed = nWalletDBUpdated; int64_t nStart = GetTimeMillis(); // Flush wallet.dat so it's self contained bitdb.CloseDb(strFile); bitdb.CheckpointLSN(strFile); bitdb.mapFileUseCount.erase(mi++); LogPrint("db", "Flushed wallet.dat %dms\n", GetTimeMillis() - nStart); } } } } } } bool BackupWallet(const CWallet& wallet, const string& strDest) { if (!wallet.fFileBacked) return false; while (true) { { LOCK(bitdb.cs_db); if (!bitdb.mapFileUseCount.count(wallet.strWalletFile) || bitdb.mapFileUseCount[wallet.strWalletFile] == 0) { // Flush log data to the dat file bitdb.CloseDb(wallet.strWalletFile); bitdb.CheckpointLSN(wallet.strWalletFile); bitdb.mapFileUseCount.erase(wallet.strWalletFile); // Copy wallet.dat filesystem::path pathSrc = GetDataDir() / wallet.strWalletFile; filesystem::path pathDest(strDest); if (filesystem::is_directory(pathDest)) pathDest /= wallet.strWalletFile; try { #if BOOST_VERSION >= 104000 filesystem::copy_file(pathSrc, pathDest, filesystem::copy_option::overwrite_if_exists); #else filesystem::copy_file(pathSrc, pathDest); #endif LogPrintf("copied wallet.dat to %s\n", pathDest.string()); return true; } catch(const filesystem::filesystem_error &e) { LogPrintf("error copying wallet.dat to %s - %s\n", pathDest.string(), e.what()); return false; } } } MilliSleep(100); } return false; } // // Try to (very carefully!) recover wallet.dat if there is a problem. // bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) { // Recovery procedure: // move wallet.dat to wallet.timestamp.bak // Call Salvage with fAggressive=true to // get as much data as possible. // Rewrite salvaged data to wallet.dat // Set -rescan so any missing transactions will be // found. int64_t now = GetTime(); std::string newFilename = strprintf("wallet.%d.bak", now); int result = dbenv.dbenv.dbrename(NULL, filename.c_str(), NULL, newFilename.c_str(), DB_AUTO_COMMIT); if (result == 0) LogPrintf("Renamed %s to %s\n", filename, newFilename); else { LogPrintf("Failed to rename %s to %s\n", filename, newFilename); return false; } std::vector<CDBEnv::KeyValPair> salvagedData; bool allOK = dbenv.Salvage(newFilename, true, salvagedData); if (salvagedData.empty()) { LogPrintf("Salvage(aggressive) found no records in %s.\n", newFilename); return false; } LogPrintf("Salvage(aggressive) found %u records\n", salvagedData.size()); bool fSuccess = allOK; Db* pdbCopy = new Db(&dbenv.dbenv, 0); int ret = pdbCopy->open(NULL, // Txn pointer filename.c_str(), // Filename "main", // Logical db name DB_BTREE, // Database type DB_CREATE, // Flags 0); if (ret > 0) { LogPrintf("Cannot create database file %s\n", filename); return false; } CWallet dummyWallet; CWalletScanState wss; DbTxn* ptxn = dbenv.TxnBegin(); BOOST_FOREACH(CDBEnv::KeyValPair& row, salvagedData) { if (fOnlyKeys) { CDataStream ssKey(row.first, SER_DISK, CLIENT_VERSION); CDataStream ssValue(row.second, SER_DISK, CLIENT_VERSION); string strType, strErr; bool fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue, wss, strType, strErr); if (!IsKeyType(strType)) continue; if (!fReadOK) { LogPrintf("WARNING: CWalletDB::Recover skipping %s: %s\n", strType, strErr); continue; } } Dbt datKey(&row.first[0], row.first.size()); Dbt datValue(&row.second[0], row.second.size()); int ret2 = pdbCopy->put(ptxn, &datKey, &datValue, DB_NOOVERWRITE); if (ret2 > 0) fSuccess = false; } ptxn->commit(0); pdbCopy->close(0); delete pdbCopy; return fSuccess; } bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename) { return CWalletDB::Recover(dbenv, filename, false); }
[ "rubixblockchain@gmail.com" ]
rubixblockchain@gmail.com
7f085d6155a90646fde1d47680406787925e8a64
cccfb7be281ca89f8682c144eac0d5d5559b2deb
/chrome/browser/ash/printing/printer_setup_util.h
e54655a3e0619af60e9d2b0a553c058a984c3e80
[ "BSD-3-Clause" ]
permissive
SREERAGI18/chromium
172b23d07568a4e3873983bf49b37adc92453dd0
fd8a8914ca0183f0add65ae55f04e287543c7d4a
refs/heads/master
2023-08-27T17:45:48.928019
2021-11-11T22:24:28
2021-11-11T22:24:28
428,659,250
1
0
BSD-3-Clause
2021-11-16T13:08:14
2021-11-16T13:08:14
null
UTF-8
C++
false
false
1,519
h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_ #define CHROME_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_ #include "base/callback_forward.h" #include "chrome/browser/chromeos/printing/cups_printers_manager.h" #include "chrome/browser/chromeos/printing/printer_configurer.h" #include "chromeos/printing/printer_configuration.h" #include "printing/backend/print_backend.h" #include "third_party/abseil-cpp/absl/types/optional.h" namespace ash { namespace printing { using GetPrinterCapabilitiesCallback = base::OnceCallback<void( const absl::optional<::printing::PrinterSemanticCapsAndDefaults>&)>; // Sets up a printer (if necessary) and runs a callback with the printer // capabilities once printer setup is complete. The callback is run // regardless of whether or not the printer needed to be set up. // This function must be called from the UI thread. // This function is called when setting up a printer from Print Preview // and records a metric with the printer setup result code. void SetUpPrinter(chromeos::CupsPrintersManager* printers_manager, chromeos::PrinterConfigurer* printer_configurer, const chromeos::Printer& printer, GetPrinterCapabilitiesCallback cb); } // namespace printing } // namespace ash #endif // CHROME_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
30a4c6f2ab4d0d76883980d5134a42fc85e9ec13
bbe6df507bcd493871b29950189cae16e761b9d2
/src/test/Nebula.cc
14684ebe4e48ffd5775aa76f7d6b0a1d1652cb2e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bcec/opennebula3.4.1
99138e0ea679fb1ed9e5e13ef16af3febfec3672
8bdd19006f21aa11555dc411f670a89b916f05c9
refs/heads/master
2021-01-23T11:48:10.894787
2012-07-05T09:37:59
2012-07-05T09:37:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,803
cc
/* -------------------------------------------------------------------------- */ /* Copyright 2002-2012, OpenNebula Project Leads (OpenNebula.org) */ /* */ /* 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 "Nebula.h" #include "NebulaLog.h" #include "VirtualMachine.h" #include "SqliteDB.h" #include "MySqlDB.h" #include "OneUnitTest.h" #include "NebulaTest.h" #include <stdlib.h> #include <stdexcept> #include <libxml/parser.h> #include <signal.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <pthread.h> using namespace std; /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ void Nebula::start() { int rc; sigset_t mask; time_t timer_period; NebulaTest * tester; tester = NebulaTest::instance(); // Because Nebula is accessed only using ::instance(), it can't be // deleted. Tests use the start method several times before the // destructor is invoked, so this clean-up is necessary if ( vmpool != 0) { delete vmpool; } if ( vnpool != 0) { delete vnpool; } if ( hpool != 0) { delete hpool; } if ( upool != 0) { delete upool; } if ( ipool != 0) { delete ipool; } if ( tpool != 0) { delete tpool; } if ( gpool != 0) { delete gpool; } if ( dspool != 0) { delete dspool; } if ( clpool != 0) { delete clpool; } if ( vmm != 0) { delete vmm; } if ( lcm != 0) { delete lcm; } if ( im != 0) { delete im; } if ( tm != 0) { delete tm; } if ( dm != 0) { delete dm; } if ( rm != 0) { delete rm; } if ( hm != 0) { delete hm; } if ( imagem != 0 ) { delete imagem; } if ( authm != 0) { delete authm; } if ( aclm != 0) { delete aclm; } if ( nebula_configuration != 0) { delete nebula_configuration; } // ----------------------------------------------------------- // Configuration // ----------------------------------------------------------- // A self-contained structure in current directory is assumed nebula_location = "./"; mad_location = nebula_location + "lib/mads/"; etc_location = nebula_location + "etc/"; log_location = nebula_location + "var/"; var_location = nebula_location; hook_location = nebula_location + "hooks/"; remotes_location = nebula_location + "var/remotes/"; if ( nebula_configuration != 0) { delete nebula_configuration; } xmlInitParser(); // ----------------------------------------------------------- // Pools // ----------------------------------------------------------- try { vector<const Attribute *> dbs; db = OneUnitTest::get_db(); NebulaLog::log("ONE",Log::INFO,"Bootstraping OpenNebula database."); bootstrap(); VirtualMachinePool::bootstrap(db); HostPool::bootstrap(db); VirtualNetworkPool::bootstrap(db); UserPool::bootstrap(db); ImagePool::bootstrap(db); VMTemplatePool::bootstrap(db); GroupPool::bootstrap(db); AclManager::bootstrap(db); DatastorePool::bootstrap(db); ClusterPool::bootstrap(db); } catch (exception&) { throw; } // ----------------------------------------------------------- try { string mac_prefix = "00:02"; int size = 126; string default_image_type = "OS"; string default_device_prefix = "hd"; if (tester->need_cluster_pool) { clpool = tester->create_clpool(db); } if (tester->need_vm_pool) { vmpool = tester->create_vmpool(db,hook_location,var_location); } if (tester->need_host_pool) { hpool = tester->create_hpool(db,hook_location,var_location); } if (tester->need_vnet_pool) { vnpool = tester->create_vnpool(db,mac_prefix,size); } if (tester->need_group_pool) { gpool = tester->create_gpool(db); } if (tester->need_user_pool) { upool = tester->create_upool(db); } if (tester->need_image_pool) { ipool = tester->create_ipool(db, default_image_type, default_device_prefix); } if (tester->need_template_pool) { tpool = tester->create_tpool(db); } if (tester->need_datastore_pool) { dspool = tester->create_dspool(db); } } catch (exception&) { throw; } // ----------------------------------------------------------- //Managers // ----------------------------------------------------------- timer_period = 0; rc = 0; sigfillset(&mask); pthread_sigmask(SIG_BLOCK, &mask, NULL); MadManager::mad_manager_system_init(); // ---- Virtual Machine Manager ---- if (tester->need_vmm) { try { time_t poll_period = 0; vmm = tester->create_vmm(vmpool,hpool,timer_period,poll_period); } catch (bad_alloc&) { throw; } if( vmm != 0) { rc = vmm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Virtual Machine Manager"); } } // ---- Life-cycle Manager ---- if (tester->need_lcm) { try { lcm = tester->create_lcm(vmpool,hpool); } catch (bad_alloc&) { throw; } if( lcm != 0 ) { rc = lcm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Life-cycle Manager"); } } // ---- Information Manager ---- if (tester->need_im) { try { im = tester->create_im(hpool,timer_period,remotes_location); } catch (bad_alloc&) { throw; } if( im != 0 ) { rc = im->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Information Manager"); } } // ---- Transfer Manager ---- if (tester->need_tm) { try { tm = tester->create_tm(vmpool, hpool); } catch (bad_alloc&) { throw; } if( tm != 0 ) { rc = tm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Transfer Manager"); } } // ---- Dispatch Manager ---- if ( tester->need_dm ) { try { dm = tester->create_dm(vmpool,hpool); } catch (bad_alloc&) { throw; } if( dm != 0 ) { rc = dm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Dispatch Manager"); } } // ---- Hook Manager ---- if (tester->need_hm) { try { hm = tester->create_hm(vmpool); } catch (bad_alloc&) { throw; } if( hm != 0 ) { rc = hm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Hook Manager"); } } // ---- Auth Manager ---- if (tester->need_authm) { try { authm = tester->create_authm(timer_period); } catch (bad_alloc&) { throw; } if (authm != 0) { rc = authm->start(); if ( rc != 0 ) { throw runtime_error("Could not start the Auth Manager"); } } } // ---- ACL Manager ---- if (tester->need_aclm) { try { aclm = new AclManager(db); } catch (bad_alloc&) { throw; } rc = aclm->start(); if ( rc != 0 ) { throw runtime_error("Could not start the ACL Manager"); } } // ---- Image Manager ---- if (tester->need_imagem) { try { imagem = tester->create_imagem(ipool); } catch (bad_alloc&) { throw; } if (imagem != 0) { rc = imagem->start(); if ( rc != 0 ) { throw runtime_error("Could not start the Image Manager"); } } } // ---- Request Manager ---- if (tester->need_rm) { try { rm = tester->create_rm(log_location + "one_xmlrpc.log"); } catch (bad_alloc&) { NebulaLog::log("ONE", Log::ERROR, "Error starting RM"); throw; } if( rm != 0 ) { rc = rm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Request Manager"); } } // ----------------------------------------------------------- // Load mads // ----------------------------------------------------------- sleep(2); if( vmm != 0 ) { vmm->load_mads(0); } if( im != 0 ) { im->load_mads(0); } if( tm != 0 ) { tm->load_mads(0); } if( hm != 0 ) { hm->load_mads(0); } if( imagem != 0 ) { imagem->load_mads(0); } if( authm != 0 ) { authm->load_mads(0); } // ----------------------------------------------------------- // Set DB pointer to null, to prevent its deletion on the destructor // ----------------------------------------------------------- db = 0; }; /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ int Nebula::bootstrap() { ostringstream oss; oss << "CREATE TABLE pool_control (tablename VARCHAR(32) PRIMARY KEY, " "last_oid BIGINT UNSIGNED)"; return db->exec(oss); }
[ "shenxyask@gmail.com" ]
shenxyask@gmail.com
5d8993ba9a598a93071a596c30d031e77a5448d6
b7e2b49b89ad9b842119410404b461f70b0716e5
/src/PPgStats.h
184bf52614f01f8c7f64cb707b4d557d85ba941f
[]
no_license
charleson/emule_verycd
31f3c71e0478b036f957edacd10f0f398c886165
489f841518e9313e9b387ad87298d32141c212f8
refs/heads/master
2020-04-06T04:18:04.657439
2012-09-16T15:11:58
2012-09-16T15:11:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,200
h
#pragma once #include "ColorButton.h" class CPPgStats : public CPropertyPage { DECLARE_DYNAMIC(CPPgStats) public: CPPgStats(); virtual ~CPPgStats(); // Dialog Data enum { IDD = IDD_PPG_STATS }; void Localize(void); protected: int m_iStatsColors; DWORD* m_pdwStatsColors; CComboBox m_colors; CComboBox m_cratio; CColorButton m_ctlColor; CSliderCtrl m_ctlGraphsUpdate; CSliderCtrl m_ctlGraphsAvgTime; CSliderCtrl m_ctlStatsUpdate; int m_iGraphsUpdate; int m_iGraphsAvgTime; int m_iStatsUpdate; BOOL m_bModified; void ShowInterval(); void SetModified(BOOL bChanged = TRUE); virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support virtual BOOL OnInitDialog(); virtual BOOL OnApply(); virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam); DECLARE_MESSAGE_MAP() afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar); afx_msg void OnCbnSelchangeColorselector(); afx_msg LONG OnColorPopupSelChange(UINT lParam, LONG wParam); afx_msg void OnEnChangeCGraphScale() { SetModified(); } afx_msg void OnCbnSelchangeCRatio() { SetModified(); } afx_msg void OnHelp(); afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo); afx_msg void OnDestroy(); };
[ "codingforfan@gmail.com" ]
codingforfan@gmail.com
75924d4fe4119e962351ebeb5dd2b69af8edef25
5014bc1560490ac37e8c5d2562a2bfdb16727ea9
/SDK/NanoCore/NanoCPP/tests/algorithms/25.generate.cpp
eb78ba6cd5a448e5b7ce26bb81317ae3f779af0f
[ "Apache-2.0" ]
permissive
PSP-Archive/Nanodesktop
6fbf130d668dc9aa6afd06d8c4fff55a8cdcbdaf
37f502dff47c1a0b11c2a9d65c8cdcde12591e39
refs/heads/main
2023-02-28T08:41:12.147204
2021-02-08T13:01:00
2021-02-08T13:01:00
337,077,653
0
0
null
null
null
null
UTF-8
C++
false
false
10,916
cpp
/*************************************************************************** * * 25.generate.cpp - test exercising 25.2.6 [lib.alg.generate] * * $Id: 25.generate.cpp 510970 2007-02-23 14:57:45Z faridz $ * *************************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. * * Copyright 1994-2006 Rogue Wave Software. * **************************************************************************/ #include <algorithm> // for generate #include <cstddef> // for size_t #include <alg_test.h> #include <rw_value.h> // for UserClass #include <driver.h> // for rw_test() /**************************************************************************/ template <class T> struct Generator { // return a const reference to avoid requiring // that T be copy-constructible const T& operator() () const { static const union { void* align_; unsigned char buf_ [sizeof (T)]; } u = { 0 }; return *(const T*)(const void*)&u; } }; _RWSTD_SPECIALIZED_CLASS struct Generator<UserClass> { // dummy arguments provided to prevent Generator // from being DefaultConstructible Generator (int, int /* dummy */) { // use the generator of sequential values UserClass::gen_ = gen_seq; } UserClass operator() () /* non-const */ { // return a default-constructed UserClass intialized // to the next sequential value return UserClass (); } }; /**************************************************************************/ _RWSTD_NAMESPACE (std) { // disable explicit instantiation for compilers (like MSVC) // that can't handle it #ifndef _RWSTD_NO_EXPLICIT_INSTANTIATION template void generate (FwdIter<assign<base<> > >, FwdIter<assign<base<> > >, Generator<assign<base<> > >); template void generate_n (OutputIter<assign<base<> > >, std::size_t, Generator<assign<base<> > >); #endif // _RWSTD_NO_EXPLICIT_INSTANTIATION } // namespace std /**************************************************************************/ // exercises std::generate() template <class ForwardIterator, class T> void test_generate (std::size_t N, const ForwardIterator& gen_iter, const T* ) { static const char* const itname = type_name (gen_iter, (T*) 0); static const char* const genname = "Generator"; rw_info (0, 0, 0, "void std::generate (%s, %1$s, %s)", itname, genname); // generate sequential values for each default constructed T T::gen_ = gen_seq; T *buf = new UserClass [N]; for (std::size_t i = 0; i < N; ++i) { // exercise 25.2.6, std::generate<> () std::size_t last_n_op_assign = T::n_total_op_assign_; T* const buf_end = buf + i + 1; const ForwardIterator begin = make_iter (buf, buf, buf_end, gen_iter); const ForwardIterator end = make_iter (buf_end, buf_end, buf_end, gen_iter); const Generator<T> gen (0, 0); // store the value of the next element const int last_val = Generator<T>(0, 0)().data_.val_; std::generate (begin, end, gen); bool success = true; // verify 25.2.6, p2 std::size_t j = 0; for ( ; j != i; ++j) { success = (begin.cur_ + j)->data_.val_ == int (last_val + j + 1); if (!success) break; } rw_assert (success, 0, __LINE__, "%zu. generate (): buf[%zu]: %d != %d", i + 1, j, last_val + j + 1, (begin.cur_ + j)->data_.val_ ); if (!success) break; // verify 25.2.6, p3 success = T::n_total_op_assign_ - last_n_op_assign == i + 1; rw_assert (success, 0, __LINE__, "%zu. generate (): complexity: %zu != %zu", i + 1, T::n_total_op_assign_ - last_n_op_assign, i + 1); if (!success) break; } delete[] (buf); } /**************************************************************************/ // exercises std::generate_n() template <class ForwardIterator, class Size, class T> void test_generate_n (std::size_t N, const ForwardIterator &gen_iter, const Size*, const T*) { static const char* const itname = type_name (gen_iter, (T*) 0); static const char* const szname = "Size<int>"; static const char* const genname = "Generator"; rw_info (0, 0, 0, "void std::generate_n (%s, %s, %s)", itname, szname, genname); // generate sequential values for each default constructed T T::gen_ = gen_seq; T *buf = new UserClass [N]; for (std::size_t i = 0; i <= N; ++i) { std::size_t last_n_op_assign = T::n_total_op_assign_; T* const buf_end = buf + i + 1; const ForwardIterator begin = make_iter (buf, buf, buf_end, gen_iter); const Size n (i, 0); const Generator<T> gen (0, 0); // store the value of the next element const int last_val = Generator<T>(0, 0)().data_.val_; std::generate_n (begin, n, gen); bool success = true; // verify 25.2.6, p2 std::size_t j = 0; for ( ; j != i; ++j) { success = (begin.cur_ + j)->data_.val_ == int (last_val + j + 1); if (!success) break; } rw_assert (success, 0, __LINE__, "%zu. generate_n (): buf[%zu]: %d != %d", i + 1, j, last_val + j + 1, (begin.cur_ + j)->data_.val_ ); if (!success) break; // verify 25.2.6, p3 success = T::n_total_op_assign_ - last_n_op_assign == i; rw_assert (success, 0, __LINE__, "%zu. generate_n (): complexity: %zu != %zu", i + 1, T::n_total_op_assign_ - last_n_op_assign, i); if (!success) break; } delete[] (buf); } /**************************************************************************/ /* extern */ int rw_opt_nloops = 32; // --nloops /* extern */ int rw_opt_no_generate; // --no-generate /* extern */ int rw_opt_no_generate_n; // --no-generate_n /* extern */ int rw_opt_no_output_iter; // --no-OutputIterator /* extern */ int rw_opt_no_fwd_iter; // --no-ForwardIterator /* extern */ int rw_opt_no_bidir_iter; // --no-BidirectionalIterator /* extern */ int rw_opt_no_rnd_iter; // --no-RandomAccessIterator static void test_generate (const std::size_t N) { rw_info (0, 0, 0, "template <class %s, class %s> " "void std::generate (%1$s, %1$s, %2$s&)", "ForwardIterator", "Generator"); if (rw_opt_no_fwd_iter) { rw_note (0, __FILE__, __LINE__, "ForwardIterator test disabled"); } else { test_generate (N, FwdIter<UserClass>(), (UserClass*)0); } if (rw_opt_no_bidir_iter) { rw_note (0, __FILE__, __LINE__, "BidirectionalIterator test disabled"); } else { test_generate (N, BidirIter<UserClass>(), (UserClass*)0); } if (rw_opt_no_rnd_iter) { rw_note (0, __FILE__, __LINE__, "RandomAccessIterator test disabled"); } else { test_generate (N, RandomAccessIter<UserClass>(), (UserClass*)0); } } /**************************************************************************/ static void test_generate_n (const std::size_t N) { rw_info (0, 0, 0, "template <class %s, class %s, class %s> " "void std::generate_n (%1$s, %2$s, const %3$s&)", "OutputIterator", "Size", "Generator"); if (rw_opt_no_output_iter) { rw_note (0, __FILE__, __LINE__, "OutputIterator test disabled"); } else { test_generate_n (N, OutputIter<UserClass>(0, 0, 0), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_fwd_iter) { rw_note (0, __FILE__, __LINE__, "ForwardIterator test disabled"); } else { test_generate_n (N, FwdIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_bidir_iter) { rw_note (0, __FILE__, __LINE__, "BidirectionalIterator test disabled"); } else { test_generate_n (N, BidirIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_rnd_iter) { rw_note (0, __FILE__, __LINE__, "RandomAccessIterator test disabled"); } else { test_generate_n (N, RandomAccessIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } } /**************************************************************************/ static int run_test (int, char*[]) { RW_ASSERT (0 <= rw_opt_nloops); const std::size_t N = std::size_t (rw_opt_nloops); if (rw_opt_no_generate) { rw_note (0, __FILE__, __LINE__, "std::generate test disabled"); } else { test_generate (N); } if (rw_opt_no_generate_n) { rw_note (0, __FILE__, __LINE__, "std::generate_n test disabled"); } else { test_generate_n (N); } return 0; } /**************************************************************************/ int main (int argc, char *argv[]) { return rw_test (argc, argv, __FILE__, "lib.alg.generate", 0 /* no comment */, run_test, "|-nloops#0 " // argument must be non-negative "|-no-generate# " "|-no-generate_n# " "|-no-OutputIterator# " "|-no-ForwardIterator# " "|-no-BidirectionalIterator# " "|-no-RandomAccessIterator#", &rw_opt_nloops, &rw_opt_no_generate, &rw_opt_no_generate_n, &rw_opt_no_output_iter, &rw_opt_no_fwd_iter, &rw_opt_no_bidir_iter, &rw_opt_no_rnd_iter); }
[ "pierluigiortenzi@gmail.com" ]
pierluigiortenzi@gmail.com
d68b65ac59b4f999a6be557bae5b9de10d395f30
96a390c14952a07729906880594b7be1f8732b09
/chrome/browser/chromeos/full_restore/arc_app_launch_handler.cc
373d911b24404e11f83f74dfa5d61cf397781c35
[ "BSD-3-Clause" ]
permissive
elielvipata/chromium-1
92d56e426729e32998c6bc2ced02d878face54c8
30066dc36c595ae0450ad93b5de8ad0554fcd427
refs/heads/master
2023-06-17T15:46:44.373673
2021-07-12T14:36:22
2021-07-12T14:36:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,711
cc
// Copyright 2021 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/chromeos/full_restore/arc_app_launch_handler.h" #include <utility> #include <vector> #include "ash/shell.h" #include "base/callback.h" #include "base/containers/contains.h" #include "base/cpu.h" #include "chrome/browser/apps/app_service/app_platform_metrics.h" #include "chrome/browser/apps/app_service/app_service_proxy.h" #include "chrome/browser/apps/app_service/app_service_proxy_factory.h" #include "chrome/browser/apps/app_service/launch_utils.h" #include "chrome/browser/chromeos/full_restore/arc_window_handler.h" #include "chrome/browser/chromeos/full_restore/arc_window_utils.h" #include "chrome/browser/chromeos/full_restore/full_restore_app_launch_handler.h" #include "chrome/browser/chromeos/full_restore/full_restore_arc_task_handler.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" #include "chrome/browser/ui/ash/shelf/arc_shelf_spinner_item_controller.h" #include "chrome/browser/ui/ash/shelf/chrome_shelf_controller.h" #include "chrome/browser/ui/ash/shelf/shelf_spinner_controller.h" #include "chromeos/services/cros_healthd/public/cpp/service_connection.h" #include "chromeos/services/cros_healthd/public/mojom/cros_healthd_probe.mojom.h" #include "components/arc/arc_util.h" #include "components/arc/metrics/arc_metrics_constants.h" #include "components/full_restore/app_launch_info.h" #include "components/full_restore/full_restore_read_handler.h" #include "components/full_restore/full_restore_utils.h" #include "components/full_restore/restore_data.h" #include "components/services/app_service/public/cpp/types_util.h" #include "components/services/app_service/public/mojom/types.mojom.h" #include "ui/wm/public/activation_client.h" namespace { // If the app launching condition doesn't match, e.g. the app is not ready, // and after checking `kMaxCheckingNum` times, there is no improvement, move to // the next window to launch. constexpr int kMaxCheckingNum = 3; // Time interval between each checking for the app launching condition, e.g. the // memory pressure level, or whether the app is ready. constexpr base::TimeDelta kAppLaunchCheckingDelay = base::TimeDelta::FromSeconds(1); // Delay between each app launching. constexpr base::TimeDelta kAppLaunchDelay = base::TimeDelta::FromSeconds(3); constexpr int kCpuUsageRefreshIntervalInSeconds = 1; // Count CPU usage by average on last 6 seconds. constexpr int kCpuUsageCountWindowLength = 6 * kCpuUsageRefreshIntervalInSeconds; // Restrict ARC app launch if CPU usage over threshold. constexpr int kCpuUsageThreshold = 90; // Apply CPU usage restrict if and only if the CPU cores not over // |kCpuRestrictCoresCondition|. constexpr int kCpuRestrictCoresCondition = 2; } // namespace namespace chromeos { namespace full_restore { ArcAppLaunchHandler::ArcAppLaunchHandler() { if (aura::Env::HasInstance()) env_observer_.Observe(aura::Env::GetInstance()); if (ash::Shell::HasInstance() && ash::Shell::Get()->GetPrimaryRootWindow()) { auto* activation_client = wm::GetActivationClient(ash::Shell::Get()->GetPrimaryRootWindow()); if (activation_client) activation_client->AddObserver(this); } // Get CPU cores. base::CPU::TimeInState state; if (base::CPU::GetTimeInState(state) && state.size() <= kCpuRestrictCoresCondition) { should_apply_cpu_restirction_ = true; } } ArcAppLaunchHandler::~ArcAppLaunchHandler() { if (ash::Shell::HasInstance() && ash::Shell::Get()->GetPrimaryRootWindow()) { auto* activation_client = wm::GetActivationClient(ash::Shell::Get()->GetPrimaryRootWindow()); if (activation_client) activation_client->RemoveObserver(this); } } void ArcAppLaunchHandler::RestoreArcApps( FullRestoreAppLaunchHandler* app_launch_handler) { DCHECK(app_launch_handler); handler_ = app_launch_handler; LoadRestoreData(); if (!HasRestoreData()) return; window_handler_ = FullRestoreArcTaskHandler::GetForProfile(handler_->profile_) ->window_handler(); DCHECK(apps::AppServiceProxyFactory::IsAppServiceAvailableForProfile( handler_->profile_)); apps::AppRegistryCache& cache = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_) ->AppRegistryCache(); // Observe AppRegistryCache to get the notification when the app is ready. if (!app_registry_cache_observer_.IsObserving()) app_registry_cache_observer_.Observe(&cache); // Add the app to `app_ids` if there is a launch list from the restore data // for the app. std::set<std::string> app_ids; cache.ForEachApp([&app_ids, this](const apps::AppUpdate& update) { if (update.Readiness() == apps::mojom::Readiness::kReady && app_ids_.find(update.AppId()) != app_ids_.end()) { app_ids.insert(update.AppId()); } }); for (const auto& app_id : app_ids) PrepareAppLaunching(app_id); } void ArcAppLaunchHandler::OnAppUpdate(const apps::AppUpdate& update) { if (!HasRestoreData() || !update.ReadinessChanged()) return; if (!apps_util::IsInstalled(update.Readiness())) { RemoveWindowsForApp(update.AppId()); return; } // If the app is not ready, don't launch the app for the restoration. if (update.Readiness() != apps::mojom::Readiness::kReady) return; if (base::Contains(app_ids_, update.AppId())) PrepareAppLaunching(update.AppId()); } void ArcAppLaunchHandler::OnAppRegistryCacheWillBeDestroyed( apps::AppRegistryCache* cache) { apps::AppRegistryCache::Observer::Observe(nullptr); } void ArcAppLaunchHandler::OnAppConnectionReady() { if (!HasRestoreData()) return; // Receive the memory pressure level. if (chromeos::ResourcedClient::Get() && !resourced_client_observer_.IsObserving()) { resourced_client_observer_.Observe(chromeos::ResourcedClient::Get()); } // Receive the system CPU usage rate. if (!probe_service_ || !probe_service_.is_connected()) { cros_healthd::ServiceConnection::GetInstance()->GetProbeService( probe_service_.BindNewPipeAndPassReceiver()); probe_service_.set_disconnect_handler( base::BindOnce(&ArcAppLaunchHandler::OnProbeServiceDisconnect, weak_ptr_factory_.GetWeakPtr())); } StartCpuUsageCount(); if (!app_launch_timer_) { app_launch_timer_ = std::make_unique<base::RepeatingTimer>(); MaybeReStartTimer(kAppLaunchCheckingDelay); } if (!stop_restore_timer_) { stop_restore_timer_ = std::make_unique<base::OneShotTimer>(); stop_restore_timer_->Start(FROM_HERE, kStopRestoreDelay, base::BindOnce(&ArcAppLaunchHandler::StopRestore, weak_ptr_factory_.GetWeakPtr())); } } void ArcAppLaunchHandler::LaunchApp(const std::string& app_id) { if (!IsAppReady(app_id)) return; DCHECK(handler_); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } for (const auto& data_it : it->second) LaunchApp(app_id, data_it.first); RemoveWindowsForApp(app_id); } void ArcAppLaunchHandler::OnWindowActivated( ::wm::ActivationChangeObserver::ActivationReason reason, aura::Window* new_active, aura::Window* old_active) { const auto session_id = arc::GetWindowSessionId(new_active); if (!session_id.has_value()) return; const std::string* arc_app_id = new_active->GetProperty(::full_restore::kAppIdKey); if (!arc_app_id || arc_app_id->empty() || !IsAppReady(*arc_app_id)) return; auto it = session_id_to_window_id_.find(session_id.value()); if (it == session_id_to_window_id_.end()) return; RemoveWindow(*arc_app_id, it->second); LaunchApp(*arc_app_id, it->second); } void ArcAppLaunchHandler::OnWindowInitialized(aura::Window* window) { // An app window has type WINDOW_TYPE_NORMAL, a WindowDelegate and // is a top level views widget. Tooltips, menus, and other kinds of transient // windows that can't activate are filtered out. if (window->GetType() != aura::client::WINDOW_TYPE_NORMAL || !window->delegate()) return; views::Widget* widget = views::Widget::GetWidgetForNativeWindow(window); if (!widget || !widget->is_top_level() || !arc::GetWindowSessionId(window).has_value()) { return; } observed_windows_.AddObservation(window); } void ArcAppLaunchHandler::OnWindowDestroying(aura::Window* window) { DCHECK(observed_windows_.IsObservingSource(window)); observed_windows_.RemoveObservation(window); const auto session_id = arc::GetWindowSessionId(window); if (!session_id.has_value()) return; session_id_to_window_id_.erase(session_id.value()); } void ArcAppLaunchHandler::LoadRestoreData() { DCHECK(handler_); apps::AppRegistryCache& cache = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_) ->AppRegistryCache(); for (const auto& it : handler_->restore_data_->app_id_to_launch_list()) { if (cache.GetAppType(it.first) != apps::mojom::AppType::kArc) continue; app_ids_.insert(it.first); for (const auto& data_it : it.second) { if (data_it.second->activation_index.has_value()) { windows_[data_it.second->activation_index.value()] = {it.first, data_it.first}; } else { no_stack_windows_.push_back({it.first, data_it.first}); } } } } void ArcAppLaunchHandler::PrepareAppLaunching(const std::string& app_id) { DCHECK(handler_); app_ids_.erase(app_id); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } auto* arc_handler = FullRestoreArcTaskHandler::GetForProfile(handler_->profile_); for (const auto& data_it : it->second) { handler_->RecordRestoredAppLaunch(apps::AppTypeName::kArc); DCHECK(data_it.second->event_flag.has_value()); // Set an ARC session id to find the restore window id based on the new // created ARC task id in FullRestoreReadHandler. int32_t arc_session_id = ::full_restore::FullRestoreReadHandler::GetInstance() ->GetArcSessionId(); ::full_restore::FullRestoreReadHandler::GetInstance() ->SetArcSessionIdForWindowId(arc_session_id, data_it.first); window_id_to_session_id_[data_it.first] = arc_session_id; session_id_to_window_id_[arc_session_id] = data_it.first; bool launch_ghost_window = false; #if BUILDFLAG(ENABLE_WAYLAND_SERVER) if (window_handler_ && (data_it.second->bounds_in_root.has_value() || data_it.second->current_bounds.has_value())) { handler_->RecordArcGhostWindowLaunch(/*is_arc_ghost_window=*/true); arc_handler->window_handler()->LaunchArcGhostWindow( app_id, arc_session_id, data_it.second.get()); launch_ghost_window = true; } else { handler_->RecordArcGhostWindowLaunch(/*is_arc_ghost_window=*/false); } #endif if (launch_ghost_window) continue; ChromeShelfController* chrome_controller = ChromeShelfController::instance(); // chrome_controller may be null in tests. if (chrome_controller) { apps::mojom::WindowInfoPtr window_info = apps::mojom::WindowInfo::New(); window_info->window_id = arc_session_id; chrome_controller->GetShelfSpinnerController()->AddSpinnerToShelf( app_id, std::make_unique<ArcShelfSpinnerItemController>( app_id, data_it.second->event_flag.value(), arc::UserInteractionType::APP_STARTED_FROM_FULL_RESTORE, apps::MakeArcWindowInfo(std::move(window_info)))); } } } void ArcAppLaunchHandler::OnMemoryPressure( chromeos::ResourcedClient::PressureLevel level, uint64_t reclaim_target_kb) { pressure_level_ = level; } bool ArcAppLaunchHandler::HasRestoreData() { return !(windows_.empty() && no_stack_windows_.empty() && pending_windows_.empty()); } bool ArcAppLaunchHandler::CanLaunchApp() { if (should_apply_cpu_restirction_) { if (GetCpuUsageRate() >= kCpuUsageThreshold) return false; } switch (pressure_level_) { case chromeos::ResourcedClient::PressureLevel::NONE: return true; case chromeos::ResourcedClient::PressureLevel::MODERATE: case chromeos::ResourcedClient::PressureLevel::CRITICAL: return false; } } bool ArcAppLaunchHandler::IsAppReady(const std::string& app_id) { ArcAppListPrefs* prefs = ArcAppListPrefs::Get(handler_->profile_); if (!prefs) return false; std::unique_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id); if (!app_info || app_info->suspended || !app_info->ready) return false; return true; } void ArcAppLaunchHandler::MaybeLaunchApp() { if (!first_run_ && !CanLaunchApp()) return; for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (IsAppReady(it->app_id)) { LaunchApp(it->app_id, it->window_id); pending_windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); return; } } if (!windows_.empty()) { auto it = windows_.begin(); if (IsAppReady(it->second.app_id)) { launch_count_ = 0; LaunchApp(it->second.app_id, it->second.window_id); windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); } else { ++launch_count_; if (launch_count_ >= kMaxCheckingNum) { pending_windows_.push_back({it->second.app_id, it->second.window_id}); windows_.erase(it); launch_count_ = 0; } else if (launch_count_ == 1) { MaybeReStartTimer(kAppLaunchCheckingDelay); } } return; } for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (IsAppReady(it->app_id)) { LaunchApp(it->app_id, it->window_id); no_stack_windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); return; } } } void ArcAppLaunchHandler::LaunchApp(const std::string& app_id, int32_t window_id) { DCHECK(handler_); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } const auto data_it = it->second.find(window_id); if (data_it == it->second.end()) return; first_run_ = false; auto* proxy = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_); DCHECK(proxy); DCHECK(data_it->second->event_flag.has_value()); apps::mojom::WindowInfoPtr window_info = HandleArcWindowInfo(data_it->second->GetAppWindowInfo()); const auto window_it = window_id_to_session_id_.find(window_id); if (window_it != window_id_to_session_id_.end()) { window_info->window_id = window_it->second; window_id_to_session_id_.erase(window_it); } else { // Set an ARC session id to find the restore window id based on the new // created ARC task id in FullRestoreReadHandler. int32_t arc_session_id = ::full_restore::FullRestoreReadHandler::GetInstance() ->GetArcSessionId(); window_info->window_id = arc_session_id; ::full_restore::FullRestoreReadHandler::GetInstance() ->SetArcSessionIdForWindowId(arc_session_id, window_id); window_id_to_session_id_[window_id] = arc_session_id; } if (data_it->second->intent.has_value()) { proxy->LaunchAppWithIntent(app_id, data_it->second->event_flag.value(), std::move(data_it->second->intent.value()), apps::mojom::LaunchSource::kFromFullRestore, std::move(window_info)); } else { proxy->Launch(app_id, data_it->second->event_flag.value(), apps::mojom::LaunchSource::kFromFullRestore, std::move(window_info)); } if (!HasRestoreData()) StopRestore(); } void ArcAppLaunchHandler::RemoveWindowsForApp(const std::string& app_id) { app_ids_.erase(app_id); std::vector<int32_t> window_stacks; for (auto& it : windows_) { if (it.second.app_id == app_id) window_stacks.push_back(it.first); } for (auto window_stack : window_stacks) windows_.erase(window_stack); std::vector<std::list<WindowInfo>::iterator> windows; for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (it->app_id == app_id) windows.push_back(it); } for (auto it : windows) no_stack_windows_.erase(it); windows.clear(); for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (it->app_id == app_id) windows.push_back(it); } for (auto it : windows) pending_windows_.erase(it); } void ArcAppLaunchHandler::RemoveWindow(const std::string& app_id, int32_t window_id) { for (auto& it : windows_) { if (it.second.app_id == app_id && it.second.window_id == window_id) { windows_.erase(it.first); return; } } for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (it->app_id == app_id && it->window_id == window_id) { no_stack_windows_.erase(it); return; } } for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (it->app_id == app_id && it->window_id == window_id) { pending_windows_.erase(it); return; } } } void ArcAppLaunchHandler::MaybeReStartTimer(const base::TimeDelta& delay) { DCHECK(app_launch_timer_); // If there is no window to be launched, stop the timer. if (!HasRestoreData()) { StopRestore(); return; } if (current_delay_ == delay) return; // If the delay is changed, restart the timer. if (app_launch_timer_->IsRunning()) app_launch_timer_->Stop(); current_delay_ = delay; app_launch_timer_->Start( FROM_HERE, current_delay_, base::BindRepeating(&ArcAppLaunchHandler::MaybeLaunchApp, weak_ptr_factory_.GetWeakPtr())); } void ArcAppLaunchHandler::StopRestore() { if (app_launch_timer_ && app_launch_timer_->IsRunning()) app_launch_timer_->Stop(); app_launch_timer_.reset(); if (stop_restore_timer_ && stop_restore_timer_->IsRunning()) stop_restore_timer_->Stop(); stop_restore_timer_.reset(); StopCpuUsageCount(); } int ArcAppLaunchHandler::GetCpuUsageRate() { uint64_t idle = 0, sum = 0; for (const auto& tick : cpu_tick_window_) { idle += tick.idle_time; sum += tick.idle_time + tick.used_time; } // Convert to xx% percentage. return sum ? int(100 * (sum - idle) / sum) : 0; } void ArcAppLaunchHandler::StartCpuUsageCount() { cpu_tick_count_timer_.Start( FROM_HERE, base::TimeDelta::FromSeconds(kCpuUsageRefreshIntervalInSeconds), base::BindRepeating(&ArcAppLaunchHandler::UpdateCpuUsage, base::Unretained(this))); } void ArcAppLaunchHandler::StopCpuUsageCount() { cpu_tick_count_timer_.Stop(); } void ArcAppLaunchHandler::UpdateCpuUsage() { probe_service_->ProbeTelemetryInfo( {chromeos::cros_healthd::mojom::ProbeCategoryEnum::kCpu}, base::BindOnce(&ArcAppLaunchHandler::OnCpuUsageUpdated, weak_ptr_factory_.GetWeakPtr())); } void ArcAppLaunchHandler::OnCpuUsageUpdated( chromeos::cros_healthd::mojom::TelemetryInfoPtr info_ptr) { CpuTick tick; // For simplicity, assume that device has only one physical CPU. for (const auto& logical_cpu : info_ptr->cpu_result->get_cpu_info()->physical_cpus[0]->logical_cpus) { tick.idle_time += logical_cpu->idle_time_user_hz; tick.used_time += logical_cpu->user_time_user_hz + logical_cpu->system_time_user_hz; } if (last_cpu_tick_.has_value()) cpu_tick_window_.push_back(tick - last_cpu_tick_.value()); last_cpu_tick_ = tick; // Sliding window for CPU usage count. while (cpu_tick_window_.size() > kCpuUsageCountWindowLength) cpu_tick_window_.pop_front(); } void ArcAppLaunchHandler::OnProbeServiceDisconnect() { probe_service_.reset(); } } // namespace full_restore } // namespace chromeos
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
1ba9c75171bfa31b26dba5edee8d552f59a5a3c2
0d77a0d7f64033ca5e783e59cae53dda0fe5edf8
/test/Scanf_main.cpp
d19006c934e77de936417893d3d5a5fe38d34164
[]
no_license
wulincong/CPP
6bb4a7c740d145bfcda8668904b217083bc6ce0c
91395d734224a860ea161cff92daf22040f223c4
refs/heads/master
2023-04-28T05:54:21.011192
2023-04-22T01:02:24
2023-04-22T01:02:24
215,239,177
0
0
null
null
null
null
UTF-8
C++
false
false
178
cpp
#include "Scanf.h" int main(int argc, char *argv[]){ char ch; FILE *fp = fopen("Test.txt","r"); Scanf(fp, "%c",&ch); printf("%c",ch); return 0; }
[ "2389170337@qq.com" ]
2389170337@qq.com
00cb46bc97de1d19ecfa25b34949dc7884ca9d6f
3f80cc69cbe4ef9764aa55f7d823e6fc70ed77fe
/ISU/ISeeYou/Aflevering5/Lecture5_exercises/Opg3/MsgQueue.h
b92846f92b4ae89a7f157cd0c7771a741014db60
[]
no_license
Epokhz/ISU_Stuffz
6e2836b92c43140d4545ae07a14f5afb10ffa4ae
ebf3a67342c0f4208f008ac5c56b147df7ab00c3
refs/heads/master
2020-05-25T22:55:12.308441
2019-05-22T12:01:31
2019-05-22T12:01:31
188,024,077
0
0
null
null
null
null
UTF-8
C++
false
false
638
h
#include "Message.h" #include <queue> #include <pthread.h> using namespace std; class MsgQueue { public: MsgQueue (unsigned long maxSize); void send (unsigned long id, Message *msg = NULL); Message *receive(unsigned long id); ~MsgQueue(); private: struct Item { unsigned long int id_; Message *msg_; }; queue<Item*> container_; //Message container unsigned long maxSize_; pthread_mutex_t sendMutex_ = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t receiveMutex_ = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t sendCond_ = PTHREAD_COND_INITIALIZER; pthread_cond_t receiveCond_ = PTHREAD_COND_INITIALIZER; }; //hey
[ "au590540@uni.au.dk" ]
au590540@uni.au.dk
00d86a59eac031d9f873d06a4db967779d002dc1
861cd73505de32dfe5f5eb01f62fd36028837331
/MiniCCompiler/MiniCCompiler/util.cpp
285ada4b2b2c384011e97ff22e49ac13d7616475
[]
no_license
clamli/MiniCCompiler
5919685e12f45414ff1bfdd0529993beeca0f671
aa819e0a7a33a568d50306f209c7b28648640119
refs/heads/master
2021-01-18T15:41:05.045332
2017-08-16T09:37:15
2017-08-16T09:37:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
199
cpp
#include <iostream> #include "util.h" using namespace std; void *checked_malloc(int len) { void *p = malloc(len); if (!p) { fprintf(stderr, "\nRan out of memory!\n"); exit(1); } return p; }
[ "873556816@qq.com" ]
873556816@qq.com
80315882fc9781d67d3ace170792b33aab1cccec
6fd96176aba290543f67274d47dfa807a1d3945d
/hangover.cpp
404ed1e6d0eb7cc2f3236a0cac29a11766d2ed09
[]
no_license
phs1116/dovlet_algorithm
6a69d8d032f662a18e679292a8b800ce7421ed23
7f043c9bf6cc9a3d874d43c2816f5a92a61ccaba
refs/heads/master
2021-01-10T06:17:46.362776
2016-03-03T12:16:11
2016-03-03T12:16:11
53,047,872
0
0
null
null
null
null
UTF-8
C++
false
false
167
cpp
#include <iostream> using namespace std; double c,k=1,sum=0; int main(){ cin>>c; while(true){ sum+=1/((k++)+1); if(sum>c) break; } cout<<k-1<<" card(s)"; }
[ "phs1116@gmail.com" ]
phs1116@gmail.com
1f956bd0962526e7ac39cbb7b2714d3fce757ed0
45f2519ef788a2a88b509d913c8eeafafd249661
/textureBMP.cpp
78c5515999b83a86afc4356fa5c8ba563eee9ad9
[]
no_license
ziniewiczp/OpenGL-Escalator
f14b118bad0980c99c935c15fbc7e88af891c874
7934cb2a75e133421f37814e7c7e8378cbfd6b72
refs/heads/master
2021-01-22T08:27:54.290050
2017-06-20T06:24:33
2017-06-20T06:24:33
92,615,921
0
1
null
null
null
null
WINDOWS-1250
C++
false
false
4,346
cpp
/* BMP texture loader © Keith O'Conor 2005 keith.oconor @ {cs.tcd.ie, gmail.com} */ #include "textureBMP.h" #include "glut.h" textureBMP::textureBMP(const char *filename, const int textureId, const bool stereoMode){ byte *fileData; BITMAPFILEHEADER fileHeader; BITMAPINFOHEADER infoHeader; // Open file HANDLE hTextureFile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if(hTextureFile == INVALID_HANDLE_VALUE){ std::cout<<"[BMP] ERROR: Could not open '"<<filename<<"'"<<std::endl; return; } if(GetFileSize(hTextureFile,NULL) == 0){ std::cout<<"[BMP] ERROR: Texture '"<<filename<<"' is empty"<<std::endl; CloseHandle(hTextureFile); return; } // Create file mapping HANDLE hTextureFileMapping = CreateFileMapping(hTextureFile, NULL, PAGE_READONLY, 0, 0, NULL); if(hTextureFileMapping == NULL){ std::cout<<"[TGA] ERROR: Could not map '"<<filename<<"' in memory"<<std::endl; CloseHandle(hTextureFile); return; } fileData = (byte*)MapViewOfFile(hTextureFileMapping, FILE_MAP_READ, 0, 0, 0); // Read BMP header memcpy(&fileHeader, fileData, sizeof(fileHeader)); memcpy(&infoHeader, fileData+sizeof(fileHeader), sizeof(infoHeader)); m_width = infoHeader.biWidth; m_height = infoHeader.biHeight; m_bpp = infoHeader.biBitCount; // We only support uncompressed 24 or 32 bits per pixel BMPs if(infoHeader.biCompression != BI_RGB || fileHeader.bfType != 19778){ std::cout<<"[BMP] ERROR: '"<<filename<<"' is an texture invalid format\n[BMP] ERROR: It should be an uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; } if(m_bpp != 32 && m_bpp != 24){ std::cout<<"[BMP] ERROR: Invalid texture color depth, '"<<filename<<"' must be uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; } // Determine format int fileFormat, internalFormat; switch(m_bpp){ case 24:fileFormat = GL_BGR_EXT; internalFormat = GL_RGB; break; case 32:fileFormat = GL_BGRA_EXT; internalFormat = GL_RGBA; break; default: std::cout<<"[BMP] ERROR: Invalid texture color depth, '"<<filename<<"' must be uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; break; } if(stereoMode) glutSetWindow(1); // Bind texture ID to load glBindTexture(GL_TEXTURE_2D, textureId); // Set texture parameters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); // Upload texture to card with bound texture ID gluBuild2DMipmaps(GL_TEXTURE_2D, internalFormat, m_width, m_height, fileFormat, GL_UNSIGNED_BYTE, &fileData[fileHeader.bfOffBits]); if (stereoMode) // rozpakowanie do obydwu kontekstów, gdy stereo { glutSetWindow(2); glBindTexture(GL_TEXTURE_2D, textureId); // Set texture parameters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); // Upload texture to card with bound texture ID gluBuild2DMipmaps(GL_TEXTURE_2D, internalFormat, m_width, m_height, fileFormat, GL_UNSIGNED_BYTE, &fileData[fileHeader.bfOffBits]); } // Texture's uploaded, don't need data any more UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); std::cout<<"[BMP] Texture '"<<filename<<"' loaded"<<std::endl; }
[ "ziniewicz.p@gmail.com" ]
ziniewicz.p@gmail.com