blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5a2e09aa7802460c5a287125675196d62d1ad396
|
60a15a584b00895e47628c5a485bd1f14cfeebbe
|
/comps/misc/Stage/StatusPane.cpp
|
c8c5fc79c430c696c391e188ed3756fe671f15c6
|
[] |
no_license
|
fcccode/vt5
|
ce4c1d8fe819715f2580586c8113cfedf2ab44ac
|
c88049949ebb999304f0fc7648f3d03f6501c65b
|
refs/heads/master
| 2020-09-27T22:56:55.348501
| 2019-06-17T20:39:46
| 2019-06-17T20:39:46
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,138
|
cpp
|
StatusPane.cpp
|
#include "StdAfx.h"
#include "StatusPane.h"
#include "core5.h"
#include "statusint.h"
#include "misc_utils.h"
#include <stdio.h>
#include <commctrl.h>
#include "PaintDC.h"
// {61EC9436-676B-4a3a-904D-FAE45321447B}
static const GUID guidPaneFocus =
{ 0x61ec9436, 0x676b, 0x4a3a, { 0x90, 0x4d, 0xfa, 0xe4, 0x53, 0x21, 0x44, 0x7b } };
INewStatusBarPtr StatusGetBar()
{
IApplicationPtr ptrApp( GetAppUnknown() );
IUnknown *punkStatus = 0;
ptrApp->GetStatusBar( &punkStatus );
if( !punkStatus )return 0;
INewStatusBarPtr ptrStatus( punkStatus );
punkStatus->Release();
return ptrStatus;
}
bool SetFocusIndicator(bool bAuto, int nFocus)
{
//serg
VTMessageBox("SetFocusIndicator", "VT5", MB_OK);
//
INewStatusBarPtr ptrStatus(::StatusGetBar());
if (ptrStatus == 0) // Not status bar
return false;
IWindowPtr ptrWndStat(ptrStatus); // Status bar's window handle will be useful
HWND hwndStat;
ptrWndStat->GetHandle((HANDLE *)&hwndStat);
long nID;
ptrStatus->GetPaneID(guidPaneFocus, &nID);
if (nID < 0) // No pane
{
CStatusPaneFocus *pPane = new CStatusPaneFocus;
pPane->CreateWnd(hwndStat, NORECT, WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS, -1);
ptrStatus->AddPane(guidPaneFocus, 60, pPane->hwnd(), 0);
ptrStatus->GetPaneID(guidPaneFocus, &nID); // No will be found
}
char szBuff[50];
_itoa(nFocus, szBuff, 10);
::SendMessage(hwndStat, SB_SETTEXT, nID, (LPARAM)szBuff);
return true;
}
bool RemoveFocusIndicator()
{
INewStatusBarPtr ptrStatus(::StatusGetBar());
if (ptrStatus == 0) // Not status bar
return false;
IWindowPtr ptrWndStat(ptrStatus); // Status bar's window handle will be useful
HWND hwndStat;
ptrWndStat->GetHandle((HANDLE *)&hwndStat);
long nID;
ptrStatus->GetPaneID(guidPaneFocus, &nID);
if (nID >= 0)
ptrStatus->RemovePane(guidPaneFocus);
return true;
}
IUnknown *CStatusPaneFocus::DoGetInterface( const IID &iid )
{
if (iid == IID_IStatusPane)
return (IStatusPane *)this;
else if (iid == IID_IWindow || iid == IID_IWindow2)
return (IWindow2 *)this;
else if (iid == IID_INamedObject2)
return (INamedObject2 *)this;
else if (iid == IID_IFocusPane)
return (IFocusPane *)this;
else
return ComObjectBase::DoGetInterface(iid);
}
const int nMarg = 1;
const int nMarg1 = 1;
const int nWidth = 10;
void CStatusPaneFocus::DoPaint()
{
char szBuf[256];
_itoa(m_nFocus,szBuf,10);
// Draw solid background
paint_dc dc(hwnd());
RECT rcClient;
GetClientRect(hwnd(), &rcClient);
HWND nwndParent = GetParent(hwnd());
HBRUSH br1 = (HBRUSH)SendMessage(nwndParent, WM_CTLCOLORSTATIC, (WPARAM)dc.hdc, (LPARAM)hwnd());
if (!br1) br1 = ::GetSysColorBrush(COLOR_3DFACE);
::FillRect(dc.hdc, &rcClient, br1);
// Now draw text
_rect rc2(rcClient.left+nWidth+2*nMarg, rcClient.top+nMarg, rcClient.right-nMarg,
rcClient.bottom-nMarg);
int nMode = SetBkMode(dc.hdc,TRANSPARENT);
HWND hwndParent = GetParent(hwnd());
HFONT ftprev = (HFONT)::SelectObject(dc.hdc, m_ft?m_ft:(HFONT)::GetStockObject(DEFAULT_GUI_FONT));
::DrawText(dc.hdc, szBuf+1,-1,&rc2,DT_SINGLELINE|DT_LEFT|DT_TOP);
::SelectObject(dc.hdc, ftprev);
SetBkMode(dc.hdc, nMode);
}
HRESULT CStatusPaneFocus::GetWidth(int *pWidth)
{
if(pWidth)
*pWidth = 10;
return S_OK;
}
HRESULT CStatusPaneFocus::GetSide(DWORD *pdwSide)
{
if(pdwSide)
*pdwSide = psRight;
return S_OK;
}
LRESULT CStatusPaneFocus::DoMessage( UINT nMsg, WPARAM wParam, LPARAM lParam )
{
if (nMsg == WM_CREATE)
{
LRESULT r = CWinImpl::DoMessage(nMsg,wParam,lParam);
m_nTimer = SetTimer(hwnd(), 1, 1000, NULL);
return r;
}
else if (nMsg == WM_SETFONT)
{
m_ft = (HFONT)wParam;
return 0;
}
else if (nMsg == WM_TIMER)
{
return 0;
}
else if (nMsg == WM_DESTROY)
{
KillTimer(hwnd(), m_nTimer);
LRESULT lr = CWinImpl::DoMessage(nMsg,wParam,lParam);
delete this;
return lr;
}
else
return CWinImpl::DoMessage(nMsg,wParam,lParam);
}
HRESULT CStatusPaneFocus::SetFocusIndicator(bool bAuto, int nFocus)
{
m_bAuto = bAuto;
m_nFocus = nFocus;
return S_OK;
}
HRESULT CStatusPaneFocus::GetFocusIndicator(bool *pbAuto, int *pnFocus)
{
if (pbAuto) *pbAuto = m_bAuto;
if (pnFocus) *pnFocus = m_nFocus;
return S_OK;
}
|
f819693f022862c9301cf5459ca078216bbad435
|
d315aba79615f8efbc3329f89278f5df46eaa91c
|
/srcs/Star1.cpp
|
9f37a3c1cc2849fbfd600474e672bdccb2c7f60f
|
[] |
no_license
|
lnicosia/ft_retro
|
5de5393fb2558511116526a99ed0f57c025d0e18
|
2ea67b965bfd4f60eee2c58aa90308828cde804e
|
refs/heads/master
| 2020-08-20T06:16:35.026552
| 2020-06-25T12:12:15
| 2020-06-25T12:12:15
| 215,990,662
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,281
|
cpp
|
Star1.cpp
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Star1.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ldedier <ldedier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/20 21:18:27 by ldedier #+# #+# */
/* Updated: 2019/10/20 21:18:44 by ldedier ### ########.fr */
/* */
/* ************************************************************************** */
#include "Star1.hpp"
#include "Game.hpp"
Star1::Star1(void)
{
}
Star1::Star1(Vec2 pos, Vec2 dir, Blueprint *blueprint): BackgroundEntity(pos, dir, blueprint)
{
}
Star1::Star1(Star1 const &instance)
{
*this = instance;
}
Star1::~Star1(void)
{
}
Star1 & Star1::operator=(Star1 const &rhs)
{
(void)rhs;
return *this;
}
int Star1::getColor(void) const
{
return (COLOR_WHITE);
}
|
75d4a636ee896e575a7a8d5ea4aad5a0ac0437ec
|
efe9b015f3e45e8df7a457d39292a6a31afb23ec
|
/mlir/include/mlir/Dialect/X86Vector/Transforms.h
|
66749d55d594d983ee7dcbfc036aa1a6ec7ff687
|
[
"LLVM-exception",
"Apache-2.0"
] |
permissive
|
open-dotnet/llvm-project
|
3c8cd67ed2501630f46e2ff574d6a8a4e977e92c
|
b72b56016a6b586a22a49f145c924c03e4239b1d
|
refs/heads/main
| 2023-09-05T18:23:30.802715
| 2021-11-22T02:14:30
| 2021-11-22T02:16:02
| 430,545,862
| 1
| 0
| null | 2021-11-22T03:09:22
| 2021-11-22T03:09:22
| null |
UTF-8
|
C++
| false
| false
| 5,463
|
h
|
Transforms.h
|
//=- Transforms.h - X86Vector Dialect Transformation Entrypoints -*- C++ -*-=//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_DIALECT_X86VECTOR_TRANSFORMS_H
#define MLIR_DIALECT_X86VECTOR_TRANSFORMS_H
#include "mlir/IR/Value.h"
namespace mlir {
class ImplicitLocOpBuilder;
class LLVMConversionTarget;
class LLVMTypeConverter;
class RewritePatternSet;
using OwningRewritePatternList = RewritePatternSet;
namespace x86vector {
/// Helper class to factor out the creation and extraction of masks from nibs.
struct MaskHelper {
/// b01 captures the lower 2 bits, b67 captures the higher 2 bits.
/// Meant to be used with instructions such as mm256ShufflePs.
template <unsigned b67, unsigned b45, unsigned b23, unsigned b01>
static int8_t shuffle() {
static_assert(b01 <= 0x03, "overflow");
static_assert(b23 <= 0x03, "overflow");
static_assert(b45 <= 0x03, "overflow");
static_assert(b67 <= 0x03, "overflow");
return static_cast<int8_t>((b67 << 6) | (b45 << 4) | (b23 << 2) | b01);
}
/// b01 captures the lower 2 bits, b67 captures the higher 2 bits.
static void extractShuffle(int8_t mask, int8_t &b01, int8_t &b23, int8_t &b45,
int8_t &b67) {
b67 = (mask & (0x03 << 6)) >> 6;
b45 = (mask & (0x03 << 4)) >> 4;
b23 = (mask & (0x03 << 2)) >> 2;
b01 = mask & 0x03;
}
/// b03 captures the lower 4 bits, b47 captures the higher 4 bits.
/// Meant to be used with instructions such as mm256Permute2f128Ps.
template <unsigned b47, unsigned b03>
static int8_t permute() {
static_assert(b03 <= 0x0f, "overflow");
static_assert(b47 <= 0x0f, "overflow");
return static_cast<int8_t>((b47 << 4) + b03);
}
/// b03 captures the lower 4 bits, b47 captures the higher 4 bits.
static void extractPermute(int8_t mask, int8_t &b03, int8_t &b47) {
b47 = (mask & (0x0f << 4)) >> 4;
b03 = mask & 0x0f;
}
};
//===----------------------------------------------------------------------===//
/// Helpers extracted from:
/// - clang/lib/Headers/avxintrin.h
/// - clang/test/CodeGen/X86/avx-builtins.c
/// - clang/test/CodeGen/X86/avx2-builtins.c
/// - clang/test/CodeGen/X86/avx-shuffle-builtins.c
/// as well as the Intel Intrinsics Guide
/// (https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html)
/// make it easier to just implement known good lowerings.
/// All intrinsics correspond 1-1 to the Intel definition.
//===----------------------------------------------------------------------===//
namespace avx2 {
/// Lower to vector.shuffle v1, v2, [0, 8, 1, 9, 4, 12, 5, 13].
Value mm256UnpackLoPs(ImplicitLocOpBuilder &b, Value v1, Value v2);
/// Lower to vector.shuffle v1, v2, [0, 8, 1, 9, 4, 12, 5, 13].
Value mm256UnpackHiPs(ImplicitLocOpBuilder &b, Value v1, Value v2);
/// a a b b a a b b
/// Take an 8 bit mask, 2 bit for each position of a[0, 3) **and** b[0, 4):
/// 0:127 | 128:255
/// b01 b23 C8 D8 | b01+4 b23+4 C8+4 D8+4
Value mm256ShufflePs(ImplicitLocOpBuilder &b, Value v1, Value v2, int8_t mask);
// imm[0:1] out of imm[0:3] is:
// 0 1 2 3
// a[0:127] or a[128:255] or b[0:127] or b[128:255] |
// a[0:127] or a[128:255] or b[0:127] or b[128:255]
// 0 1 2 3
// imm[0:1] out of imm[4:7].
Value mm256Permute2f128Ps(ImplicitLocOpBuilder &b, Value v1, Value v2,
int8_t mask);
/// 4x8xf32-specific AVX2 transpose lowering.
void transpose4x8xf32(ImplicitLocOpBuilder &ib, MutableArrayRef<Value> vs);
/// 8x8xf32-specific AVX2 transpose lowering.
void transpose8x8xf32(ImplicitLocOpBuilder &ib, MutableArrayRef<Value> vs);
/// Structure to control the behavior of specialized AVX2 transpose lowering.
struct TransposeLoweringOptions {
bool lower4x8xf32_ = false;
TransposeLoweringOptions &lower4x8xf32(bool lower = true) {
lower4x8xf32_ = lower;
return *this;
}
bool lower8x8xf32_ = false;
TransposeLoweringOptions &lower8x8xf32(bool lower = true) {
lower8x8xf32_ = lower;
return *this;
}
};
/// Options for controlling specialized AVX2 lowerings.
struct LoweringOptions {
/// Configure specialized vector lowerings.
TransposeLoweringOptions transposeOptions;
LoweringOptions &setTransposeOptions(TransposeLoweringOptions options) {
transposeOptions = options;
return *this;
}
};
/// Insert specialized transpose lowering patterns.
void populateSpecializedTransposeLoweringPatterns(
RewritePatternSet &patterns, LoweringOptions options = LoweringOptions(),
int benefit = 10);
} // namespace avx2
} // namespace x86vector
/// Collect a set of patterns to lower X86Vector ops to ops that map to LLVM
/// intrinsics.
void populateX86VectorLegalizeForLLVMExportPatterns(
LLVMTypeConverter &converter, RewritePatternSet &patterns);
/// Configure the target to support lowering X86Vector ops to ops that map to
/// LLVM intrinsics.
void configureX86VectorLegalizeForExportTarget(LLVMConversionTarget &target);
} // namespace mlir
#endif // MLIR_DIALECT_X86VECTOR_TRANSFORMS_H
|
96d9443f49728328049ce82e36fdfbb4fc185480
|
401a27fa7a2b1c1d568f10e26fe37ef3b598e6ad
|
/Train Tracks/MarkedGraph.cpp
|
21afa98f197827ff3e9754b3e2138a0cd1d8b620
|
[] |
no_license
|
AlexLowen/Train-Tracks
|
19b874b963df422102f8e8c3f9db6c9f2b91f88e
|
9dbadd53780961be03944b49ad38dd43fc74e19c
|
refs/heads/master
| 2020-04-10T14:57:13.414911
| 2019-01-10T01:24:21
| 2019-01-10T01:24:21
| 161,092,498
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,097
|
cpp
|
MarkedGraph.cpp
|
//
// MarkedGraph.cpp
// Train Tracks
//
// Created by Alex Lowen on 12/30/18.
// Copyright © 2018 Alex Lowen. All rights reserved.
//
#include "MarkedGraph.hpp"
#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <cstdlib>
int CharToInt(const char ch){
char letter='a';
return static_cast<int>(ch-letter+1);
}
std::string IntToChar(const int n) {
std::string ret;
char letter='a';
if(n>0) {
ret+=(letter+n-1);
}
else {
ret+='-';
ret+=(letter-n-1);
}
return ret;
}
MarkedGraph::MarkedGraph(std::vector<std::string>* graph, size_t edg_cnt) {
Graph=new std::vector<std::set<int>>;
Graph->resize(graph->size());
for(size_t vertex=0; vertex < graph->size(); vertex++) {
for(size_t i=0; i<graph->at(vertex).size(); i++) {
if(graph->at(vertex).at(i)=='-') {
Graph->at(vertex).insert(-CharToInt((graph->at(vertex).at(++i))));
}
else Graph->at(vertex).insert(CharToInt(graph->at(vertex).at(i)));
}
}
edge_count=edg_cnt;
}
MarkedGraph::MarkedGraph(MarkedGraph* graph){
this->Graph=graph->Graph;
this->edge_count=graph->edge_count;
}
MarkedGraph partial_fold(MarkedGraph graph, std::pair<int,int> turn) {
for(size_t init_vertex=0; init_vertex<graph.Graph->size(); init_vertex++) {
if(graph.Graph->at(init_vertex).count(turn.first) && !graph.Graph->at(init_vertex).count(turn.second)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.second) && !graph.Graph->at(init_vertex).count(turn.first)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.first) && graph.Graph->at(init_vertex).count(turn.second)) {
MarkedGraph quotient_graph=graph;
quotient_graph.edge_count++;
int new_edge=static_cast<int>(quotient_graph.edge_count);
int new_vertex_temp[]={turn.first, turn.second, -new_edge};
std::set<int> new_vertex (new_vertex_temp,new_vertex_temp+3);
quotient_graph.Graph->push_back(std::set<int>(new_vertex));
quotient_graph.Graph->at(init_vertex).erase(turn.first);
quotient_graph.Graph->at(init_vertex).erase(turn.second);
quotient_graph.Graph->at(init_vertex).insert(new_edge);
return quotient_graph;
}
}
return graph;
}
MarkedGraph right_improper_full_fold(MarkedGraph graph, std::pair<int,int> turn) {
for(size_t init_vertex=0; init_vertex<graph.Graph->size(); init_vertex++) {
//folding over a loop is a homeomorphism up to homotopy.
if(graph.Graph->at(init_vertex).count(turn.second) && graph.Graph->at(init_vertex).count(-turn.second)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.first) && !graph.Graph->at(init_vertex).count(turn.second)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.second) && !graph.Graph->at(init_vertex).count(turn.first)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.first) && graph.Graph->at(init_vertex).count(turn.second)) {
MarkedGraph quotient_graph=graph;
for(size_t term_vertex=0; term_vertex<graph.Graph->size(); term_vertex++) {
if(graph.Graph->at(term_vertex).count(-turn.second)) {
quotient_graph.Graph->at(term_vertex).insert(turn.first);
quotient_graph.Graph->at(init_vertex).erase(turn.first);
return quotient_graph;
}
}
}
}
return graph;
}
MarkedGraph left_improper_full_fold(MarkedGraph graph, std::pair<int,int> turn) {
for(size_t init_vertex=0; init_vertex<graph.Graph->size(); init_vertex++) {
//folding over a loop is a homeomorphism up to homotopy.
if(graph.Graph->at(init_vertex).count(turn.first) && graph.Graph->at(init_vertex).count(-turn.first)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.second) && !graph.Graph->at(init_vertex).count(turn.first)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.first) && !graph.Graph->at(init_vertex).count(turn.second)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.second) && graph.Graph->at(init_vertex).count(turn.first)) {
MarkedGraph quotient_graph=graph;
for(size_t term_vertex=0; term_vertex<graph.Graph->size(); term_vertex++) {
if(graph.Graph->at(term_vertex).count(-turn.first)) {
quotient_graph.Graph->at(term_vertex).insert(turn.second);
quotient_graph.Graph->at(init_vertex).erase(turn.second);
return quotient_graph;
}
}
}
}
return graph;
}
MarkedGraph proper_full_fold(MarkedGraph graph, std::pair<int,int> turn) {
for(size_t init_vertex=0; init_vertex<graph.Graph->size(); init_vertex++) {
if(graph.Graph->at(init_vertex).count(turn.second) && !graph.Graph->at(init_vertex).count(turn.first)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.first) && !graph.Graph->at(init_vertex).count(turn.second)) {
return graph;
}
if(graph.Graph->at(init_vertex).count(turn.second) && graph.Graph->at(init_vertex).count(turn.first)) {
if(graph.Graph->at(init_vertex).count(-turn.first) && graph.Graph->at(init_vertex).count(-turn.second)) {
for(size_t del_vertex=0; del_vertex<graph.Graph->size(); del_vertex++) {
if(graph.Graph->at(del_vertex).count(-turn.second)) {
MarkedGraph quotient_graph=graph;
quotient_graph.edge_count--;
for(std::set<int>::iterator copy=graph.Graph->at(del_vertex).begin(); copy!=graph.Graph->at(del_vertex).end(); copy++) {
quotient_graph.Graph->at(init_vertex).insert(*copy);
}
//slick way to delete
quotient_graph.Graph->at(init_vertex).erase(turn.second);
quotient_graph.Graph->at(init_vertex).erase(-turn.second);
quotient_graph.Graph->at(del_vertex)=graph.Graph->at(graph.Graph->size()-1);
quotient_graph.Graph->pop_back();
return quotient_graph;
}
}
}
if(graph.Graph->at(init_vertex).count(-turn.first)) {
for(size_t del_vertex=0; del_vertex<graph.Graph->size(); del_vertex++) {
if(graph.Graph->at(del_vertex).count(-turn.second)) {
MarkedGraph quotient_graph=graph;
quotient_graph.edge_count--;
for(std::set<int>::iterator copy=graph.Graph->at(del_vertex).begin(); copy!=graph.Graph->at(del_vertex).end(); copy++) {
quotient_graph.Graph->at(init_vertex).insert(*copy);
}
//slick way to delete
quotient_graph.Graph->at(init_vertex).erase(turn.second);
quotient_graph.Graph->at(init_vertex).erase(-turn.second);
quotient_graph.Graph->at(del_vertex)=graph.Graph->at(graph.Graph->size()-1);
quotient_graph.Graph->pop_back();
return quotient_graph;
}
}
}
if(graph.Graph->at(init_vertex).count(-turn.second)) {
for(size_t del_vertex=0; del_vertex<graph.Graph->size(); del_vertex++) {
if(graph.Graph->at(del_vertex).count(-turn.first)) {
MarkedGraph quotient_graph=graph;
quotient_graph.edge_count--;
for(std::set<int>::iterator copy=graph.Graph->at(del_vertex).begin(); copy!=graph.Graph->at(del_vertex).end(); copy++) {
quotient_graph.Graph->at(init_vertex).insert(*copy);
}
//slick way to delete
quotient_graph.Graph->at(init_vertex).erase(turn.first);
quotient_graph.Graph->at(init_vertex).erase(-turn.first);
quotient_graph.Graph->at(del_vertex)=graph.Graph->at(graph.Graph->size()-1);
quotient_graph.Graph->pop_back();
return quotient_graph;
}
}
}
if(!graph.Graph->at(init_vertex).count(-turn.first) && !graph.Graph->at(init_vertex).count(-turn.second)) {
for(size_t del_vertex=0; del_vertex<graph.Graph->size(); del_vertex++) {
if(graph.Graph->at(del_vertex).count(-turn.second)) {
MarkedGraph quotient_graph=graph;
quotient_graph.edge_count--;
size_t term_vertex=0;
while(!graph.Graph->at(term_vertex).count(-turn.first)) term_vertex++;
for(std::set<int>::iterator copy=graph.Graph->at(del_vertex).begin(); copy!=graph.Graph->at(del_vertex).end(); copy++) {
quotient_graph.Graph->at(term_vertex).insert(*copy);
}
//slick way to delete
quotient_graph.Graph->at(init_vertex).erase(turn.second);
quotient_graph.Graph->at(term_vertex).erase(-turn.second);
quotient_graph.Graph->at(del_vertex)=graph.Graph->at(graph.Graph->size()-1);
quotient_graph.Graph->pop_back();
return quotient_graph;
}
}
}
}
}
return graph;
}
void MarkedGraph::DisplayMarkedGraph(){
std::cout<<std::endl;
std::cout<<std::endl;
for(size_t vertex=0; vertex<Graph->size(); vertex++) {
std::cout<<"vertex v"<<vertex<<": ";
for(std::set<int>::iterator edge=Graph->at(vertex).begin(); edge!=Graph->at(vertex).end(); edge++) {
std::cout<<IntToChar(*edge)<<' ';
}
std::cout<<std::endl;
}
std::cout<<std::endl;
}
/*
for(size_t term_vertex=0; term_vertex<graph.Graph->size(); term_vertex++) {
if(graph.Graph->at(term_vertex).count(-turn.first) && !graph.Graph->at(term_vertex).count(-turn.second)) {
}
if(graph.Graph->at(term_vertex).count(-turn.second) && !graph.Graph->at(term_vertex).count(-turn.first)) {
}
if(graph.Graph->at(term_vertex).count(-turn.first) && graph.Graph->at(term_vertex).count(-turn.second)) {
}
}
*/
|
b8e43fb7218c4f1248c9b0542202f8cd219beb10
|
c85295cb8442553223786375db41ce1dc0d0d27d
|
/desktop/report-detection.cpp
|
bd9221c836db2853db304cc4e8fc41e31c7b5cb2
|
[
"MIT"
] |
permissive
|
hrabalik/fmo-cpp
|
8769b70a5a69f06a89146ccfbaf5fb28e4eaabb1
|
658545f0cf015a13ab16950f17027e622c87e5fb
|
refs/heads/master
| 2021-06-17T11:33:23.675346
| 2017-05-30T09:59:23
| 2017-05-30T09:59:23
| 86,446,432
| 3
| 4
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,497
|
cpp
|
report-detection.cpp
|
#include "report.hpp"
namespace {
const char* space[4] = {" ", " ", " ", " "};
}
// DetectionReport
DetectionReport::DetectionReport(const std::string& directory, const Date& date)
: mOut(fileName(directory, date), std::ios_base::out | std::ios_base::binary) {
if (!mOut) {
std::cerr << "failed to open '" << fileName(directory, date) << "'\n";
throw std::runtime_error("failed to open detection report file for writing");
}
mOut << "<?xml version=\"1.0\" ?>\n";
mOut << "<run>\n";
mOut << space[0] << "<date>" << date.preciseStamp() << "</date>\n";
}
DetectionReport::~DetectionReport() { mOut << "</run>\n"; }
std::unique_ptr<DetectionReport::Sequence> DetectionReport::makeSequence(const std::string& input) {
return std::make_unique<Sequence>(*this, input);
}
std::string DetectionReport::fileName(const std::string& directory, const Date& date) {
return directory + '/' + date.fileNameSafeStamp() + ".xml";
}
// DetectionReport::Sequence
DetectionReport::Sequence::Sequence(DetectionReport& aMe, const std::string& input) : me(&aMe) {
me->mOut << space[0] << "<sequence input=\"" << input << "\">\n";
}
DetectionReport::Sequence::~Sequence() { me->mOut << space[0] << "</sequence>\n"; }
void DetectionReport::Sequence::writeFrame(int frameNum, const fmo::Algorithm::Output& algOut,
const EvalResult& evalRes) {
if (algOut.detections.empty()) return;
me->mOut << space[1] << "<frame num=\"" << frameNum << "\">\n";
for (size_t i = 0; i < algOut.detections.size(); i++) {
auto& detection = *algOut.detections[i];
if (detection.object.haveId()) {
me->mOut << space[2] << "<detection id=\"" << detection.object.id << "\">\n";
} else {
me->mOut << space[2] << "<detection>\n";
}
if (detection.predecessor.haveId()) {
me->mOut << space[3] << "<predecessor>" << detection.predecessor.id
<< "</predecessor>\n";
}
if (detection.object.haveCenter()) {
me->mOut << space[3] << "<center x=\"" << detection.object.center.x << "\" y=\""
<< detection.object.center.y << "\"/>\n";
}
if (detection.object.haveDirection()) {
me->mOut << space[3] << "<direction x=\"" << detection.object.direction[0] << "\" y=\""
<< detection.object.direction[1] << "\"/>\n";
}
if (detection.object.haveLength()) {
me->mOut << space[3] << "<length unit=\"px\">" << detection.object.length
<< "</length>\n";
}
if (detection.object.haveRadius()) {
me->mOut << space[3] << "<radius unit=\"px\">" << detection.object.radius
<< "</radius>\n";
}
if (detection.object.haveVelocity()) {
me->mOut << space[3] << "<velocity unit=\"px/frame\">" << detection.object.velocity
<< "</velocity>\n";
}
if (evalRes.iouDt.size() > i) {
me->mOut << space[3] << "<iou>" << evalRes.iouDt[i] << "</iou>\n";
}
me->mOut << space[3] << "<points>";
detection.getPoints(me->mPointsCache);
for (fmo::Pos p : me->mPointsCache) { me->mOut << p.x << ' ' << p.y << ' '; }
me->mOut << "</points>\n";
me->mOut << space[2] << "</detection>\n";
}
me->mOut << space[1] << "</frame>\n";
}
|
c2d4006d650b21f91dcdf3d433757706c0de12e7
|
e7729dfd11a0257b00e3b826baa9f9f9c3689f3e
|
/DynamicProgramming/smallest_subset_with_or.cpp
|
a267551c46960ed58c888707dbfcb923fa8a5462
|
[] |
no_license
|
abhishek0508/cp-algo
|
a430dd3b3070b8e44498274114167b489056467e
|
f4c7ebe79efa97488c5fe94a60baf045debf248e
|
refs/heads/master
| 2023-04-16T06:29:07.397171
| 2021-04-28T04:58:06
| 2021-04-28T04:58:06
| 296,024,269
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 663
|
cpp
|
smallest_subset_with_or.cpp
|
int helper(int pos, vector<int> nums, int curr_or, int target){
if(pos>=nums.size()){
return 0;
}
if(curr_or == target){
return 1;
}
if(dp[pos][curr_or]!=-1){
return dp[pos][curr_or];
}
int ans1 = INT_MAX, ans2 = INT_MAX;
ans1 = min(ans1,helper(pos+1,nums,curr_or,target));
ans2 = min(ans2,1+helper(pos+1,nums,curr_or|nums[pos],target));
dp[pos][curr_or] = min(ans1,ans2);
return dp[pos][curr_or];
}
vector<int> fun(vector<int> nums){
int target_or = nums[0];
for(int i=1;i<nums.size();i++){
target_or = target_or | nums[i];
}
return helper(0,nums,0,target);
}
|
fad1022569c7d5980f851a8f9d48864ea8ef0448
|
462350b609f463d773e60e066797a1adaccdf8f4
|
/acm/HDU/2010.cpp
|
365d5f37f01fcdaecd1f65f13414eb79fcf2c320
|
[] |
no_license
|
lifuxianoa/Mystudy
|
058bd860ada31c34adf9a206f920c7b635494cfd
|
bb48a6194aec888bef5115ac0b2779e846056bc0
|
refs/heads/master
| 2016-09-08T06:07:36.356120
| 2013-10-09T07:41:59
| 2013-10-09T07:41:59
| 2,487,974
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 720
|
cpp
|
2010.cpp
|
/*
* 1000.cpp
*
* Created on: 2013-8-26
* Author: Administrator
*/
#include <stdio.h>
bool isFlower(int n)
{
int sum = 0;
int digit = 0;
int num = n;
while(n > 0)
{
digit = n % 10;
n /= 10;
sum += digit * digit * digit;
}
if (sum == num)
{
return true;
}
else
{
return false;
}
}
int main()
{
freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
int m, n;
while(scanf("%d %d", &m, &n) != EOF)
{
bool flagHas = false;
for (int i = m; i <= n; ++i) {
if (isFlower(i)) {
if (flagHas) {
printf(" ");
}
flagHas = true;
printf("%d", i);
}
}
if (!flagHas) {
printf("no");
}
printf("\n");
}
fclose(stdin);
//fclose(stdout);
}
|
c8563a93041773138acb543ec1584bab430cecbd
|
b1ab8a527094dc8a5f212748a5261d74e4e79f7b
|
/实验代码/汇编5-2.cpp
|
96aa7c610c2eeda20997eac5bf2d5b58a8eb6eb1
|
[] |
no_license
|
zoubs/AssemblyLanguage
|
6a394942fc669d5bb9f5acb0744ad21b5068665f
|
bc254f2c646e1dce4cedc431730e93d9eb638f65
|
refs/heads/main
| 2023-01-13T11:11:45.708536
| 2020-11-18T05:52:52
| 2020-11-18T05:52:52
| 313,835,510
| 2
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 959
|
cpp
|
汇编5-2.cpp
|
#include <stdio.h>
#include <string.h>
#define MAX 100
int count(int type, int& m, int &n)
{
if (type == 0)
{
m++;
}
else if (type == 1)
{
n++;
}
return 0;
}
int number(char ch) //a为当前字符,判断是否为数字
{
if (ch >= '0' && ch <= '9')
{
return 1;
}
else
return 0;
}
int alph(char ch) //a为当前字符,判断是否为字母
{
if (((ch >= 'A') && (ch <= 'Z')) || ((ch >= 'a') && (ch <= 'z')))
{
return 1;
}
else
return 0;
}
int main()
{
char ch[MAX];
int length,i,type,m = 0, n = 0; //type代表类型,m代表数字个数,n代表字母个数
printf("请输入一个字符串:");
scanf_s("%s", ch, MAX);
length = strlen(ch);
for (i = 0; i < length; i++)
{
type = 2;
if (number(ch[i]))
{
type = 0; //说明是数字
}
else if (alph(ch[i]))
{
type = 1; //说明是字母
}
count(type,m,n);
}
printf("数字个数为:%d\n字母个数为:%d", m, n);
return 0;
}
|
6b1cb8625a39bc8d755b43c67ba185ad11a92635
|
3279f5ae1405c6796a3cdcfbb7125b5dfcbc63a6
|
/ColorHSV.hpp
|
e7c470d8a90304b55adeb4c1d667c14769bc656a
|
[
"MIT"
] |
permissive
|
richardboo/Chromatic4cpp
|
1bc0f2c9fc38947c1fdf8aa5cafea9f0b8522e3d
|
31a7e31cd331728ad65280d5d57556c3bd0a8605
|
refs/heads/master
| 2021-01-01T15:42:41.890167
| 2017-02-22T15:40:17
| 2017-02-22T15:40:17
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,702
|
hpp
|
ColorHSV.hpp
|
//
// ColorHSV.hpp
// Playground
//
// Created by Reyn-Mac on 2017/2/18.
// Copyright © 2017年 Reyn-Mac. All rights reserved.
//
#ifndef ColorHSV_hpp
#define ColorHSV_hpp
#include <iostream>
#include "BaseMath.hpp"
#include "BaseTypes.hpp"
using namespace std;
struct RGB;
struct RGBA;
struct CMYK;
struct HSL;
struct HSV {
/* data */
t_hsv_hue h;
t_hsv_saturation s;
t_hsv_value v;
/* constructor */
HSV();
HSV(t_hsv_hue _h, t_hsv_saturation _s, t_hsv_value _v);
HSV(const HSV& hsv);
HSV(const RGB& rgb);
HSV(const RGBA& rgba);
HSV(const CMYK& cmyk);
HSV(const HSL& hsl);
HSV(const string hex);
/* operator */
bool operator == (const HSV& other) const;
bool operator != (const HSV& other) const;
HSV operator + (const float cv);
HSV operator + (const HSV& other);
HSV operator - (const float cv);
HSV operator - (const HSV& other);
HSV operator * (const float scale);
HSV operator * (const HSV& other);
HSV operator / (const float scale);
HSV operator / (const HSV& other);
HSV operator % (const float c);
HSV operator % (const HSV& other);
bool equals(const HSL& other) {
return (*this == other);
}
bool nequals(const HSL& other) {
return (*this != other);
}
HSV add(const float cv) {
return *this + cv;
}
HSV add(const HSV& other) {
return *this + other;
}
HSV add(t_hsv_hue _h, t_hsv_saturation _s, t_hsv_value _v) {
return *this + HSV(_h, _s, _v);
}
HSV sub(const float cv) {
return *this - cv;
}
HSV sub(const HSV& other) {
return *this - other;
}
HSV sub(t_hsv_hue _h, t_hsv_saturation _s, t_hsv_value _v) {
return *this - HSV(_h, _s, _v);
}
HSV scale(float s) {
return (*this) * s;
}
HSV scale(const HSL& other) {
return *this * other;
}
HSV scale(float _h, float _s, float _v) {
h = checkHue(h * _h);
s = checkSaturation(s * _s);
v = checkValue(v * _v);
return *this;
}
HSV divide(float d) {
return (*this) / d;
}
HSV divide(const HSL& other) {
return *this / other;
}
HSV divide(float _h, float _s, float _v) {
h = checkHue(h / _h);
s = checkSaturation(s / _s);
v = checkValue(v / _v);
return *this;
}
HSV mod(float d) {
return (*this) % d;
}
HSV mod(const HSV& other) {
return *this % other;
}
HSV mod(float _h, float _s, float _v) {
h = checkHue(fmod(h, _h));
s = checkSaturation(fmod(s, _s));
v = checkValue(fmod(v, _v));
return *this;
}
/* method */
t_hsv_hue checkHue(t_hsv_hue cv) {
if(cv < HSV::MIN_HUE) return HSV::MIN_HUE;
if(cv > HSV::MAX_HUE) return HSV::MAX_HUE;
return cv;
}
t_hsv_saturation checkSaturation(t_hsv_saturation cv) {
if(cv < HSV::MIN_SATURATION) cv = HSV::MIN_SATURATION;
if(cv > HSV::MAX_SATURATION) cv = HSV::MAX_SATURATION;
return cv;
}
t_hsv_value checkValue(t_hsv_value cv) {
if(cv < HSV::MIN_VALUE) cv = HSV::MIN_VALUE;
if(cv > HSV::MAX_VALUE) cv = HSV::MAX_VALUE;
return cv;
}
HSV clear() {
h = HSV::MIN_HUE;
s = HSV::MIN_SATURATION;
v = HSV::MIN_VALUE;
return *this;
}
HSV dump();
HSV random();
// getter/setter
t_hsv_hue hue() {
return h;
}
HSV hue(t_hsv_hue _h) {
h = checkHue(_h);
return *this;
}
t_hsv_saturation saturation() {
return s;
}
HSV saturation(t_hsv_saturation _s) {
s = checkSaturation(_s);
return *this;
}
t_hsv_value value() {
return v;
}
HSV value(t_hsv_value _v) {
v = checkValue(_v);
return *this;
}
/* convertor */
HSV fromRGB(const RGB& rgb);
HSV fromRGBA(const RGBA& rgba);
HSV fromCMYK(const CMYK& cmyk);
HSV fromHSL(const HSL& hsl);
HSV fromHEX(string hex);
RGB toRGB();
RGBA toRGBA();
CMYK toCMYK();
HSL toHSL();
string toHEX();
/* constants */
static const t_hsv_hue MIN_HUE;
static const t_hsv_hue MID_HUE;
static const t_hsv_hue MAX_HUE;
static const t_hsv_saturation MIN_SATURATION;
static const t_hsv_saturation MID_SATURATION;
static const t_hsv_saturation MAX_SATURATION;
static const t_hsv_value MIN_VALUE;
static const t_hsv_value MID_VALUE;
static const t_hsv_value MAX_VALUE;
};
#endif /* ColorHSV_hpp */
|
26fd8dcf10a5e019ae7b97c2caf7cc9047d5fde6
|
529db0a43f5cd112ea93dcbd85068727795d17f0
|
/Phase-1/Day-8/3-SubwayRunners.cpp
|
2278c2d98762a7f4ab3c289783f273fb5d3ae226
|
[] |
no_license
|
antassinha/Competitive_Coding
|
5252818e7e7204e8b48c64c9a52a39303d97a395
|
5cc3f85325b9f2c28ef7dbdff7e1ca28394c17df
|
refs/heads/master
| 2020-06-16T06:37:49.571971
| 2019-07-06T06:06:14
| 2019-07-06T06:06:14
| 195,503,847
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 916
|
cpp
|
3-SubwayRunners.cpp
|
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int Switch(int ini,int x,int y){
if(x==2 && y==3){
if(ini == 2)
return 3;
else if(ini == 3)
return 2;
else
return ini;
}
if(x==1 && y==2){
if(ini == 2)
return 1;
else if(ini == 1)
return 2;
else
return ini;
}
return -1;
}
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int n, ini;
cin>>n>>ini;
int current =ini;
// checkPath(ini,n);
while(n>0){
if(n%2 == 0){
current=Switch(current,2,3);
}else{
current=Switch(current,1,2);
}
if(current == -1){
cout<<"term";
break;
}
n--;
}
cout<<current;
return 0;
}
|
846ab85d30bd3036ce86d0a61a94055273cf241d
|
d189ae8b44ccbb95ca28a9606a704526086c3994
|
/src/core/splitter.cpp
|
5f8939686b11775f6c9f32007d16a4ab53b736c0
|
[
"MIT"
] |
permissive
|
AlbertoCasasOrtiz/twigy
|
1fa99d1dea13b3093ec0e5653bc12fa54e014d44
|
96cf39f6281cca7961dc045cad1dadaaabb5349e
|
refs/heads/master
| 2022-11-11T14:51:03.815857
| 2020-06-29T18:51:38
| 2020-06-29T18:51:38
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,846
|
cpp
|
splitter.cpp
|
#include "core/splitter.h"
#include <limits>
#include <vector>
#include "core/utils.h"
Splitter::Splitter(const std::vector<std::vector<double>> *feature_data,
const std::vector<int> *label_data, int min_samples_leaf,
ImpurityMeasure impurity_measure, std::size_t max_features,
int n_labels, std::mt19937 *gen,
const std::vector<int> &samples_subset) {
feature_data_ = feature_data;
label_data_ = label_data;
n_features_ = (*feature_data)[0].size();
min_samples_leaf_ = min_samples_leaf;
max_features_ = max_features;
gen_ = gen;
shuffle_features_ = false;
if (max_features_ < (*feature_data)[0].size()) {
shuffle_features_ = true;
}
if (samples_subset.size() == 0) {
n_samples_total_ = (*feature_data).size();
sample_map_.reserve(n_samples_total_);
for (std::size_t i = 0; i < n_samples_total_; i++) {
SampleData sample;
sample.current_feature_value = 0.0;
sample.sample_number = i;
sample_map_.push_back(sample);
}
} else {
n_samples_total_ = samples_subset.size();
sample_map_.reserve(n_samples_total_);
for (std::size_t i = 0; i < n_samples_total_; i++) {
SampleData sample;
sample.current_feature_value = 0.0;
sample.sample_number = samples_subset[i];
sample_map_.push_back(sample);
}
}
criterion_ =
Criterion(impurity_measure, n_labels, feature_data_, label_data_);
for (std::size_t i = 0; i < n_features_; i++) {
feature_order_.emplace_back(i);
}
}
void Splitter::ResetSampleRange(int start, int end) {
// start_ inclusive and end_ exclusive
start_ = start;
end_ = end;
criterion_.SetNodeLimits(start_, end_);
}
void Split::Print() {
std::cout << "Feature: " << feature << std::endl;
std::cout << "Threshold: " << threshold << std::endl;
std::cout << "Split position: " << pos << std::endl;
std::cout << "Impurity left: " << impurity_left << std::endl;
std::cout << "Impurity right: " << impurity_right << std::endl;
}
void Splitter::SplitNode(Split &split) {
Split current_split;
Split best_split;
double current_impurity_improvement =
-std::numeric_limits<double>::infinity();
double best_impurity_improvement = -std::numeric_limits<double>::infinity();
std::size_t current_feature_num = 0;
std::size_t current_feature = 0;
current_split.found_split = false;
if (shuffle_features_) {
std::shuffle(feature_order_.begin(), feature_order_.end(), *gen_);
}
while (current_feature_num < max_features_) {
current_feature = feature_order_[current_feature_num];
current_split.feature = current_feature;
// set current feature values for the samples in the current node
for (int i = start_; i < end_; i++) {
sample_map_[i].current_feature_value =
(*feature_data_)[sample_map_[i].sample_number][current_feature];
}
criterion_.ResetStats();
// sort sample_map by current feature values
std::sort(sample_map_.begin() + start_, sample_map_.begin() + end_,
[](SampleData const &a, SampleData const &b) {
return a.current_feature_value < b.current_feature_value;
});
if (sample_map_[start_].current_feature_value ==
sample_map_[end_ - 1].current_feature_value) {
current_feature_num++;
continue;
}
// loop through possible split positions
int pos = start_ + 1;
// split left [0, pos - 1] right [pos, end_-1]
while (pos < end_) {
// skip criterion evaluation for splits with less that kMinSplitDiff
// difference across split + kMinSplitDiff_
while (pos < end_ &&
sample_map_[pos].current_feature_value <=
sample_map_[pos - 1].current_feature_value + kMinSplitDiff_) {
pos++;
}
if (pos == end_) {
pos++;
continue;
}
// check if split would lead to less than min_samples_leaf samples
if (!((pos - start_) < min_samples_leaf_ ||
((end_ - pos) < min_samples_leaf_))) {
current_split.pos = pos;
criterion_.UpdateSplitPos(current_split.pos);
current_impurity_improvement = criterion_.ImpurityImprovement();
if (current_impurity_improvement > best_impurity_improvement) {
best_impurity_improvement = current_impurity_improvement;
current_split.found_split = true;
current_split.threshold =
(sample_map_[pos - 1].current_feature_value +
sample_map_[pos].current_feature_value) /
2.0;
best_split = current_split;
best_split.left_value = criterion_.label_freqs_left_;
best_split.right_value = criterion_.label_freqs_right_;
}
}
pos++;
}
current_feature_num++;
}
if (current_split.found_split) {
if (best_split.pos < end_) {
if (current_feature != best_split.feature) {
int left_pos = start_;
int right_pos = end_;
int tmp = 0;
while (left_pos < right_pos) {
if ((*feature_data_)[sample_map_[left_pos].sample_number]
[best_split.feature] <= best_split.threshold) {
left_pos++;
} else {
right_pos--;
tmp = sample_map_[left_pos].sample_number;
sample_map_[left_pos].sample_number =
sample_map_[right_pos].sample_number;
sample_map_[right_pos].sample_number = tmp;
}
}
}
}
criterion_.ResetStats();
criterion_.UpdateSplitPos(best_split.pos);
criterion_.ChildrenImpurities(best_split.impurity_left,
best_split.impurity_right);
split = best_split;
} else {
// passing back split.found_split = false
split = current_split;
}
}
|
93302f6bb05e2f55f7bb7de60ebad24152c3b432
|
36c2eec4816c17570b771174dfbff7a81ded3cac
|
/agent/src/main/cpp/bytecode/ConstantInteger.cpp
|
b28b48ebffb39d52e2c836973ed14ed47e66fb00
|
[] |
no_license
|
jakubhava/Distrace
|
a50ca4b8a35a1f35a09aceb438ba40386a0975d8
|
b690d87c5b68f55f166ba6ab7c580617fc5c983b
|
refs/heads/master
| 2020-12-26T04:56:44.592620
| 2018-11-05T14:51:36
| 2018-11-05T14:51:36
| 53,582,673
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 304
|
cpp
|
ConstantInteger.cpp
|
//
// Created by Jakub Háva on 18/10/2016.
//
#include "ConstantInteger.h"
#include "JavaConst.h"
ConstantInteger::ConstantInteger(ByteReader &reader) : ConstantInteger(reader.readInt()){ }
ConstantInteger::ConstantInteger(int bytes) :Constant(JavaConst::CONSTANT_Integer){
this->bytes = bytes;
}
|
5f7e6455072a6fde45de071b674683256ad87a34
|
fa6a6fb34fb61c71bc55daea50e799164711126e
|
/CryGame/STLPORT/test/regression/genern1.cpp
|
579dfdc52740919b1669a8469ff361329b4fad16
|
[
"LicenseRef-scancode-stlport-4.5",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
HackCarver/FunCry
|
3e683309b418b66d4b0baf267ace899b166e48f8
|
e03d420a825a70821e5d964556f3f87a9388d282
|
refs/heads/main
| 2023-08-24T06:43:19.121027
| 2021-10-15T23:42:59
| 2021-10-15T23:42:59
| 377,707,614
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 896
|
cpp
|
genern1.cpp
|
// STLport regression testsuite component.
// To compile as a separate example, please #define MAIN.
#include <vector>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include "fadapter.h"
#ifdef MAIN
#define genern1_test main
#endif
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
using namespace std;
#endif
static int cxxrand() { return rand();}
int genern1_test(int, char**)
{
cout<<"Results of genern1_test:"<<endl;
#ifndef __STL_MEMBER_POINTER_PARAM_BUG //*TY 07/18/98 - added conditional
// since ptr_gen() is not defined under this condition
// (see xfunction.h)
vector <int> v1(10);
generate_n(v1.begin(), v1.size(), ptr_gen(cxxrand));
for(int i = 0; i < 10; i++)
cout << v1[i] << ' ';
cout << endl;
#endif // __STL_MEMBER_POINTER_PARAM_BUG //*TY 07/18/98 - added
return 0;
}
|
f63fcdb9be938c87e692d05aff4fa234e808cdaf
|
e359db0e752a11c5d677e3a82574065831bab447
|
/app/demo/touchgfx_demo2015_480x272_8MB/generated/fonts/src/Table_Asap_Regular_18_4bpp.cpp
|
c5712365e7638c061c56573d8b311df4630e694c
|
[] |
no_license
|
chichtlm/TouchGFX
|
694936495ba49b4baba4fb56fd1165f424518c94
|
09cfdf466ae98fa61f54d55548248134a007871f
|
refs/heads/master
| 2020-05-10T00:07:11.813953
| 2016-12-14T06:55:22
| 2016-12-14T06:55:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,799
|
cpp
|
Table_Asap_Regular_18_4bpp.cpp
|
#include <touchgfx/Font.hpp>
#ifndef NO_USING_NAMESPACE_TOUCHGFX
using namespace touchgfx;
#endif
FONT_LOCATION_FLASH_PRAGMA
KEEP extern const touchgfx::GlyphNode glyphs_Asap_Regular_18_4bpp[] FONT_LOCATION_FLASH_ATTRIBUTE = {
{ 0, 32, 0, 0, 0, 0, 4, 255, 0, 0},
{ 0, 65, 11, 13, 13, 0, 11, 255, 0, 0},
{ 72, 66, 10, 13, 13, 1, 11, 255, 0, 0},
{ 137, 70, 8, 13, 13, 1, 9, 255, 0, 0},
{ 189, 71, 10, 13, 13, 1, 12, 255, 0, 0},
{ 254, 76, 8, 13, 13, 1, 9, 255, 0, 0},
{ 306, 79, 12, 13, 13, 1, 13, 255, 0, 0},
{ 384, 83, 9, 13, 13, 0, 9, 255, 0, 0},
{ 443, 84, 10, 13, 13, 0, 10, 255, 0, 0},
{ 508, 88, 11, 13, 13, 0, 11, 255, 0, 0},
{ 580, 97, 9, 10, 10, 0, 10, 255, 0, 0},
{ 625, 98, 9, 14, 14, 1, 10, 255, 0, 0},
{ 688, 99, 9, 10, 10, 0, 9, 255, 0, 0},
{ 733, 100, 9, 14, 14, 0, 10, 255, 0, 0},
{ 796, 101, 9, 10, 10, 0, 10, 255, 0, 0},
{ 841, 103, 10, 14, 10, 0, 10, 255, 0, 0},
{ 911, 104, 8, 14, 14, 1, 10, 255, 0, 0},
{ 967, 105, 3, 14, 14, 1, 5, 255, 0, 0},
{ 988, 108, 5, 14, 14, 1, 5, 255, 0, 0},
{ 1023, 109, 13, 10, 10, 1, 15, 255, 0, 0},
{ 1088, 110, 8, 10, 10, 1, 10, 255, 0, 0},
{ 1128, 111, 10, 10, 10, 0, 10, 255, 0, 0},
{ 1178, 112, 9, 14, 10, 1, 10, 255, 0, 0},
{ 1241, 114, 6, 10, 10, 1, 7, 255, 0, 0},
{ 1271, 115, 7, 10, 10, 0, 7, 255, 0, 0},
{ 1306, 116, 6, 13, 13, 0, 6, 255, 0, 0},
{ 1345, 117, 8, 10, 10, 1, 10, 255, 0, 0},
{ 1385, 118, 9, 10, 10, 0, 9, 255, 0, 0},
{ 1430, 121, 9, 14, 10, 0, 9, 255, 0, 0}
};
|
3b25d165d9f8a0bca5f4081337a6987bad593a20
|
1e098d4bf546b0c88c5e79d83afeb1aa4e120956
|
/myview.h
|
f1785fbd088cb4f81d5cccf5d8e1c49a8c1911d6
|
[] |
no_license
|
13627326651/MyTanke
|
832554fadd20650ac6255982213316223cccb4be
|
edf829969a1c57f7a2b23bf1062f6858760481e0
|
refs/heads/master
| 2020-06-14T02:09:13.672159
| 2016-12-04T04:45:31
| 2016-12-04T04:45:31
| 75,518,066
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 742
|
h
|
myview.h
|
#ifndef MYVIEW_H
#define MYVIEW_H
#include <QGraphicsView>
#include "tanke.h"
class MyView : public QGraphicsView
{
Q_OBJECT
public:
enum BarrierType{BLUEWATER,WHITEWALL,REDWALL};
MyView();
void initView();
void createTanke();
void initTankeInfo();
void displayMenu();
protected:
void keyPressEvent(QKeyEvent *event);
void addBarrier();
void addBarrierLine(BarrierType type,Qt::Orientation orientation,const int count,const QPointF position);
private:
QGraphicsRectItem *topLine;
QGraphicsRectItem *bottomLine;
QGraphicsRectItem *leftLine;
QGraphicsRectItem *rightLine;
QGraphicsRectItem *infoDisplay;
QWidget *menuWidget;
private:
Tanke *mMyTanke;
};
#endif // MYVIEW_H
|
3a7e8ab029dbf19a3395e4f1bbabbc4cae8844e3
|
1c0c3fe481bbf989ac55507782249ddc62011b8e
|
/Programmeren/charles_gtk/user.hpp
|
df5e4902d06f5cae5f559a5babee3c3d034ca61d
|
[] |
no_license
|
hettoo/informatica
|
ebc0d375a7378af1902106f55003927c960bb38e
|
38430f2c137bbd32b1d4d3d11c158d98aefbd0ff
|
refs/heads/master
| 2016-09-05T10:52:00.888961
| 2012-09-25T15:16:30
| 2012-09-25T15:16:30
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,424
|
hpp
|
user.hpp
|
#ifndef __CHARLES_USER_H__
#define __CHARLES_USER_H__
#include <string>
#include "src/globals.hpp"
/* Customisable constants */
const int FIELD_COLS = 50;
const int FIELD_ROWS = 32;
const std::string DEFAULT_LABYRINTH = "labyrinth";
const int DEFAULT_WINDOW_WIDTH = 900;
const int DEFAULT_WINDOW_HEIGHT = 600;
const bool START_FULLSCREEN = false;
const float SCROLL_MARGIN = 0.08;
const int DELAY_FAST = 12;
const int DELAY_NORMAL = 30;
const int DELAY_SLOW = 160;
const int DELAY_DEFAULT = DELAY_FAST;
const int START_X = 1;
const int START_Y = 15;
const int START_DIR = DIR_EAST;
const int CAMERA_STEP = 50;
const int ZOOM_STEP = 4;
const int MIN_FIELD_PIXELS = 12;
const int MAX_FIELD_PIXELS = 128;
const int DEFAULT_FIELD_PIXELS = 32;
/* Usable procedures */
void step();
void steps(int n);
void turn_left();
void turn_right();
void get_ball();
void put_ball();
/* Usable functions */
bool in_front_of_wall();
bool on_ball();
bool north();
/* Other procedures required in the custom part */
void draw_line_with_balls(int n);
void make_string_with_balls();
void make_chaos_with_balls();
void make_path_with_balls();
void make_labyrinth();
/* User functions */
void start();
void clean_string_with_balls();
void clean_chaos_with_balls();
void follow_path();
void leave_labyrinth();
void write_number(int positive_decimal);
void add();
void subtract();
void multiply();
#endif
|
0272b38365f25e0723f4b8c8edaf2161e7b188c1
|
1207c707693747a979699512f4dedfbb6e4e4056
|
/VisualisationGraph/src/serialize/Serialize.cpp
|
ae00e389847756f4226672079211ae22b9a23de0
|
[] |
no_license
|
antho1404/myownprojects
|
46b91b923eb48290edc6038e3cfaa7f11d19bf50
|
168deb390c8f438819effcc735a7dd01805229a4
|
refs/heads/master
| 2021-01-11T11:00:53.738119
| 2010-03-14T21:57:43
| 2010-03-14T21:57:43
| 32,131,194
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 682
|
cpp
|
Serialize.cpp
|
/**
* @author Estebe Anthony
*/
#include "Serialize.h"
#include "GraphXml.h"
#include "AlgoLoader.h"
Serialize *Serialize::instance = NULL;
Serialize::Serialize() {
objGraph = NULL;
objAlgo = NULL;
}
Serialize::~Serialize() {
delete objAlgo;
delete objGraph;
}
Serialize* Serialize::getInstance() {
if (NULL == instance)
instance = new Serialize();
return instance;
}
void Serialize::kill() {
if (NULL != instance) {
delete instance;
instance = NULL;
}
}
AlgoIO* Serialize::algo() {
if(objAlgo == NULL)
objAlgo = new AlgoLoader();
return objAlgo;
}
GraphIO* Serialize::graph() {
if(objGraph == NULL)
objGraph = new GraphXML();
return objGraph;
}
|
a3b5876ad7ce2203cc156aa39e5c0156af7bdd3f
|
eb4d694fe074e85d41a00af3aa9c98191f8df9f6
|
/pkgs/costmap_2d/src/voxel_costmap_2d.cpp
|
6a35762e90729866df3899860ea881dc0b499963
|
[] |
no_license
|
zlalanne/TurtlebotSeniorDesign
|
864f52ede645e7e7351a689423c09a5201618eff
|
f818eeea5097157197216f1daeed6cb11829fbde
|
refs/heads/master
| 2020-05-18T20:56:29.798255
| 2012-04-21T17:26:23
| 2012-04-21T17:26:23
| 3,507,345
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 16,723
|
cpp
|
voxel_costmap_2d.cpp
|
/*********************************************************************
*
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Willow Garage nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* Author: Eitan Marder-Eppstein
*********************************************************************/
#include <costmap_2d/voxel_costmap_2d.h>
#define VOXEL_BITS 16
using namespace std;
namespace costmap_2d{
VoxelCostmap2D::VoxelCostmap2D(unsigned int cells_size_x, unsigned int cells_size_y, unsigned int cells_size_z,
double xy_resolution, double z_resolution, double origin_x, double origin_y, double origin_z, double inscribed_radius,
double circumscribed_radius, double inflation_radius, double obstacle_range,
double raytrace_range, double weight,
const std::vector<unsigned char>& static_data, unsigned char lethal_threshold, unsigned int unknown_threshold, unsigned int mark_threshold, unsigned char unknown_cost_value)
: Costmap2D(cells_size_x, cells_size_y, xy_resolution, origin_x, origin_y, inscribed_radius, circumscribed_radius,
inflation_radius, obstacle_range, cells_size_z * z_resolution + origin_z, raytrace_range, weight, static_data, lethal_threshold, unknown_threshold < cells_size_z, unknown_cost_value),
voxel_grid_(cells_size_x, cells_size_y, cells_size_z), xy_resolution_(xy_resolution), z_resolution_(z_resolution),
origin_z_(origin_z), unknown_threshold_(unknown_threshold + (VOXEL_BITS - cells_size_z)), mark_threshold_(mark_threshold), size_z_(cells_size_z)
{
}
VoxelCostmap2D::VoxelCostmap2D(costmap_2d::Costmap2D& costmap,
double z_resolution, unsigned int cells_size_z, double origin_z,
unsigned int mark_threshold, unsigned int unknown_threshold)
: Costmap2D(costmap), voxel_grid_(costmap.getSizeInCellsX(), costmap.getSizeInCellsY(), cells_size_z),
xy_resolution_(costmap.getResolution()), z_resolution_(z_resolution), origin_z_(origin_z),
unknown_threshold_(unknown_threshold + (VOXEL_BITS - cells_size_z)), mark_threshold_(mark_threshold), size_z_(cells_size_z)
{
}
VoxelCostmap2D::~VoxelCostmap2D(){}
void VoxelCostmap2D::initMaps(unsigned int size_x, unsigned int size_y){
Costmap2D::initMaps(size_x, size_y);
voxel_grid_.resize(size_x, size_y, size_z_);
ROS_ASSERT(voxel_grid_.sizeX() == size_x_ && voxel_grid_.sizeY() == size_y_);
}
void VoxelCostmap2D::resetMaps(){
Costmap2D::resetMaps();
voxel_grid_.reset();
}
void VoxelCostmap2D::resetMapOutsideWindow(double wx, double wy, double w_size_x, double w_size_y){
ROS_ASSERT_MSG(w_size_x >= 0 && w_size_y >= 0, "You cannot specify a negative size window");
double start_point_x = wx - w_size_x / 2;
double start_point_y = wy - w_size_y / 2;
double end_point_x = start_point_x + w_size_x;
double end_point_y = start_point_y + w_size_y;
//check start bounds
start_point_x = max(origin_x_, start_point_x);
start_point_y = max(origin_y_, start_point_y);
//check end bounds
end_point_x = min(origin_x_ + getSizeInMetersX(), end_point_x);
end_point_y = min(origin_y_ + getSizeInMetersY(), end_point_y);
unsigned int start_x, start_y, end_x, end_y;
//check for legality just in case
if(!worldToMap(start_point_x, start_point_y, start_x, start_y) || !worldToMap(end_point_x, end_point_y, end_x, end_y))
return;
ROS_ASSERT(end_x > start_x && end_y > start_y);
unsigned int cell_size_x = end_x - start_x;
unsigned int cell_size_y = end_y - start_y;
//we need a map to store the obstacles in the window temporarily
unsigned char* local_map = new unsigned char[cell_size_x * cell_size_y];
unsigned int* local_voxel_map = new unsigned int[cell_size_x * cell_size_y];
unsigned int* voxel_map = voxel_grid_.getData();
//copy the local window in the costmap to the local map
copyMapRegion(costmap_, start_x, start_y, size_x_, local_map, 0, 0, cell_size_x, cell_size_x, cell_size_y);
copyMapRegion(voxel_map, start_x, start_y, size_x_, local_voxel_map, 0, 0, cell_size_x, cell_size_x, cell_size_y);
//now we'll reset the costmap to the static map
memcpy(costmap_, static_map_, size_x_ * size_y_ * sizeof(unsigned char));
//the voxel grid will just go back to being unknown
voxel_grid_.reset();
//now we want to copy the local map back into the costmap
copyMapRegion(local_map, 0, 0, cell_size_x, costmap_, start_x, start_y, size_x_, cell_size_x, cell_size_y);
copyMapRegion(local_voxel_map, 0, 0, cell_size_x, voxel_map, start_x, start_y, size_x_, cell_size_x, cell_size_y);
//clean up
delete[] local_map;
delete[] local_voxel_map;
}
void VoxelCostmap2D::updateObstacles(const vector<Observation>& observations, priority_queue<CellData>& inflation_queue){
//place the new obstacles into a priority queue... each with a priority of zero to begin with
for(vector<Observation>::const_iterator it = observations.begin(); it != observations.end(); ++it){
const Observation& obs = *it;
const pcl::PointCloud<pcl::PointXYZ>& cloud =obs.cloud_;
double sq_obstacle_range = obs.obstacle_range_ * obs.obstacle_range_;
for(unsigned int i = 0; i < cloud.points.size(); ++i){
//if the obstacle is too high or too far away from the robot we won't add it
if(cloud.points[i].z > max_obstacle_height_)
continue;
//compute the squared distance from the hitpoint to the pointcloud's origin
double sq_dist = (cloud.points[i].x - obs.origin_.x) * (cloud.points[i].x - obs.origin_.x)
+ (cloud.points[i].y - obs.origin_.y) * (cloud.points[i].y - obs.origin_.y)
+ (cloud.points[i].z - obs.origin_.z) * (cloud.points[i].z - obs.origin_.z);
//if the point is far enough away... we won't consider it
if(sq_dist >= sq_obstacle_range)
continue;
//now we need to compute the map coordinates for the observation
unsigned int mx, my, mz;
if(cloud.points[i].z < origin_z_){
if(!worldToMap3D(cloud.points[i].x, cloud.points[i].y, origin_z_, mx, my, mz))
continue;
}
else if(!worldToMap3D(cloud.points[i].x, cloud.points[i].y, cloud.points[i].z, mx, my, mz)){
continue;
}
//mark the cell in the voxel grid and check if we should also mark it in the costmap
if(voxel_grid_.markVoxelInMap(mx, my, mz, mark_threshold_)){
unsigned int index = getIndex(mx, my);
//push the relevant cell index back onto the inflation queue
enqueue(index, mx, my, mx, my, inflation_queue);
}
}
}
}
void VoxelCostmap2D::raytraceFreespace(const Observation& clearing_observation){
if(clearing_observation.cloud_.points.size() == 0)
return;
double sensor_x, sensor_y, sensor_z;
double ox = clearing_observation.origin_.x;
double oy = clearing_observation.origin_.y;
double oz = clearing_observation.origin_.z;
if(!worldToMap3DFloat(ox, oy, oz, sensor_x, sensor_y, sensor_z)){
ROS_WARN("The origin for the sensor at (%.2f, %.2f, %.2f) is out of map bounds. So, the costmap cannot raytrace for it.", ox, oy, oz);
return;
}
//we can pre-compute the enpoints of the map outside of the inner loop... we'll need these later
double map_end_x = origin_x_ + getSizeInMetersX();
double map_end_y = origin_y_ + getSizeInMetersY();
for(unsigned int i = 0; i < clearing_observation.cloud_.points.size(); ++i){
double wpx = clearing_observation.cloud_.points[i].x;
double wpy = clearing_observation.cloud_.points[i].y;
double wpz = clearing_observation.cloud_.points[i].z;
double distance = dist(ox, oy, oz, wpx, wpy, wpz);
double scaling_fact = 1.0;
scaling_fact = std::max(std::min(scaling_fact, (distance - 2 * xy_resolution_) / distance), 0.0);
wpx = scaling_fact * (wpx - ox) + ox;
wpy = scaling_fact * (wpy - oy) + oy;
wpz = scaling_fact * (wpz - oz) + oz;
double a = wpx - ox;
double b = wpy - oy;
double c = wpz - oz;
double t = 1.0;
//we can only raytrace to a maximum z height
if(wpz > max_obstacle_height_){
//we know we want the vector's z value to be max_z
t = std::min(t, (max_obstacle_height_ - 0.01 - oz) / c);
}
//and we can only raytrace down to the floor
else if(wpz < origin_z_){
//we know we want the vector's z value to be 0.0
t = std::min(t, (origin_z_ - oz) / c);
}
//the minimum value to raytrace from is the origin
if(wpx < origin_x_){
t = std::min(t, (origin_x_ - ox) / a);
}
if(wpy < origin_y_){
t = std::min(t, (origin_y_ - oy) / b);
}
//the maximum value to raytrace to is the end of the map
if(wpx > map_end_x){
t = std::min(t, (map_end_x - ox) / a);
}
if(wpy > map_end_y){
t = std::min(t, (map_end_y - oy) / b);
}
wpx = ox + a * t;
wpy = oy + b * t;
wpz = oz + c * t;
double point_x, point_y, point_z;
if(worldToMap3DFloat(wpx, wpy, wpz, point_x, point_y, point_z)){
unsigned int cell_raytrace_range = cellDistance(clearing_observation.raytrace_range_);
//voxel_grid_.markVoxelLine(sensor_x, sensor_y, sensor_z, point_x, point_y, point_z);
voxel_grid_.clearVoxelLineInMap(sensor_x, sensor_y, sensor_z, point_x, point_y, point_z, costmap_,
unknown_threshold_, mark_threshold_, FREE_SPACE, NO_INFORMATION, cell_raytrace_range);
}
}
}
void VoxelCostmap2D::updateOrigin(double new_origin_x, double new_origin_y){
//project the new origin into the grid
int cell_ox, cell_oy;
cell_ox = int((new_origin_x - origin_x_) / resolution_);
cell_oy = int((new_origin_y - origin_y_) / resolution_);
//compute the associated world coordinates for the origin cell
//beacuase we want to keep things grid-aligned
double new_grid_ox, new_grid_oy;
new_grid_ox = origin_x_ + cell_ox * resolution_;
new_grid_oy = origin_y_ + cell_oy * resolution_;
//To save casting from unsigned int to int a bunch of times
int size_x = size_x_;
int size_y = size_y_;
//we need to compute the overlap of the new and existing windows
int lower_left_x, lower_left_y, upper_right_x, upper_right_y;
lower_left_x = min(max(cell_ox, 0), size_x);
lower_left_y = min(max(cell_oy, 0), size_y);
upper_right_x = min(max(cell_ox + size_x, 0), size_x);
upper_right_y = min(max(cell_oy + size_y, 0), size_y);
unsigned int cell_size_x = upper_right_x - lower_left_x;
unsigned int cell_size_y = upper_right_y - lower_left_y;
//we need a map to store the obstacles in the window temporarily
unsigned char* local_map = new unsigned char[cell_size_x * cell_size_y];
unsigned int* local_voxel_map = new unsigned int[cell_size_x * cell_size_y];
unsigned int* voxel_map = voxel_grid_.getData();
//copy the local window in the costmap to the local map
copyMapRegion(costmap_, lower_left_x, lower_left_y, size_x_, local_map, 0, 0, cell_size_x, cell_size_x, cell_size_y);
copyMapRegion(voxel_map, lower_left_x, lower_left_y, size_x_, local_voxel_map, 0, 0, cell_size_x, cell_size_x, cell_size_y);
//we'll reset our maps to unknown space if appropriate
resetMaps();
//update the origin with the appropriate world coordinates
origin_x_ = new_grid_ox;
origin_y_ = new_grid_oy;
//compute the starting cell location for copying data back in
int start_x = lower_left_x - cell_ox;
int start_y = lower_left_y - cell_oy;
//now we want to copy the overlapping information back into the map, but in its new location
copyMapRegion(local_map, 0, 0, cell_size_x, costmap_, start_x, start_y, size_x_, cell_size_x, cell_size_y);
copyMapRegion(local_voxel_map, 0, 0, cell_size_x, voxel_map, start_x, start_y, size_x_, cell_size_x, cell_size_y);
//make sure to clean up
delete[] local_map;
delete[] local_voxel_map;
}
void VoxelCostmap2D::clearNonLethal(double wx, double wy, double w_size_x, double w_size_y, bool clear_no_info){
//get the cell coordinates of the center point of the window
unsigned int mx, my;
if(!worldToMap(wx, wy, mx, my))
return;
//compute the bounds of the window
double start_x = wx - w_size_x / 2;
double start_y = wy - w_size_y / 2;
double end_x = start_x + w_size_x;
double end_y = start_y + w_size_y;
//scale the window based on the bounds of the costmap
start_x = max(origin_x_, start_x);
start_y = max(origin_y_, start_y);
end_x = min(origin_x_ + getSizeInMetersX(), end_x);
end_y = min(origin_y_ + getSizeInMetersY(), end_y);
//get the map coordinates of the bounds of the window
unsigned int map_sx, map_sy, map_ex, map_ey;
//check for legality just in case
if(!worldToMap(start_x, start_y, map_sx, map_sy) || !worldToMap(end_x, end_y, map_ex, map_ey))
return;
//we know that we want to clear all non-lethal obstacles in this window to get it ready for inflation
unsigned int index = getIndex(map_sx, map_sy);
unsigned char* current = &costmap_[index];
for(unsigned int j = map_sy; j <= map_ey; ++j){
for(unsigned int i = map_sx; i <= map_ex; ++i){
//if the cell is a lethal obstacle... we'll keep it and queue it, otherwise... we'll clear it
if(*current != LETHAL_OBSTACLE){
if(clear_no_info || *current != NO_INFORMATION){
*current = FREE_SPACE;
voxel_grid_.clearVoxelColumn(index);
}
}
current++;
index++;
}
current += size_x_ - (map_ex - map_sx) - 1;
index += size_x_ - (map_ex - map_sx) - 1;
}
}
void VoxelCostmap2D::getVoxelGridMessage(VoxelGrid& grid){
unsigned int size = voxel_grid_.sizeX() * voxel_grid_.sizeY();
grid.size_x = voxel_grid_.sizeX();
grid.size_y = voxel_grid_.sizeY();
grid.size_z = voxel_grid_.sizeZ();
grid.data.resize(size);
memcpy(&grid.data[0], voxel_grid_.getData(), size * sizeof(unsigned int));
grid.origin.x = origin_x_;
grid.origin.y = origin_y_;
grid.origin.z = origin_z_;
grid.resolutions.x = xy_resolution_;
grid.resolutions.y = xy_resolution_;
grid.resolutions.z = z_resolution_;
}
void VoxelCostmap2D::getPoints(pcl::PointCloud<pcl::PointXYZ>& cloud){
for(unsigned int i = 0; i < voxel_grid_.sizeX(); ++i){
for(unsigned int j = 0; j < voxel_grid_.sizeY(); ++j){
for(unsigned int k = 0; k < voxel_grid_.sizeZ(); ++k){
if(voxel_grid_.getVoxel(i, j, k) == voxel_grid::MARKED){
double wx, wy, wz;
mapToWorld3D(i, j, k, wx, wy, wz);
pcl::PointXYZ pt;
pt.x = wx;
pt.y = wy;
pt.z = wz;
cloud.points.push_back(pt);
}
}
}
}
}
void VoxelCostmap2D::finishConfiguration(costmap_2d::Costmap2DConfig &config) {
unknown_threshold_ = config.unknown_threshold + (VOXEL_BITS - size_z_);
mark_threshold_ = config.mark_threshold;
}
};
|
36aaf317b42fbe36db87aaf637106bc2be607bf7
|
72798740f9d8a20ccd43782698ef1c2cece31a69
|
/Graph Problems/FlightDiscount.cpp
|
e64daed69e6110d715491a11f553bc55d591fedc
|
[] |
no_license
|
Radhesh-Sarma/CSES-Problemset-Solutions
|
d2b29007b90030765c02faa4792639f06e449fab
|
039dbb55a105e120045d7ce2e288da57ddb73b3f
|
refs/heads/master
| 2022-12-28T00:04:32.466359
| 2020-10-11T17:04:12
| 2020-10-11T17:04:12
| 291,469,042
| 3
| 1
| null | 2020-10-11T17:04:13
| 2020-08-30T12:47:32
|
C++
|
UTF-8
|
C++
| false
| false
| 2,847
|
cpp
|
FlightDiscount.cpp
|
#include<bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define endl "\n"
#define ll long long
#define int long long
#define double long double
#define max(a,b) (a>b?a:b)
#define min(a,b) (a<b?a:b)
#define mp make_pair
#define pb push_back
#define inf INT_MAX
#define f first
#define s second
#define trace1(x) cerr<<#x<<": "<<x<<endl
#define trace2(x, y) cerr<<#x<<": "<<x<<" | "<<#y<<": "<<y<<endl
#define trace3(x, y, z) cerr<<#x<<":" <<x<<" | "<<#y<<": "<<y<<" | "<<#z<<": "<<z<<endl
#define trace4(a, b, c, d) cerr<<#a<<": "<<a<<" | "<<#b<<": "<<b<<" | "<<#c<<": "<<c<<" | "<<#d<<": "<<d<<endl
#define trace5(a, b, c, d, e) cerr<<#a<<": "<<a<<" | "<<#b<< ": "<<b<<" | "<<#c<<": "<<c<<" | "<<#d<<": "<<d<<" | "<<#e<< ": "<<e<<endl
#define trace6(a, b, c, d, e, f) cerr<<#a<<": "<<a<<" | "<<#b<<": "<<b<<" | "<<#c<<": "<<c<<" | "<<#d<<": "<<d<<" | "<<#e<< ": "<<e<<" | "<<#f<<": "<<f<<endl
#define cases int testcases;cin>>testcases; while(testcases--)
#define all(v) v.begin(), v.end()
#define mod INT_MAX
const int INF=1e9+7;
const int N=1e5+5;
int n,m;
int dist1[N],dist2[N];
vector<pair<int, int>> g1[N];
vector<pair<int, int>> g2[N];
void dijkstra(int src,int dest,int dist[N],vector<pair<int,int>> g[N]){
//although no need of end point here
memset(dist,0x3f,sizeof(dist1));
dist[src] = 0;
//max pq declaration
priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
pq.push({0,src});
while(!pq.empty())
{
auto x = pq.top();
pq.pop();
if(x.first > dist[x.second])
continue;
for(auto it: g[x.second])
{
if(dist[it.s] > dist[x.s] + it.f)
{
dist[it.s] = it.f + dist[x.s];
pq.push({dist[it.s],it.s});
}
}
}
}
int32_t main()
{
/*#ifndef ONLINE_JUDGE
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif*/
IOS
int u,v,w;
cin>>n>>m;
/* Flight Discount question *
needed to do dijkstra from both front and end
question just talks about unidirectional edges though! */
while(m--)
{
cin>>u>>v>>w;
g1[u].push_back({w,v});
g2[v].push_back({w,u});
}
dijkstra(1,n,dist1,g1);
dijkstra(n,1,dist2,g2);
int ans = 1e18;
for(int i = 1 ; i<=n;i++)
{
for(auto x:g1[i])
{
ans = min(ans,dist1[i] + dist2[x.s] + (x.f)/2);
//trace6(i,x.s,dist1[i],dist2[x.s],x.f,ans);
}
}
cout<<ans;
return 0;
}
|
f12e37837d22bdc525af3124464d907d1b9fa457
|
425963de819e446a75441ff901adbfe5f1c5dea6
|
/components/sync_bookmarks/bookmark_model_associator.cc
|
958a6ffa60b10057194ac3939f81937abdd8902e
|
[
"BSD-3-Clause"
] |
permissive
|
Igalia/chromium
|
06590680bcc074cf191979c496d84888dbb54df6
|
261db3a6f6a490742786cf841afa92e02a53b33f
|
refs/heads/ozone-wayland-dev
| 2022-12-06T16:31:09.335901
| 2019-12-06T21:11:21
| 2019-12-06T21:11:21
| 85,595,633
| 123
| 25
|
NOASSERTION
| 2019-02-05T08:04:47
| 2017-03-20T15:45:36
| null |
UTF-8
|
C++
| false
| false
| 38,170
|
cc
|
bookmark_model_associator.cc
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/sync_bookmarks/bookmark_model_associator.h"
#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/format_macros.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "components/bookmarks/browser/bookmark_client.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/sync/base/cryptographer.h"
#include "components/sync/base/data_type_histogram.h"
#include "components/sync/engine/engine_util.h"
#include "components/sync/model/sync_error.h"
#include "components/sync/model/sync_merge_result.h"
#include "components/sync/syncable/delete_journal.h"
#include "components/sync/syncable/entry.h"
#include "components/sync/syncable/read_node.h"
#include "components/sync/syncable/read_transaction.h"
#include "components/sync/syncable/syncable_write_transaction.h"
#include "components/sync/syncable/write_node.h"
#include "components/sync/syncable/write_transaction.h"
#include "components/sync_bookmarks/bookmark_change_processor.h"
#include "components/undo/bookmark_undo_service.h"
#include "components/undo/bookmark_undo_utils.h"
using bookmarks::BookmarkModel;
using bookmarks::BookmarkNode;
namespace sync_bookmarks {
// The sync protocol identifies top-level entities by means of well-known tags,
// which should not be confused with titles. Each tag corresponds to a
// singleton instance of a particular top-level node in a user's share; the
// tags are consistent across users. The tags allow us to locate the specific
// folders whose contents we care about synchronizing, without having to do a
// lookup by name or path. The tags should not be made user-visible.
// For example, the tag "bookmark_bar" represents the permanent node for
// bookmarks bar in Chrome. The tag "other_bookmarks" represents the permanent
// folder Other Bookmarks in Chrome.
//
// It is the responsibility of something upstream (at time of writing,
// the sync server) to create these tagged nodes when initializing sync
// for the first time for a user. Thus, once the backend finishes
// initializing, the ProfileSyncService can rely on the presence of tagged
// nodes.
//
// TODO(ncarter): Pull these tags from an external protocol specification
// rather than hardcoding them here.
const char kBookmarkBarTag[] = "bookmark_bar";
const char kMobileBookmarksTag[] = "synced_bookmarks";
const char kOtherBookmarksTag[] = "other_bookmarks";
// Maximum number of bytes to allow in a title (must match sync's internal
// limits; see write_node.cc).
const int kTitleLimitBytes = 255;
// Provides the following abstraction: given a parent bookmark node, find best
// matching child node for many sync nodes.
class BookmarkNodeFinder {
public:
// Creates an instance with the given parent bookmark node.
explicit BookmarkNodeFinder(const BookmarkNode* parent_node);
// Finds the bookmark node that matches the given url, title and folder
// attribute. Returns the matching node if one exists; null otherwise.
// If there are multiple matches then a node with ID matching |preferred_id|
// is returned; otherwise the first matching node is returned.
// If a matching node is found, it's removed for further matches.
const BookmarkNode* FindBookmarkNode(const GURL& url,
const std::string& title,
bool is_folder,
int64_t preferred_id);
// Returns true if |bookmark_node| matches the specified |url|,
// |title|, and |is_folder| flags.
static bool NodeMatches(const BookmarkNode* bookmark_node,
const GURL& url,
const std::string& title,
bool is_folder);
private:
// Maps bookmark node titles to instances, duplicates allowed.
// Titles are converted to the sync internal format before
// being used as keys for the map.
using BookmarkNodeMap = std::multimap<std::string, const BookmarkNode*>;
using BookmarkNodeRange =
std::pair<BookmarkNodeMap::iterator, BookmarkNodeMap::iterator>;
// Converts and truncates bookmark titles in the form sync does internally
// to avoid mismatches due to sync munging titles.
static void ConvertTitleToSyncInternalFormat(const std::string& input,
std::string* output);
const BookmarkNode* parent_node_;
BookmarkNodeMap child_nodes_;
DISALLOW_COPY_AND_ASSIGN(BookmarkNodeFinder);
};
class ScopedAssociationUpdater {
public:
explicit ScopedAssociationUpdater(BookmarkModel* model) {
model_ = model;
model->BeginExtensiveChanges();
}
~ScopedAssociationUpdater() {
model_->EndExtensiveChanges();
}
private:
BookmarkModel* model_;
DISALLOW_COPY_AND_ASSIGN(ScopedAssociationUpdater);
};
BookmarkNodeFinder::BookmarkNodeFinder(const BookmarkNode* parent_node)
: parent_node_(parent_node) {
for (int i = 0; i < parent_node_->child_count(); ++i) {
const BookmarkNode* child_node = parent_node_->GetChild(i);
std::string title = base::UTF16ToUTF8(child_node->GetTitle());
ConvertTitleToSyncInternalFormat(title, &title);
child_nodes_.insert(std::make_pair(title, child_node));
}
}
const BookmarkNode* BookmarkNodeFinder::FindBookmarkNode(
const GURL& url,
const std::string& title,
bool is_folder,
int64_t preferred_id) {
const BookmarkNode* match = nullptr;
// First lookup a range of bookmarks with the same title.
std::string adjusted_title;
ConvertTitleToSyncInternalFormat(title, &adjusted_title);
BookmarkNodeRange range = child_nodes_.equal_range(adjusted_title);
auto match_iter = range.second;
for (auto iter = range.first; iter != range.second; ++iter) {
// Then within the range match the node by the folder bit
// and the url.
const BookmarkNode* node = iter->second;
if (is_folder == node->is_folder() && url == node->url()) {
if (node->id() == preferred_id || preferred_id == 0) {
// Preferred match - use this node.
match = node;
match_iter = iter;
break;
} else if (match == nullptr) {
// First match - continue iterating.
match = node;
match_iter = iter;
}
}
}
if (match_iter != range.second) {
// Remove the matched node so we don't match with it again.
child_nodes_.erase(match_iter);
}
return match;
}
/* static */
bool BookmarkNodeFinder::NodeMatches(const BookmarkNode* bookmark_node,
const GURL& url,
const std::string& title,
bool is_folder) {
if (url != bookmark_node->url() || is_folder != bookmark_node->is_folder()) {
return false;
}
// The title passed to this method comes from a sync directory entry.
// The following two lines are needed to make the native bookmark title
// comparable. The same conversion is used in BookmarkNodeFinder constructor.
std::string bookmark_title = base::UTF16ToUTF8(bookmark_node->GetTitle());
ConvertTitleToSyncInternalFormat(bookmark_title, &bookmark_title);
return title == bookmark_title;
}
/* static */
void BookmarkNodeFinder::ConvertTitleToSyncInternalFormat(
const std::string& input, std::string* output) {
syncer::SyncAPINameToServerName(input, output);
base::TruncateUTF8ToByteSize(*output, kTitleLimitBytes, output);
}
BookmarkModelAssociator::Context::Context(
syncer::SyncMergeResult* local_merge_result,
syncer::SyncMergeResult* syncer_merge_result)
: local_merge_result_(local_merge_result),
syncer_merge_result_(syncer_merge_result),
duplicate_count_(0),
native_model_sync_state_(UNSET) {}
BookmarkModelAssociator::Context::~Context() {
}
void BookmarkModelAssociator::Context::PushNode(int64_t sync_id) {
dfs_stack_.push(sync_id);
}
bool BookmarkModelAssociator::Context::PopNode(int64_t* sync_id) {
if (dfs_stack_.empty()) {
*sync_id = 0;
return false;
}
*sync_id = dfs_stack_.top();
dfs_stack_.pop();
return true;
}
void BookmarkModelAssociator::Context::SetPreAssociationVersions(
int64_t native_version,
int64_t sync_version) {
local_merge_result_->set_pre_association_version(native_version);
syncer_merge_result_->set_pre_association_version(sync_version);
}
void BookmarkModelAssociator::Context::SetNumItemsBeforeAssociation(
int local_num,
int sync_num) {
local_merge_result_->set_num_items_before_association(local_num);
syncer_merge_result_->set_num_items_before_association(sync_num);
}
void BookmarkModelAssociator::Context::SetNumItemsAfterAssociation(
int local_num,
int sync_num) {
local_merge_result_->set_num_items_after_association(local_num);
syncer_merge_result_->set_num_items_after_association(sync_num);
}
void BookmarkModelAssociator::Context::IncrementLocalItemsDeleted() {
local_merge_result_->set_num_items_deleted(
local_merge_result_->num_items_deleted() + 1);
}
void BookmarkModelAssociator::Context::IncrementLocalItemsAdded() {
local_merge_result_->set_num_items_added(
local_merge_result_->num_items_added() + 1);
}
void BookmarkModelAssociator::Context::IncrementLocalItemsModified() {
local_merge_result_->set_num_items_modified(
local_merge_result_->num_items_modified() + 1);
}
void BookmarkModelAssociator::Context::IncrementSyncItemsAdded() {
syncer_merge_result_->set_num_items_added(
syncer_merge_result_->num_items_added() + 1);
}
void BookmarkModelAssociator::Context::IncrementSyncItemsDeleted(int count) {
syncer_merge_result_->set_num_items_deleted(
syncer_merge_result_->num_items_deleted() + count);
}
void BookmarkModelAssociator::Context::UpdateDuplicateCount(
const base::string16& title,
const GURL& url) {
size_t bookmark_hash = base::Hash(title) ^ base::Hash(url.spec());
if (!hashes_.insert(bookmark_hash).second) {
// This hash code already exists in the set.
++duplicate_count_;
}
}
void BookmarkModelAssociator::Context::AddBookmarkRoot(
const bookmarks::BookmarkNode* root) {
bookmark_roots_.push_back(root);
}
int64_t BookmarkModelAssociator::Context::GetSyncPreAssociationVersion() const {
return syncer_merge_result_->pre_association_version();
}
void BookmarkModelAssociator::Context::MarkForVersionUpdate(
const bookmarks::BookmarkNode* node) {
bookmarks_for_version_update_.push_back(node);
}
BookmarkModelAssociator::BookmarkModelAssociator(
BookmarkModel* bookmark_model,
BookmarkUndoService* bookmark_undo_service,
favicon::FaviconService* favicon_service,
syncer::UserShare* user_share,
std::unique_ptr<syncer::DataTypeErrorHandler> unrecoverable_error_handler,
bool expect_mobile_bookmarks_folder)
: bookmark_model_(bookmark_model),
bookmark_undo_service_(bookmark_undo_service),
favicon_service_(favicon_service),
user_share_(user_share),
unrecoverable_error_handler_(std::move(unrecoverable_error_handler)),
expect_mobile_bookmarks_folder_(expect_mobile_bookmarks_folder),
weak_factory_(this) {
DCHECK(bookmark_model_);
DCHECK(user_share_);
DCHECK(unrecoverable_error_handler_);
}
BookmarkModelAssociator::~BookmarkModelAssociator() {
DCHECK(thread_checker_.CalledOnValidThread());
}
bookmarks::BookmarkModel* BookmarkModelAssociator::GetBookmarkModel() {
return bookmark_model_;
}
favicon::FaviconService* BookmarkModelAssociator::GetFaviconService() {
return favicon_service_;
}
BookmarkUndoService* BookmarkModelAssociator::GetBookmarkUndoService() {
return bookmark_undo_service_;
}
syncer::SyncError BookmarkModelAssociator::DisassociateModels() {
id_map_.clear();
id_map_inverse_.clear();
dirty_associations_sync_ids_.clear();
return syncer::SyncError();
}
int64_t BookmarkModelAssociator::GetSyncIdFromChromeId(const int64_t& node_id) {
BookmarkIdToSyncIdMap::const_iterator iter = id_map_.find(node_id);
return iter == id_map_.end() ? syncer::kInvalidId : iter->second;
}
const BookmarkNode* BookmarkModelAssociator::GetChromeNodeFromSyncId(
int64_t sync_id) {
SyncIdToBookmarkNodeMap::const_iterator iter = id_map_inverse_.find(sync_id);
return iter == id_map_inverse_.end() ? nullptr : iter->second;
}
bool BookmarkModelAssociator::InitSyncNodeFromChromeId(
const int64_t& node_id,
syncer::BaseNode* sync_node) {
DCHECK(sync_node);
int64_t sync_id = GetSyncIdFromChromeId(node_id);
if (sync_id == syncer::kInvalidId)
return false;
if (sync_node->InitByIdLookup(sync_id) != syncer::BaseNode::INIT_OK)
return false;
DCHECK(sync_node->GetId() == sync_id);
return true;
}
void BookmarkModelAssociator::AddAssociation(const BookmarkNode* node,
int64_t sync_id) {
DCHECK(thread_checker_.CalledOnValidThread());
int64_t node_id = node->id();
DCHECK_NE(sync_id, syncer::kInvalidId);
DCHECK(id_map_.find(node_id) == id_map_.end());
DCHECK(id_map_inverse_.find(sync_id) == id_map_inverse_.end());
id_map_[node_id] = sync_id;
id_map_inverse_[sync_id] = node;
}
void BookmarkModelAssociator::Associate(const BookmarkNode* node,
const syncer::BaseNode& sync_node) {
AddAssociation(node, sync_node.GetId());
// The same check exists in PersistAssociations. However it is better to
// do the check earlier to avoid the cost of decrypting nodes again
// in PersistAssociations.
if (node->id() != sync_node.GetExternalId()) {
dirty_associations_sync_ids_.insert(sync_node.GetId());
PostPersistAssociationsTask();
}
}
void BookmarkModelAssociator::Disassociate(int64_t sync_id) {
DCHECK(thread_checker_.CalledOnValidThread());
auto iter = id_map_inverse_.find(sync_id);
if (iter == id_map_inverse_.end())
return;
id_map_.erase(iter->second->id());
id_map_inverse_.erase(iter);
dirty_associations_sync_ids_.erase(sync_id);
}
bool BookmarkModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
DCHECK(has_nodes);
*has_nodes = false;
bool has_mobile_folder = true;
syncer::ReadTransaction trans(FROM_HERE, user_share_);
syncer::ReadNode bookmark_bar_node(&trans);
if (bookmark_bar_node.InitByTagLookupForBookmarks(kBookmarkBarTag) !=
syncer::BaseNode::INIT_OK) {
return false;
}
syncer::ReadNode other_bookmarks_node(&trans);
if (other_bookmarks_node.InitByTagLookupForBookmarks(kOtherBookmarksTag) !=
syncer::BaseNode::INIT_OK) {
return false;
}
syncer::ReadNode mobile_bookmarks_node(&trans);
if (mobile_bookmarks_node.InitByTagLookupForBookmarks(kMobileBookmarksTag) !=
syncer::BaseNode::INIT_OK) {
has_mobile_folder = false;
}
// Sync model has user created nodes if any of the permanent nodes has
// children.
*has_nodes = bookmark_bar_node.HasChildren() ||
other_bookmarks_node.HasChildren() ||
(has_mobile_folder && mobile_bookmarks_node.HasChildren());
return true;
}
bool BookmarkModelAssociator::AssociateTaggedPermanentNode(
syncer::BaseTransaction* trans,
const BookmarkNode* permanent_node,
const std::string& tag) {
// Do nothing if |permanent_node| is already initialized and associated.
int64_t sync_id = GetSyncIdFromChromeId(permanent_node->id());
if (sync_id != syncer::kInvalidId)
return true;
syncer::ReadNode sync_node(trans);
if (sync_node.InitByTagLookupForBookmarks(tag) != syncer::BaseNode::INIT_OK)
return false;
Associate(permanent_node, sync_node);
return true;
}
syncer::SyncError BookmarkModelAssociator::AssociateModels(
syncer::SyncMergeResult* local_merge_result,
syncer::SyncMergeResult* syncer_merge_result) {
// Since any changes to the bookmark model made here are not user initiated,
// these change should not be undoable and so suspend the undo tracking.
ScopedSuspendBookmarkUndo suspend_undo(bookmark_undo_service_);
Context context(local_merge_result, syncer_merge_result);
syncer::SyncError error = CheckModelSyncState(&context);
if (error.IsSet())
return error;
std::unique_ptr<ScopedAssociationUpdater> association_updater(
new ScopedAssociationUpdater(bookmark_model_));
DisassociateModels();
error = BuildAssociations(&context);
if (error.IsSet()) {
// Clear version on bookmark model so that the conservative association
// algorithm is used on the next association.
bookmark_model_->SetNodeSyncTransactionVersion(
bookmark_model_->root_node(),
syncer::syncable::kInvalidTransactionVersion);
}
return error;
}
syncer::SyncError BookmarkModelAssociator::AssociatePermanentFolders(
syncer::BaseTransaction* trans,
Context* context) {
// To prime our association, we associate the top-level nodes, Bookmark Bar
// and Other Bookmarks.
if (!AssociateTaggedPermanentNode(trans, bookmark_model_->bookmark_bar_node(),
kBookmarkBarTag)) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Bookmark bar node not found", model_type());
}
if (!AssociateTaggedPermanentNode(trans, bookmark_model_->other_node(),
kOtherBookmarksTag)) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Other bookmarks node not found", model_type());
}
if (!AssociateTaggedPermanentNode(trans, bookmark_model_->mobile_node(),
kMobileBookmarksTag) &&
expect_mobile_bookmarks_folder_) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Mobile bookmarks node not found", model_type());
}
// Note: the root node may have additional extra nodes. Currently none of
// them are meant to sync.
int64_t bookmark_bar_sync_id =
GetSyncIdFromChromeId(bookmark_model_->bookmark_bar_node()->id());
DCHECK_NE(bookmark_bar_sync_id, syncer::kInvalidId);
context->AddBookmarkRoot(bookmark_model_->bookmark_bar_node());
int64_t other_bookmarks_sync_id =
GetSyncIdFromChromeId(bookmark_model_->other_node()->id());
DCHECK_NE(other_bookmarks_sync_id, syncer::kInvalidId);
context->AddBookmarkRoot(bookmark_model_->other_node());
int64_t mobile_bookmarks_sync_id =
GetSyncIdFromChromeId(bookmark_model_->mobile_node()->id());
if (expect_mobile_bookmarks_folder_)
DCHECK_NE(syncer::kInvalidId, mobile_bookmarks_sync_id);
if (mobile_bookmarks_sync_id != syncer::kInvalidId)
context->AddBookmarkRoot(bookmark_model_->mobile_node());
// WARNING: The order in which we push these should match their order in the
// bookmark model (see BookmarkModel::DoneLoading(..)).
context->PushNode(bookmark_bar_sync_id);
context->PushNode(other_bookmarks_sync_id);
if (mobile_bookmarks_sync_id != syncer::kInvalidId)
context->PushNode(mobile_bookmarks_sync_id);
return syncer::SyncError();
}
void BookmarkModelAssociator::SetNumItemsBeforeAssociation(
syncer::BaseTransaction* trans,
Context* context) {
int syncer_num = 0;
syncer::ReadNode bm_root(trans);
if (bm_root.InitTypeRoot(syncer::BOOKMARKS) == syncer::BaseNode::INIT_OK) {
syncer_num = bm_root.GetTotalNodeCount();
}
context->SetNumItemsBeforeAssociation(
GetTotalBookmarkCountAndRecordDuplicates(bookmark_model_->root_node(),
context),
syncer_num);
}
int BookmarkModelAssociator::GetTotalBookmarkCountAndRecordDuplicates(
const bookmarks::BookmarkNode* node,
Context* context) const {
int count = 1; // Start with one to include the node itself.
if (!node->is_root()) {
context->UpdateDuplicateCount(node->GetTitle(), node->url());
}
for (int i = 0; i < node->child_count(); ++i) {
count +=
GetTotalBookmarkCountAndRecordDuplicates(node->GetChild(i), context);
}
return count;
}
void BookmarkModelAssociator::SetNumItemsAfterAssociation(
syncer::BaseTransaction* trans,
Context* context) {
int syncer_num = 0;
syncer::ReadNode bm_root(trans);
if (bm_root.InitTypeRoot(syncer::BOOKMARKS) == syncer::BaseNode::INIT_OK) {
syncer_num = bm_root.GetTotalNodeCount();
}
context->SetNumItemsAfterAssociation(
bookmark_model_->root_node()->GetTotalNodeCount(), syncer_num);
}
syncer::SyncError BookmarkModelAssociator::BuildAssociations(Context* context) {
DCHECK(bookmark_model_->loaded());
DCHECK_NE(context->native_model_sync_state(), AHEAD);
int initial_duplicate_count = 0;
int64_t new_version = syncer::syncable::kInvalidTransactionVersion;
{
syncer::WriteTransaction trans(FROM_HERE, user_share_, &new_version);
syncer::SyncError error = AssociatePermanentFolders(&trans, context);
if (error.IsSet())
return error;
SetNumItemsBeforeAssociation(&trans, context);
initial_duplicate_count = context->duplicate_count();
// Remove obsolete bookmarks according to sync delete journal.
// TODO(stanisc): crbug.com/456876: rewrite this to avoid a separate
// traversal and instead perform deletes at the end of the loop below where
// the unmatched bookmark nodes are created as sync nodes.
ApplyDeletesFromSyncJournal(&trans, context);
// Algorithm description:
// Match up the roots and recursively do the following:
// * For each sync node for the current sync parent node, find the best
// matching bookmark node under the corresponding bookmark parent node.
// If no matching node is found, create a new bookmark node in the same
// position as the corresponding sync node.
// If a matching node is found, update the properties of it from the
// corresponding sync node.
// * When all children sync nodes are done, add the extra children bookmark
// nodes to the sync parent node.
//
// The best match algorithm uses folder title or bookmark title/url to
// perform the primary match. If there are multiple match candidates it
// selects the preferred one based on sync node external ID match to the
// bookmark folder ID.
int64_t sync_parent_id;
while (context->PopNode(&sync_parent_id)) {
syncer::ReadNode sync_parent(&trans);
if (sync_parent.InitByIdLookup(sync_parent_id) !=
syncer::BaseNode::INIT_OK) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Failed to lookup node.", model_type());
}
// Only folder nodes are pushed on to the stack.
DCHECK(sync_parent.GetIsFolder());
const BookmarkNode* parent_node = GetChromeNodeFromSyncId(sync_parent_id);
if (!parent_node) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Failed to find bookmark node for sync id.",
model_type());
}
DCHECK(parent_node->is_folder());
std::vector<int64_t> children;
sync_parent.GetChildIds(&children);
error = BuildAssociations(&trans, parent_node, children, context);
if (error.IsSet())
return error;
}
SetNumItemsAfterAssociation(&trans, context);
}
if (new_version == syncer::syncable::kInvalidTransactionVersion) {
// If we get here it means that none of Sync nodes were modified by the
// association process.
// We need to set |new_version| to the pre-association Sync version;
// otherwise BookmarkChangeProcessor::UpdateTransactionVersion call below
// won't save it to the native model. That is necessary to ensure that the
// native model doesn't get stuck at "unset" version and skips any further
// version checks.
new_version = context->GetSyncPreAssociationVersion();
}
BookmarkChangeProcessor::UpdateTransactionVersion(
new_version, bookmark_model_, context->bookmarks_for_version_update());
UMA_HISTOGRAM_COUNTS_1M("Sync.BookmarksDuplicationsAtAssociation",
context->duplicate_count());
UMA_HISTOGRAM_COUNTS_1M("Sync.BookmarksNewDuplicationsAtAssociation",
context->duplicate_count() - initial_duplicate_count);
if (context->duplicate_count() > initial_duplicate_count) {
UMA_HISTOGRAM_ENUMERATION("Sync.BookmarksModelSyncStateAtNewDuplication",
context->native_model_sync_state(),
NATIVE_MODEL_SYNC_STATE_COUNT);
}
return syncer::SyncError();
}
syncer::SyncError BookmarkModelAssociator::BuildAssociations(
syncer::WriteTransaction* trans,
const BookmarkNode* parent_node,
const std::vector<int64_t>& sync_ids,
Context* context) {
BookmarkNodeFinder node_finder(parent_node);
int index = 0;
for (auto it = sync_ids.begin(); it != sync_ids.end(); ++it) {
int64_t sync_child_id = *it;
syncer::ReadNode sync_child_node(trans);
if (sync_child_node.InitByIdLookup(sync_child_id) !=
syncer::BaseNode::INIT_OK) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Failed to lookup node.", model_type());
}
int64_t external_id = sync_child_node.GetExternalId();
GURL url(sync_child_node.GetBookmarkSpecifics().url());
const BookmarkNode* child_node = node_finder.FindBookmarkNode(
url, sync_child_node.GetTitle(), sync_child_node.GetIsFolder(),
external_id);
if (child_node) {
// Skip local node update if the local model version matches and
// the node is already associated and in the right position.
bool is_in_sync = (context->native_model_sync_state() == IN_SYNC) &&
(child_node->id() == external_id) &&
(index < parent_node->child_count()) &&
(parent_node->GetChild(index) == child_node);
if (!is_in_sync) {
BookmarkChangeProcessor::UpdateBookmarkWithSyncData(
sync_child_node, bookmark_model_, child_node, favicon_service_);
bookmark_model_->Move(child_node, parent_node, index);
context->IncrementLocalItemsModified();
context->MarkForVersionUpdate(child_node);
}
} else {
syncer::SyncError error;
child_node = CreateBookmarkNode(parent_node, index, &sync_child_node, url,
context, &error);
if (!child_node) {
if (error.IsSet()) {
return error;
} else {
// Skip this node and continue. Don't increment index in this case.
continue;
}
}
context->IncrementLocalItemsAdded();
context->MarkForVersionUpdate(child_node);
}
Associate(child_node, sync_child_node);
if (sync_child_node.GetIsFolder())
context->PushNode(sync_child_id);
++index;
}
// At this point all the children nodes of the parent sync node have
// corresponding children in the parent bookmark node and they are all in
// the right positions: from 0 to index - 1.
// So the children starting from index in the parent bookmark node are the
// ones that are not present in the parent sync node. So create them.
for (int i = index; i < parent_node->child_count(); ++i) {
int64_t sync_child_id = BookmarkChangeProcessor::CreateSyncNode(
parent_node, bookmark_model_, i, trans, this,
unrecoverable_error_handler_.get());
if (syncer::kInvalidId == sync_child_id) {
return unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Failed to create sync node.", model_type());
}
context->IncrementSyncItemsAdded();
const BookmarkNode* child_node = parent_node->GetChild(i);
context->MarkForVersionUpdate(child_node);
if (child_node->is_folder())
context->PushNode(sync_child_id);
}
return syncer::SyncError();
}
const BookmarkNode* BookmarkModelAssociator::CreateBookmarkNode(
const BookmarkNode* parent_node,
int bookmark_index,
const syncer::BaseNode* sync_child_node,
const GURL& url,
Context* context,
syncer::SyncError* error) {
DCHECK_LE(bookmark_index, parent_node->child_count());
const std::string& sync_title = sync_child_node->GetTitle();
if (!sync_child_node->GetIsFolder() && !url.is_valid()) {
LOG(WARNING) << "Cannot associate sync node "
<< sync_child_node->GetSyncId().value() << " with invalid url "
<< url.possibly_invalid_spec() << " and title " << sync_title;
// Don't propagate an error to the model_type in this case.
return nullptr;
}
base::string16 bookmark_title = base::UTF8ToUTF16(sync_title);
const BookmarkNode* child_node = BookmarkChangeProcessor::CreateBookmarkNode(
bookmark_title, url, sync_child_node, parent_node, bookmark_model_,
favicon_service_, bookmark_index);
if (!child_node) {
*error = unrecoverable_error_handler_->CreateAndUploadError(
FROM_HERE, "Failed to create bookmark node with title " + sync_title +
" and url " + url.possibly_invalid_spec(),
model_type());
return nullptr;
}
context->UpdateDuplicateCount(bookmark_title, url);
return child_node;
}
struct FolderInfo {
FolderInfo(const BookmarkNode* f, const BookmarkNode* p, int64_t id)
: folder(f), parent(p), sync_id(id) {}
const BookmarkNode* folder;
const BookmarkNode* parent;
int64_t sync_id;
};
using FolderInfoList = std::vector<FolderInfo>;
void BookmarkModelAssociator::ApplyDeletesFromSyncJournal(
syncer::BaseTransaction* trans,
Context* context) {
syncer::BookmarkDeleteJournalList bk_delete_journals;
syncer::DeleteJournal::GetBookmarkDeleteJournals(trans, &bk_delete_journals);
if (bk_delete_journals.empty())
return;
size_t num_journals_unmatched = bk_delete_journals.size();
// Make a set of all external IDs in the delete journal,
// ignore entries with unset external IDs.
std::set<int64_t> journaled_external_ids;
for (size_t i = 0; i < num_journals_unmatched; i++) {
if (bk_delete_journals[i].external_id != 0)
journaled_external_ids.insert(bk_delete_journals[i].external_id);
}
// Check bookmark model from top to bottom.
BookmarkStack dfs_stack;
for (auto it = context->bookmark_roots().begin();
it != context->bookmark_roots().end(); ++it) {
dfs_stack.push(*it);
}
// Remember folders that match delete journals in first pass but don't delete
// them in case there are bookmarks left under them. After non-folder
// bookmarks are removed in first pass, recheck the folders in reverse order
// to remove empty ones.
FolderInfoList folders_matched;
while (!dfs_stack.empty() && num_journals_unmatched > 0) {
const BookmarkNode* parent = dfs_stack.top();
dfs_stack.pop();
DCHECK(parent->is_folder());
// Enumerate folder children in reverse order to make it easier to remove
// bookmarks matching entries in the delete journal.
for (int child_index = parent->child_count() - 1;
child_index >= 0 && num_journals_unmatched > 0; --child_index) {
const BookmarkNode* child = parent->GetChild(child_index);
if (child->is_folder())
dfs_stack.push(child);
if (journaled_external_ids.find(child->id()) ==
journaled_external_ids.end()) {
// Skip bookmark node which id is not in the set of external IDs.
continue;
}
// Iterate through the journal entries from back to front. Remove matched
// journal by moving an unmatched entry at the tail to the matched
// position so that we can read unmatched entries off the head in next
// loop.
for (int journal_index = num_journals_unmatched - 1; journal_index >= 0;
--journal_index) {
const syncer::BookmarkDeleteJournal& delete_entry =
bk_delete_journals[journal_index];
if (child->id() == delete_entry.external_id &&
BookmarkNodeFinder::NodeMatches(
child, GURL(delete_entry.specifics.bookmark().url()),
delete_entry.specifics.bookmark().title(),
delete_entry.is_folder)) {
if (child->is_folder()) {
// Remember matched folder without removing and delete only empty
// ones later.
folders_matched.push_back(
FolderInfo(child, parent, delete_entry.id));
} else {
bookmark_model_->Remove(child);
context->IncrementLocalItemsDeleted();
}
// Move unmatched journal here and decrement counter.
bk_delete_journals[journal_index] =
bk_delete_journals[--num_journals_unmatched];
break;
}
}
}
}
// Ids of sync nodes not found in bookmark model, meaning the deletions are
// persisted and correponding delete journals can be dropped.
std::set<int64_t> journals_to_purge;
// Remove empty folders from bottom to top.
for (auto it = folders_matched.rbegin(); it != folders_matched.rend(); ++it) {
if (it->folder->child_count() == 0) {
bookmark_model_->Remove(it->folder);
context->IncrementLocalItemsDeleted();
} else {
// Keep non-empty folder and remove its journal so that it won't match
// again in the future.
journals_to_purge.insert(it->sync_id);
}
}
// Purge unmatched journals.
for (size_t i = 0; i < num_journals_unmatched; ++i)
journals_to_purge.insert(bk_delete_journals[i].id);
syncer::DeleteJournal::PurgeDeleteJournals(trans, journals_to_purge);
}
void BookmarkModelAssociator::PostPersistAssociationsTask() {
// No need to post a task if a task is already pending.
if (weak_factory_.HasWeakPtrs())
return;
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(&BookmarkModelAssociator::PersistAssociations,
weak_factory_.GetWeakPtr()));
}
void BookmarkModelAssociator::PersistAssociations() {
// If there are no dirty associations we have nothing to do. We handle this
// explicity instead of letting the for loop do it to avoid creating a write
// transaction in this case.
if (dirty_associations_sync_ids_.empty()) {
DCHECK(id_map_.empty());
DCHECK(id_map_inverse_.empty());
return;
}
int64_t new_version = syncer::syncable::kInvalidTransactionVersion;
std::vector<const BookmarkNode*> bnodes;
{
syncer::WriteTransaction trans(FROM_HERE, user_share_, &new_version);
DirtyAssociationsSyncIds::iterator iter;
for (iter = dirty_associations_sync_ids_.begin();
iter != dirty_associations_sync_ids_.end();
++iter) {
int64_t sync_id = *iter;
syncer::WriteNode sync_node(&trans);
if (sync_node.InitByIdLookup(sync_id) != syncer::BaseNode::INIT_OK) {
syncer::SyncError error(
FROM_HERE,
syncer::SyncError::DATATYPE_ERROR,
"Could not lookup bookmark node for ID persistence.",
syncer::BOOKMARKS);
unrecoverable_error_handler_->OnUnrecoverableError(error);
return;
}
const BookmarkNode* node = GetChromeNodeFromSyncId(sync_id);
if (node && sync_node.GetExternalId() != node->id()) {
sync_node.SetExternalId(node->id());
bnodes.push_back(node);
}
}
dirty_associations_sync_ids_.clear();
}
BookmarkChangeProcessor::UpdateTransactionVersion(new_version,
bookmark_model_,
bnodes);
}
bool BookmarkModelAssociator::CryptoReadyIfNecessary() {
// We only access the cryptographer while holding a transaction.
syncer::ReadTransaction trans(FROM_HERE, user_share_);
const syncer::ModelTypeSet encrypted_types = trans.GetEncryptedTypes();
return !encrypted_types.Has(syncer::BOOKMARKS) ||
trans.GetCryptographer()->is_ready();
}
syncer::SyncError BookmarkModelAssociator::CheckModelSyncState(
Context* context) const {
DCHECK_EQ(context->native_model_sync_state(), UNSET);
int64_t native_version =
bookmark_model_->root_node()->sync_transaction_version();
syncer::ReadTransaction trans(FROM_HERE, user_share_);
int64_t sync_version = trans.GetModelVersion(syncer::BOOKMARKS);
context->SetPreAssociationVersions(native_version, sync_version);
if (native_version != syncer::syncable::kInvalidTransactionVersion) {
if (native_version == sync_version) {
context->set_native_model_sync_state(IN_SYNC);
} else {
// TODO(wychen): enum uma should be strongly typed. crbug.com/661401
UMA_HISTOGRAM_ENUMERATION("Sync.LocalModelOutOfSync",
ModelTypeToHistogramInt(syncer::BOOKMARKS),
static_cast<int>(syncer::MODEL_TYPE_COUNT));
// Clear version on bookmark model so that we only report error once.
bookmark_model_->SetNodeSyncTransactionVersion(
bookmark_model_->root_node(),
syncer::syncable::kInvalidTransactionVersion);
// If the native version is higher, there was a sync persistence failure,
// and we need to delay association until after a GetUpdates.
if (native_version > sync_version) {
context->set_native_model_sync_state(AHEAD);
std::string message = base::StringPrintf(
"Native version (%" PRId64 ") does not match sync version (%"
PRId64 ")",
native_version,
sync_version);
return syncer::SyncError(FROM_HERE,
syncer::SyncError::PERSISTENCE_ERROR,
message,
syncer::BOOKMARKS);
} else {
context->set_native_model_sync_state(BEHIND);
}
}
}
return syncer::SyncError();
}
} // namespace sync_bookmarks
|
183cb3210b1e6338292e1bd68f6d3df1e81ac2cb
|
343da56e3c524f62caf39d7f9abefb5ea8a15e63
|
/Sum.h
|
9ac5587ccab8ea6014efe1a2a8a8d57a81810991
|
[] |
no_license
|
manuelsalamino/Spreadsheet
|
cfc4f3708e98387734708df2752e314fb56ef384
|
dd5c0a1b9a52aaee8a73acaeb2966b88b9aa7dd0
|
refs/heads/master
| 2022-04-14T20:03:11.491370
| 2020-03-25T18:14:28
| 2020-03-25T18:14:28
| 100,630,024
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 272
|
h
|
Sum.h
|
//
// Created by utente on 26/10/2016.
//
#ifndef ELABORATO_SUM_H
#define ELABORATO_SUM_H
#include "Cell.h"
#include "Formula.h"
class Sum : public Formula {
public:
Sum(Cell* ptr) : Formula(ptr){}
virtual void calc() override;
};
#endif //ELABORATO_SUM_H
|
5e825ad36f067713e7bd0a4902010a5cdabd9c05
|
c91fa94edd26e3ba58d04d3843c834e1a19d24ad
|
/StudySeries/StudyCpp/Chap09App/TryCatch.cpp
|
2bccb2b3e19ae6ae10a40e69fe87cc299d73998e
|
[] |
no_license
|
jsc5023/StudentStudySpace
|
d1c708e8fc827012ae201721f8842261f89c2279
|
cc181b5645b30bbabeb9ec7deaa738b7d1a035d8
|
refs/heads/master
| 2023-02-09T06:51:04.854083
| 2020-12-04T12:50:40
| 2020-12-04T12:50:40
| null | 0
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 492
|
cpp
|
TryCatch.cpp
|
#include <stdio.h>
int main() {
int a, b;
try
{
printf("a를 입력하세요 : ");
scanf("%d", &a);
if (a < 0) throw a;
printf("b를 입력하세요: ");
scanf("%d", &b);
if (b == 0) throw double(b);
printf("나누기결과 %d\n", a / b);
}
catch (int a)
{
printf("%d는 음수이거나 0이므로 연산 불가\n", a);
}
catch (double b)
{
printf("~~~~~~%f\n", b);
}
//catch (const char* msg) {
// /*puts(msg);*/
// printf("%s\n", msg);
//}
return 0;
}
|
0bfd079b396722530288161b9c9447d41351476c
|
6ea50d800eaf5690de87eea3f99839f07c662c8b
|
/ver.0.8.1/Node.h
|
2b4779cd6105b721988de188406e9f6e9a297c5e
|
[] |
no_license
|
Toku555/MCPE-Headers
|
73eefeab8754a9ce9db2545fb0ea437328cade9e
|
b0806aebd8c3f4638a1972199623d1bf686e6497
|
refs/heads/master
| 2021-01-15T20:53:23.115576
| 2016-09-01T15:38:27
| 2016-09-01T15:38:27
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 205
|
h
|
Node.h
|
#pragma once
class Node{
public:
Node(int,int,int);
void _init(void);
void createHash(int,int,int);
void distanceTo(Node*);
void equals(Node*);
void hashCode(void);
void inOpenSet(void);
};
|
531d1dc084319de7ea1ccab62ccde4ee2bbd3e53
|
9f520bcbde8a70e14d5870fd9a88c0989a8fcd61
|
/pitzDaily/859/pa
|
695d66c0ceb907d2e48072a1de5ac66b9df99ceb
|
[] |
no_license
|
asAmrita/adjoinShapOptimization
|
6d47c89fb14d090941da706bd7c39004f515cfea
|
079cbec87529be37f81cca3ea8b28c50b9ceb8c5
|
refs/heads/master
| 2020-08-06T21:32:45.429939
| 2019-10-06T09:58:20
| 2019-10-06T09:58:20
| 213,144,901
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 104,946
|
pa
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "859";
object pa;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
6400
(
-0.121861358248
-0.121861992736
-0.121863795635
-0.1218673641
-0.121872766693
-0.121880075249
-0.121889377925
-0.121901056782
-0.121915582898
-0.121933587242
-0.121956700718
-0.12198602785
-0.122021416238
-0.122063302506
-0.122112725466
-0.122171039396
-0.122239501483
-0.122318863275
-0.122409252561
-0.122509799088
-0.12261960052
-0.122739989716
-0.122874330493
-0.123026284576
-0.123198644761
-0.123392470829
-0.123607581128
-0.123844038073
-0.124102771961
-0.124385190844
-0.124692652686
-0.125025401992
-0.125381672165
-0.125759443838
-0.126158135914
-0.126577164015
-0.127017506137
-0.127482774193
-0.12797258973
-0.128482322105
-0.129012678598
-0.129571078246
-0.130161496912
-0.130779052779
-0.131416278146
-0.132067365555
-0.132727588419
-0.133392893698
-0.134059326824
-0.134723165055
-0.135380958394
-0.136027247544
-0.136653113128
-0.137247725653
-0.13780706486
-0.138331954209
-0.138816097291
-0.139248070304
-0.139622149063
-0.139941515619
-0.140209288723
-0.140425513679
-0.140590498669
-0.140724151184
-0.140863990429
-0.141048877309
-0.141281618853
-0.141515320734
-0.141711914233
-0.141868162198
-0.141994232882
-0.142101835135
-0.142198491671
-0.142281783094
-0.142353941324
-0.142415031698
-0.142464343255
-0.142495963595
-0.142515817242
-0.142524178685
-0.121860498048
-0.121861173532
-0.121862802313
-0.121866254643
-0.121871899308
-0.121879432717
-0.121888717874
-0.121899901584
-0.12191386267
-0.121931647363
-0.121954465925
-0.121983305535
-0.122018433967
-0.122060156453
-0.12210916806
-0.122166652525
-0.122234452255
-0.122313494961
-0.122403674879
-0.122503809854
-0.122612497127
-0.122731763818
-0.122865442895
-0.123016856867
-0.123188733222
-0.123382148213
-0.123596686501
-0.123832655021
-0.124091015208
-0.124372987488
-0.124679753826
-0.125011993033
-0.125368009683
-0.125745183546
-0.126143387143
-0.12656213376
-0.127002102921
-0.127467406734
-0.127957730623
-0.12846797233
-0.128998108137
-0.129556776942
-0.130148900651
-0.130767885829
-0.131405968404
-0.132058099794
-0.132719521599
-0.133386310979
-0.13405423599
-0.134718730664
-0.135376219716
-0.136023483903
-0.136652904661
-0.137249730019
-0.13781087837
-0.138338240181
-0.138821674158
-0.139251811127
-0.139626185556
-0.139945514282
-0.140211495855
-0.140427917756
-0.140595537831
-0.140733340361
-0.140876818359
-0.141063145626
-0.14129895563
-0.141532573646
-0.141727872348
-0.141883648555
-0.142009461256
-0.142117324071
-0.142214864904
-0.14229927758
-0.142370060576
-0.142428451151
-0.142473536165
-0.142503645814
-0.14252268654
-0.142528964572
-0.121858018216
-0.121859093404
-0.121860529198
-0.12186362906
-0.121868970655
-0.121877149859
-0.12188686828
-0.121897402309
-0.121910410632
-0.121927451112
-0.121949614967
-0.121977745393
-0.122012227396
-0.122053307554
-0.12210141183
-0.12215699457
-0.122222889187
-0.12230180805
-0.122391601055
-0.122490344678
-0.122596985936
-0.122713714644
-0.122845931466
-0.12299681653
-0.123167632073
-0.123359542474
-0.12357297759
-0.123808039012
-0.12406541339
-0.124346282673
-0.124651803114
-0.124982936159
-0.12533840287
-0.125714065238
-0.126110449155
-0.126529034871
-0.126968476303
-0.127432861034
-0.127923498234
-0.128435372848
-0.128968756855
-0.12952989438
-0.130122136102
-0.130741226656
-0.131380430463
-0.132034257196
-0.132698014795
-0.133367441282
-0.134038259871
-0.134706183746
-0.135367244274
-0.136016531106
-0.136645866822
-0.137246199742
-0.137813815379
-0.138343734644
-0.138826679114
-0.139256496154
-0.139630993647
-0.139950452156
-0.140217083762
-0.140433273648
-0.140604358503
-0.140751453926
-0.140908353315
-0.141104116508
-0.141333460385
-0.14156054454
-0.141757259977
-0.141915892523
-0.142044401911
-0.142153547712
-0.142247846403
-0.142327418991
-0.142395266104
-0.14245043034
-0.142491032049
-0.142518280461
-0.142535095978
-0.142541032712
-0.121854460872
-0.121855522376
-0.121856691111
-0.121859442915
-0.12186396314
-0.12187176534
-0.121883345711
-0.12189361354
-0.121905319223
-0.121921179145
-0.121942324029
-0.121969520708
-0.122003099289
-0.122042934921
-0.12208940163
-0.122144134361
-0.122209094909
-0.12228556785
-0.122371707551
-0.122466018581
-0.122570070472
-0.122686271301
-0.122817458472
-0.122966606222
-0.123135683542
-0.123325842927
-0.123537601171
-0.123771112529
-0.124026944387
-0.124306124664
-0.124610035395
-0.124939529393
-0.125293406999
-0.125668288219
-0.126061878947
-0.126477757054
-0.126917839566
-0.127381923269
-0.127871460965
-0.128385253513
-0.128922908226
-0.129487648842
-0.130081590422
-0.13070189339
-0.131343013387
-0.131999536719
-0.13266662865
-0.133339841692
-0.134014822947
-0.134687228879
-0.135352598243
-0.136005455658
-0.136638480544
-0.137244172702
-0.137816772238
-0.138349305954
-0.138833507303
-0.13926399322
-0.139638861954
-0.139958606095
-0.140225710654
-0.140444856686
-0.140627183188
-0.140792286411
-0.140961263187
-0.141155291149
-0.141382676783
-0.141610272378
-0.141809346749
-0.141970590633
-0.14209837859
-0.142201840536
-0.142289326937
-0.142367876402
-0.142435611191
-0.142485997653
-0.142519881175
-0.142544869835
-0.14256193718
-0.142568862406
-0.121848884701
-0.121849065563
-0.121850412285
-0.121853055685
-0.121857756721
-0.12186437996
-0.121874476101
-0.121885354792
-0.121897207817
-0.121912401722
-0.121932355246
-0.121958416733
-0.121990782093
-0.122029825082
-0.12207573362
-0.122128397599
-0.122189700126
-0.1222610007
-0.122342370938
-0.122433750647
-0.122535836403
-0.122650156798
-0.122779408365
-0.122926416617
-0.123093116629
-0.123280845706
-0.123490181355
-0.123721477529
-0.123975223751
-0.12425226558
-0.124553794115
-0.124881450748
-0.125234163061
-0.12560552051
-0.125996310724
-0.126409822808
-0.126847834129
-0.127312129284
-0.127802888656
-0.128319194331
-0.128860863115
-0.129429559891
-0.130026338519
-0.130649050328
-0.131293104698
-0.131953347736
-0.132624859458
-0.133303031025
-0.133983412052
-0.134661528725
-0.135332589279
-0.135990901356
-0.136629624413
-0.137241592882
-0.137819712685
-0.138355932476
-0.138842483201
-0.139274563897
-0.139650651464
-0.139971890678
-0.140242281654
-0.140469868703
-0.140668872223
-0.140852864644
-0.141032040668
-0.141228810702
-0.141453991984
-0.141680972396
-0.141882074121
-0.142044006868
-0.142167156953
-0.142264082867
-0.142351857014
-0.142433402282
-0.142497016302
-0.142540289399
-0.142570307962
-0.142596582697
-0.142611804314
-0.142616478624
-0.121838984238
-0.121838854568
-0.121840927436
-0.121843422794
-0.121848111737
-0.121854356243
-0.121863496581
-0.121873901806
-0.121885915581
-0.121900625741
-0.121919086234
-0.121943651976
-0.121975461196
-0.122013784911
-0.122057165223
-0.122106417927
-0.122163434318
-0.122230158004
-0.122307306937
-0.122395032352
-0.122493737761
-0.122605173751
-0.122731807843
-0.122876117585
-0.123039888519
-0.12322428671
-0.123430474558
-0.123658854219
-0.123909935539
-0.124184376198
-0.124483224665
-0.124807768384
-0.125156712201
-0.12552658129
-0.125913436005
-0.126323070009
-0.126759866853
-0.127224762577
-0.127717225801
-0.128236422231
-0.128782157498
-0.129355210832
-0.129955869476
-0.130582249984
-0.131230407244
-0.131895490829
-0.132572565962
-0.133256904263
-0.133943948748
-0.134629098729
-0.135307363004
-0.135972955497
-0.136619150253
-0.137238532848
-0.137823053668
-0.138364168998
-0.138854532969
-0.139289896355
-0.139669357011
-0.139995221815
-0.140273453381
-0.140514502032
-0.140732992408
-0.140932342715
-0.141122139784
-0.141327982176
-0.141557272547
-0.14178262945
-0.14198128631
-0.142138307521
-0.142255163625
-0.142352943864
-0.142447331462
-0.142526522043
-0.142582304895
-0.142618783047
-0.14264773156
-0.142670546992
-0.14268120659
-0.142685153428
-0.121824207141
-0.121825062532
-0.121828270594
-0.121831696452
-0.121834926404
-0.121840804235
-0.121849756482
-0.121859693765
-0.121871367398
-0.121885399805
-0.121903325114
-0.121926007045
-0.121956289573
-0.121991855521
-0.122031888522
-0.122077313774
-0.122130462153
-0.122193283691
-0.122266256316
-0.122349222649
-0.122443662912
-0.122551584996
-0.122674778051
-0.122815460494
-0.122975520552
-0.123156418325
-0.123358010201
-0.123582584121
-0.123830560416
-0.124102455086
-0.124397621389
-0.12471760943
-0.125062523017
-0.125427015451
-0.125810888658
-0.126218224453
-0.126654137348
-0.127119653252
-0.127613977514
-0.128136250247
-0.12868620609
-0.129264075492
-0.129869590635
-0.13050089894
-0.131154435594
-0.131825601775
-0.132509490648
-0.133201294806
-0.133896366062
-0.134590000119
-0.135277078477
-0.13595171221
-0.136607036904
-0.137235200695
-0.137827534212
-0.138375384058
-0.138871900353
-0.139313513115
-0.139700176069
-0.140035340225
-0.140326471933
-0.140584899297
-0.140820465947
-0.14103619141
-0.141244162586
-0.14146225818
-0.141695407709
-0.141915571102
-0.142105393168
-0.142255669993
-0.142374043904
-0.142481651343
-0.14257862038
-0.142649653318
-0.142696012595
-0.142726198313
-0.142751448077
-0.142765290937
-0.142767839442
-0.142769428914
-0.121807133352
-0.121808880699
-0.121812266235
-0.121816744852
-0.121819518262
-0.121825406273
-0.12183324137
-0.121842611778
-0.121853877601
-0.121865883984
-0.121883364361
-0.121905182711
-0.121932454811
-0.121964431013
-0.122000776965
-0.122042071358
-0.122091540311
-0.122150406854
-0.122218360564
-0.122296111011
-0.122385689002
-0.122489164165
-0.122608059296
-0.122744699482
-0.122900505706
-0.123076433764
-0.123273821491
-0.123491896021
-0.123736520473
-0.124005734802
-0.124296692786
-0.124609448932
-0.124948595287
-0.125308347613
-0.125688459275
-0.126094654474
-0.126530226229
-0.126996266243
-0.12749239569
-0.128017864515
-0.128572282034
-0.12915549495
-0.129766825922
-0.130404327495
-0.131064608153
-0.131743234879
-0.132435336537
-0.133136054192
-0.133840660491
-0.134544361586
-0.135241939204
-0.135927377242
-0.136593577896
-0.137232305964
-0.137834619729
-0.138392084271
-0.138898427614
-0.139350652807
-0.139749175316
-0.140097894195
-0.140404561524
-0.140680102653
-0.140934134174
-0.141173863506
-0.141402217951
-0.141633547211
-0.141865376717
-0.142078880043
-0.142261015615
-0.142410684457
-0.142538827667
-0.142655743303
-0.142747625373
-0.142807497343
-0.142842287874
-0.142863915402
-0.14287559569
-0.142875395915
-0.142865791395
-0.142860426309
-0.121788749817
-0.121790889409
-0.121793884867
-0.121796777993
-0.121800136923
-0.121806836592
-0.121813656486
-0.121822068097
-0.121833168438
-0.121844237872
-0.121858270371
-0.121878779216
-0.121903601206
-0.121931579093
-0.121964151579
-0.12200216907
-0.122047004612
-0.122100739347
-0.122163317488
-0.122235765375
-0.12231998218
-0.122417946596
-0.122531111335
-0.122662339405
-0.122814388395
-0.122983882871
-0.123175796361
-0.123389897799
-0.123627502173
-0.123890953694
-0.12417744606
-0.124486527566
-0.124815701985
-0.125168867012
-0.125546677351
-0.125951932504
-0.126387176048
-0.126853682053
-0.127351557189
-0.127880314734
-0.128439495104
-0.129028646132
-0.129646766593
-0.13029175575
-0.130960246894
-0.131647875512
-0.132349787124
-0.133061073412
-0.133776915077
-0.134492421841
-0.135202286797
-0.135900392604
-0.136579487852
-0.137231206945
-0.137846748132
-0.138418123577
-0.138939305061
-0.139407022237
-0.139821311677
-0.140186347046
-0.140509738813
-0.14080333168
-0.141079005373
-0.141343123085
-0.141595844157
-0.141842591244
-0.142078955711
-0.142282165986
-0.142459059704
-0.142614538454
-0.142756694916
-0.142877680815
-0.142960370383
-0.143006128834
-0.143024856225
-0.143029024577
-0.143017164218
-0.142994981182
-0.142969329134
-0.142953738443
-0.121769014508
-0.121771244065
-0.121774307843
-0.121776106872
-0.121779323552
-0.121785053087
-0.121790862644
-0.121797781109
-0.121806827816
-0.121818746404
-0.121830226616
-0.121847595116
-0.121869432076
-0.12189382996
-0.121921959498
-0.121956382548
-0.121996964565
-0.122044807949
-0.122101123518
-0.122167694776
-0.122246294131
-0.122338425385
-0.122445122056
-0.122568502134
-0.122715079667
-0.122880292056
-0.123062085668
-0.123270731147
-0.123501621691
-0.123759554944
-0.124040004473
-0.124341932788
-0.124664760928
-0.125010935517
-0.125385195609
-0.125789091034
-0.126223885551
-0.126690799015
-0.127190369979
-0.127722486024
-0.128286751624
-0.128882498414
-0.12950843354
-0.130162265443
-0.13084056282
-0.131538946572
-0.13225252916
-0.13297631603
-0.133705352172
-0.134434608732
-0.135158707562
-0.135871543678
-0.136565975291
-0.137233994979
-0.137867413564
-0.138458666947
-0.1390005591
-0.139487515925
-0.139919748848
-0.140304838725
-0.140648495741
-0.140961732871
-0.14125940815
-0.141546313191
-0.141823036539
-0.142086375502
-0.142324813211
-0.142534693763
-0.142709023009
-0.142874589239
-0.143032228948
-0.14315495667
-0.143227004129
-0.143254171379
-0.143247537092
-0.143223112607
-0.143178262759
-0.143123986094
-0.143076149084
-0.143047421248
-0.121747230985
-0.121749090411
-0.121751862385
-0.121753524675
-0.121757310722
-0.121760831171
-0.121765142292
-0.121770494835
-0.121775782853
-0.12178645193
-0.121796738409
-0.121811034495
-0.121829516825
-0.12185091103
-0.12187502469
-0.121904355152
-0.121939950539
-0.121981960685
-0.122031705856
-0.122091382181
-0.122163409511
-0.122249592615
-0.122350943205
-0.122465670285
-0.12260134621
-0.122762130843
-0.12293729583
-0.12313633166
-0.123359515964
-0.123605700846
-0.123880691841
-0.12417638589
-0.12449253835
-0.124833124565
-0.1252034957
-0.125605232751
-0.126039153239
-0.126506338307
-0.127007565569
-0.12754309305
-0.128112750502
-0.128715783819
-0.129350627692
-0.130014759404
-0.130704628515
-0.131415788626
-0.13214325686
-0.132881863179
-0.133626406387
-0.134371643355
-0.135112149336
-0.135842027506
-0.13655475522
-0.137243429591
-0.137901079609
-0.13852014903
-0.13908849474
-0.139595338718
-0.140047131518
-0.140464247075
-0.140837383461
-0.141167598217
-0.141483085528
-0.141788391772
-0.142083300173
-0.142359929902
-0.142608383005
-0.142829809139
-0.143008073709
-0.14319492413
-0.143377602171
-0.143506931152
-0.143566068468
-0.143564719222
-0.143512881611
-0.14345341452
-0.143364750908
-0.143262654894
-0.143179634983
-0.143130675643
-0.121723071799
-0.121724113644
-0.121725265408
-0.121727478588
-0.121731554971
-0.121733495227
-0.121736329348
-0.121740351553
-0.121742771385
-0.121749493096
-0.121757817531
-0.121769006703
-0.12178364078
-0.121801813482
-0.121823153321
-0.121847013799
-0.121876420836
-0.121912030252
-0.121954936044
-0.1220069714
-0.122070674008
-0.122148907282
-0.122245467258
-0.122355028762
-0.122477876144
-0.122627939986
-0.122797103725
-0.122983940195
-0.123200437205
-0.123438598456
-0.123701016595
-0.123987369617
-0.12429706425
-0.124633603496
-0.125000170583
-0.12539906542
-0.125831563311
-0.126298788224
-0.126801651801
-0.127340660822
-0.127915970892
-0.128526966792
-0.129171883425
-0.129847905117
-0.130551327031
-0.131277627214
-0.132021665559
-0.132777945224
-0.133540822262
-0.134304691149
-0.135064047382
-0.135813532535
-0.136547934654
-0.137262599278
-0.137952587542
-0.138610245621
-0.139210781665
-0.139733178846
-0.140205622643
-0.140688935323
-0.141109903797
-0.141438033773
-0.141759940071
-0.14207728933
-0.142390211209
-0.142682690951
-0.142941249394
-0.143157421453
-0.14335608135
-0.14355565672
-0.143802696856
-0.143954487353
-0.143998390332
-0.143951900001
-0.143818364828
-0.143733944147
-0.143586619405
-0.143402400148
-0.143261435029
-0.143175841383
-0.121696732675
-0.121697006308
-0.121696221473
-0.12169821538
-0.121700754485
-0.121702082584
-0.121703691664
-0.121705936586
-0.121706711841
-0.121709777367
-0.121714511052
-0.121721865253
-0.121732105458
-0.121745592185
-0.121763353908
-0.121782501102
-0.121805917744
-0.121834787372
-0.121870463006
-0.121914518275
-0.12196893368
-0.122036729371
-0.122124386023
-0.12223036462
-0.122344312119
-0.122479083307
-0.122640331727
-0.122816549099
-0.123018081395
-0.123247467811
-0.123500631022
-0.123777998689
-0.124079730258
-0.124410834096
-0.124773230792
-0.125168879306
-0.125599441386
-0.126066314826
-0.126570743007
-0.127113427017
-0.127694703725
-0.128314266178
-0.128970404961
-0.129660044465
-0.130379271267
-0.131123504534
-0.131887414592
-0.132664971574
-0.133449766025
-0.134235508081
-0.135016543206
-0.135788326859
-0.136547765446
-0.137293795969
-0.138024917213
-0.138739220742
-0.139384962455
-0.13990755382
-0.140387651841
-0.141050441075
-0.141625877643
-0.141847089725
-0.142165465981
-0.142501606608
-0.142848523441
-0.143160371271
-0.143427410969
-0.143518642791
-0.143636196127
-0.144056617831
-0.144544750637
-0.144747901188
-0.14473112637
-0.144586636326
-0.144131119895
-0.144068785328
-0.143848179947
-0.143517849433
-0.143293342436
-0.143139534935
-0.121668909574
-0.12166891916
-0.121668179029
-0.121667634597
-0.121667539177
-0.121667684309
-0.121667820447
-0.121667449347
-0.121667112793
-0.121666538984
-0.121667100838
-0.121670081612
-0.121675519304
-0.121683593816
-0.121695051645
-0.121709294853
-0.121727329222
-0.121749594495
-0.121777688751
-0.121813353786
-0.121858287775
-0.12191479304
-0.121989889386
-0.122088275715
-0.122197094713
-0.122316575862
-0.122465170349
-0.122633346606
-0.122818732424
-0.123033572122
-0.123275265625
-0.123543037306
-0.123838332164
-0.124163535005
-0.124520902457
-0.124912650617
-0.125340831229
-0.125806994351
-0.126312660908
-0.126859083503
-0.127446798724
-0.128075635432
-0.128744108162
-0.129449125844
-0.130186661067
-0.130952138772
-0.131740038025
-0.132543527393
-0.13335490924
-0.134166726801
-0.134972791628
-0.135769635052
-0.136556260271
-0.137335979647
-0.138111314534
-0.138927292123
-0.139673144414
-0.1401368646
-0.140463282939
-0.141528317142
-0.14148052355
-0.141406120714
-0.141455947211
-0.141524852972
-0.141626253161
-0.141743638347
-0.141907964055
-0.142167023526
-0.142416244015
-0.142582360883
-0.142903888676
-0.143212127851
-0.143357321534
-0.143429473427
-0.143967651686
-0.144731094664
-0.14443585507
-0.143583101844
-0.143233078216
-0.142936346513
-0.121639434014
-0.121639310037
-0.121638908039
-0.121635556183
-0.121633005033
-0.121631345509
-0.121629579337
-0.121626788043
-0.121625070859
-0.121619997197
-0.121615918503
-0.121614164641
-0.121614545474
-0.121617194131
-0.121621763871
-0.121629497341
-0.121641140455
-0.121656325936
-0.121676332829
-0.121702944577
-0.121737999197
-0.121783322955
-0.121844018396
-0.121929818
-0.122032775224
-0.122139770644
-0.122270172897
-0.122429473398
-0.122605173148
-0.122801516726
-0.123028266327
-0.123284613435
-0.12357129027
-0.123889516789
-0.124241050377
-0.124628197132
-0.125053293831
-0.125518381302
-0.126025114836
-0.126575112424
-0.127169542583
-0.127808463575
-0.128490492891
-0.129212665144
-0.129971152542
-0.130761712521
-0.131578739467
-0.132414270783
-0.133258566077
-0.134102130823
-0.134937631164
-0.135762826373
-0.136576710912
-0.137381945012
-0.138178556905
-0.139208671566
-0.14025216849
-0.140184609576
-0.140165935559
-0.140435710125
-0.140784061799
-0.140790119739
-0.140655779439
-0.140436219935
-0.140182845201
-0.139907187038
-0.139669636551
-0.139555056836
-0.139563923699
-0.139661602379
-0.139940766852
-0.140330531558
-0.140736319377
-0.141185740188
-0.141767171271
-0.142367753978
-0.142611513548
-0.143067563001
-0.143195138421
-0.142495119722
-0.121608303664
-0.121607670395
-0.121605945465
-0.121601367251
-0.121596875093
-0.121593297063
-0.121589077832
-0.121583323825
-0.121578976155
-0.121569698331
-0.121561075772
-0.121554437355
-0.121549646346
-0.121546786095
-0.12154428573
-0.121544367588
-0.121548361177
-0.121555493945
-0.121566584738
-0.121583315839
-0.121607549445
-0.12164124168
-0.121687870314
-0.121757486288
-0.121849373578
-0.121948724826
-0.122058502056
-0.122198224665
-0.122364101976
-0.122548551718
-0.122759440603
-0.123001974349
-0.123277672838
-0.123587161019
-0.123931654458
-0.124313155474
-0.124734361959
-0.125197662742
-0.125705164388
-0.126258672077
-0.126859897869
-0.127509539547
-0.128206438437
-0.128947616424
-0.12972966135
-0.130549444746
-0.131401968983
-0.132277741483
-0.133163598521
-0.134046920463
-0.134917979458
-0.135777701574
-0.136615486435
-0.137401227927
-0.137975163185
-0.139499196267
-0.139644336633
-0.139754039215
-0.139797731709
-0.139851287598
-0.140021855254
-0.139924877422
-0.139602049981
-0.139098386921
-0.138485871283
-0.137807014251
-0.137130469015
-0.136528589857
-0.136059575643
-0.135782477727
-0.135751888356
-0.135913445162
-0.136217768662
-0.136688173324
-0.137495268461
-0.13872422761
-0.13996284457
-0.140780843919
-0.140990097072
-0.140903290214
-0.121576250258
-0.121575087553
-0.121572240658
-0.121566094432
-0.121560022415
-0.121554180511
-0.121547026898
-0.121537499619
-0.12152868627
-0.121515906341
-0.121502737291
-0.121491028357
-0.121480928645
-0.121472549695
-0.121462193448
-0.121454019898
-0.121449457979
-0.121447588809
-0.121448746772
-0.121454620083
-0.121466925475
-0.12148777698
-0.121520059777
-0.121571843869
-0.12164736658
-0.121738458359
-0.121832097843
-0.121949015182
-0.122094815551
-0.122266013314
-0.122462894451
-0.122691851705
-0.122955019124
-0.123253996596
-0.123590127577
-0.123965007827
-0.124381247106
-0.124841935565
-0.125349564859
-0.125906339409
-0.12651439447
-0.127175098963
-0.127887943823
-0.128650011293
-0.12945820401
-0.130311574877
-0.131207102899
-0.132133507313
-0.133072803169
-0.134008238864
-0.134924089823
-0.135839600098
-0.136743838895
-0.137532459461
-0.138076442523
-0.13841960829
-0.138795701001
-0.139175912232
-0.139295951761
-0.13921039041
-0.138985638866
-0.138498404972
-0.13780894302
-0.136941608846
-0.135959264406
-0.134915062115
-0.133874457278
-0.132894823062
-0.132036279024
-0.131377925941
-0.130990452136
-0.130849429011
-0.130914093938
-0.131226268049
-0.131998478689
-0.133435735231
-0.135255605519
-0.136750125719
-0.138206231019
-0.140966944415
-0.121544321509
-0.121542505042
-0.121537817645
-0.121530424327
-0.121523140871
-0.121514845048
-0.121504562853
-0.121491411504
-0.121477840932
-0.121460060505
-0.121441588431
-0.121424171735
-0.121408082119
-0.121393483934
-0.121374732264
-0.121357943031
-0.1213441444
-0.121332581024
-0.121322851857
-0.121316865558
-0.121316094793
-0.121322757692
-0.121339598111
-0.121372519807
-0.121427656462
-0.121504189442
-0.121588491945
-0.121685262008
-0.121807867066
-0.121958495713
-0.12213795725
-0.122351308482
-0.122600008199
-0.122886701511
-0.123213076587
-0.123580094849
-0.123990547278
-0.124447716872
-0.124954796027
-0.12551429518
-0.126128838971
-0.12680080603
-0.127530523898
-0.128315339649
-0.129151462239
-0.13004052897
-0.130986169196
-0.131978093317
-0.132988732393
-0.133994519872
-0.134953921627
-0.135953738668
-0.137012160167
-0.137249254105
-0.137484616613
-0.13778474574
-0.138252207816
-0.138535217676
-0.138420888306
-0.138010245856
-0.137326732827
-0.136361742887
-0.135202665658
-0.133887225175
-0.13247235361
-0.131010737215
-0.129563450604
-0.128184857896
-0.126931749349
-0.125875729406
-0.125092437784
-0.124607322681
-0.124379254722
-0.124473448464
-0.125142254772
-0.126654512711
-0.128732425672
-0.130479141258
-0.133444712921
-0.144577957288
-0.121513408684
-0.121510897622
-0.121504360999
-0.121495903232
-0.121487077826
-0.121476049826
-0.121462343932
-0.121445767378
-0.121426877746
-0.121403147778
-0.121378434795
-0.121354433923
-0.121331273677
-0.121308261312
-0.121281354751
-0.121255671892
-0.121231943882
-0.121209650892
-0.121188379083
-0.121169740522
-0.121154847317
-0.121145871315
-0.121145975011
-0.121158883098
-0.12119081606
-0.121246035288
-0.121317346698
-0.121397029463
-0.121497386407
-0.121626077632
-0.121784283842
-0.121978173984
-0.122210327335
-0.122482174533
-0.122796763174
-0.123154513391
-0.123557845959
-0.124010580767
-0.124516373328
-0.125078264407
-0.12569897507
-0.126381675149
-0.127127970288
-0.127936271006
-0.128803547297
-0.12973371524
-0.130735046983
-0.131800087214
-0.132904646198
-0.134024518573
-0.134974597374
-0.136028208437
-0.136388134111
-0.136735590484
-0.137128539871
-0.137487486633
-0.137738584548
-0.137600938362
-0.137024593524
-0.136119287734
-0.134910174678
-0.133431316989
-0.131762829915
-0.129951224815
-0.128049309996
-0.126103803348
-0.124164474986
-0.122274432132
-0.120473494847
-0.118808321714
-0.117346051794
-0.116149406149
-0.115182892593
-0.11450257673
-0.114342219696
-0.11506614529
-0.116557270202
-0.117414429746
-0.117332184656
-0.122266709344
-0.121484522566
-0.121481370758
-0.12147345724
-0.121463780131
-0.121452677168
-0.121438494608
-0.121420779113
-0.121400506061
-0.12137591662
-0.121345716501
-0.121314109008
-0.12128277305
-0.121251708285
-0.121219030071
-0.121183266295
-0.121147857586
-0.12111328245
-0.121078888795
-0.121045012929
-0.121012814291
-0.120982834005
-0.120956829474
-0.120938713227
-0.120930432964
-0.120937557732
-0.120966410462
-0.121015163265
-0.121077469109
-0.121157020798
-0.12126289231
-0.121398908361
-0.121569122093
-0.121780537978
-0.12203503565
-0.122336260411
-0.122683719466
-0.123078679591
-0.123525644807
-0.124028972243
-0.124592440624
-0.125219085444
-0.125912224349
-0.12667517268
-0.127508046634
-0.12840878457
-0.129380397831
-0.130435960358
-0.131584675637
-0.132816616666
-0.134159602579
-0.134909581154
-0.135348589126
-0.135783729963
-0.136467688587
-0.136866150907
-0.13699220281
-0.136802441304
-0.136109449203
-0.134961897089
-0.133463286129
-0.131659514068
-0.12960343699
-0.127356842584
-0.124958391934
-0.122446207461
-0.119851609387
-0.117206536419
-0.114539355702
-0.111875965901
-0.10924644857
-0.106704200022
-0.104313258276
-0.102012366805
-0.0996849911681
-0.0974435526409
-0.0957358654104
-0.0945095824723
-0.0900354645711
-0.0743894144243
-0.0558520967665
-0.121458009891
-0.121454259369
-0.121445287608
-0.121434167761
-0.121420409836
-0.121402701199
-0.121380858366
-0.121356304109
-0.121325382141
-0.121288472272
-0.121249489022
-0.121210254999
-0.121170757029
-0.12112834732
-0.121082082011
-0.121035775646
-0.120989296725
-0.120941525029
-0.12089326103
-0.120846058025
-0.120799657165
-0.120755132887
-0.120716848915
-0.120686088823
-0.120667300104
-0.120667205534
-0.120688919266
-0.120730030612
-0.120791240703
-0.120870353309
-0.120979631906
-0.121124358732
-0.121311345359
-0.121542255092
-0.121824764923
-0.122160817886
-0.122546994287
-0.122987593341
-0.12348720758
-0.124050752754
-0.124682577092
-0.125386333135
-0.126166150456
-0.127022417788
-0.127951469941
-0.128958452302
-0.130065452685
-0.131313407602
-0.132758773321
-0.135113324666
-0.134520016151
-0.134806696154
-0.135525946543
-0.136273171443
-0.136346422162
-0.13602294013
-0.135233239812
-0.133899466098
-0.132107361833
-0.129950321742
-0.127486431656
-0.124771147404
-0.121850177977
-0.118751744347
-0.115501660809
-0.112122161788
-0.108637143129
-0.105068835045
-0.101433946953
-0.0977388244304
-0.0939808868044
-0.0901375327762
-0.0860989523807
-0.0815061573032
-0.0762274876628
-0.0706335593014
-0.064159542433
-0.0499954822957
-0.0122267391523
0.0430728832139
-0.12143433725
-0.121429939218
-0.121419989724
-0.121407171725
-0.121390475606
-0.121369043817
-0.121343253004
-0.121313469841
-0.121275924514
-0.121232359188
-0.121185467898
-0.12113765586
-0.121089045088
-0.121036324352
-0.120978575433
-0.120920241607
-0.120860878853
-0.120798187596
-0.120733805997
-0.120669804413
-0.120604976412
-0.120540156116
-0.120479282298
-0.12042449536
-0.120378559854
-0.120347527118
-0.12033835697
-0.12035121299
-0.120389836472
-0.120444985685
-0.120524410006
-0.120637119795
-0.120796023534
-0.12100397658
-0.12126202423
-0.121579492049
-0.121954789914
-0.122388215601
-0.122884269654
-0.123447263218
-0.124082771467
-0.124796808701
-0.125592954482
-0.126468952024
-0.127418083501
-0.128447536271
-0.129579616751
-0.130833811479
-0.131917841576
-0.132919223428
-0.133611193238
-0.133897389246
-0.135336620243
-0.135721344731
-0.13534688542
-0.134428357352
-0.132937979262
-0.130894017108
-0.128397709115
-0.125536477738
-0.122372936655
-0.118961733682
-0.115344761426
-0.111552741973
-0.107613941073
-0.103552357938
-0.0993865106159
-0.0951217889718
-0.0907417200383
-0.0861944947106
-0.0813762395097
-0.0761199767977
-0.0701932347682
-0.0631722558691
-0.0547575088207
-0.0450722848856
-0.0323868808501
-0.00716050827568
0.0476547329289
0.117605201152
-0.121413625249
-0.121408613143
-0.121397710309
-0.121382885494
-0.121362843156
-0.121337679293
-0.12130782278
-0.121272014962
-0.12122806429
-0.121178070714
-0.121122779049
-0.121065729485
-0.121007237511
-0.120943399321
-0.120873277423
-0.120801752873
-0.120728296619
-0.120648819347
-0.120566920776
-0.120484373695
-0.120398373478
-0.120311564636
-0.120225954786
-0.12014466317
-0.120070168739
-0.12000675998
-0.119963214714
-0.119941927941
-0.119948268825
-0.119978229326
-0.120029796704
-0.12010854511
-0.120229870431
-0.120407265631
-0.120641997873
-0.120936975338
-0.121296381422
-0.121719735497
-0.12221063614
-0.122773463943
-0.123413145249
-0.124136051096
-0.12494518248
-0.125835232979
-0.126801699905
-0.127863365395
-0.1290643346
-0.13044399073
-0.130794994096
-0.130490126839
-0.131039466037
-0.133088254333
-0.134705877295
-0.134614212703
-0.133717657546
-0.132104775765
-0.129864682786
-0.127075062312
-0.123852580507
-0.120287236944
-0.116449126465
-0.112397737695
-0.108180304271
-0.103833505125
-0.0993846179537
-0.0948456662674
-0.0902070032358
-0.0854294094301
-0.0804395493347
-0.0751205031267
-0.0692822558423
-0.0626210308428
-0.0547506290674
-0.0453803506311
-0.0342440116643
-0.0210454169218
-0.0029324493431
0.0305404445224
0.0917655274809
0.156360127717
-0.12139674354
-0.12139108768
-0.121379056297
-0.121361686434
-0.121338243326
-0.121309405988
-0.121275155281
-0.121233148278
-0.121183771468
-0.121126975124
-0.121062430264
-0.120995372921
-0.120926232839
-0.120850409289
-0.120766940475
-0.120681051324
-0.120590955382
-0.120493196208
-0.120393094799
-0.120290279426
-0.120180520445
-0.120070134963
-0.11996002859
-0.119848253075
-0.119742818581
-0.119644838315
-0.119563943852
-0.11950475237
-0.119471965689
-0.119467341578
-0.119488503789
-0.119537451567
-0.119618519586
-0.119753102574
-0.119953737781
-0.12022323797
-0.120563805422
-0.120975202232
-0.121458607112
-0.122020235717
-0.122664018794
-0.123393728201
-0.124210242276
-0.12510786904
-0.126090682555
-0.127206883083
-0.128559857087
-0.131009727492
-0.129371202601
-0.128804694136
-0.130126899337
-0.132651057576
-0.133615463899
-0.132939144704
-0.131388045988
-0.129018863254
-0.126015135374
-0.122487079366
-0.118568736865
-0.114357875207
-0.109934178484
-0.105361358497
-0.100686129137
-0.0959367580393
-0.0911198886
-0.0862144370809
-0.081166720724
-0.0758880382185
-0.0702577574046
-0.0641196731094
-0.0572441654026
-0.0492594841435
-0.0396754424031
-0.0281524179333
-0.0146507258936
0.00143007924557
0.0238725631749
0.0624847691617
0.124274654395
0.180658894915
-0.121384715519
-0.121378436067
-0.121365081608
-0.121345120759
-0.121318611754
-0.121285888494
-0.121247065166
-0.121199300575
-0.121143872043
-0.121079091602
-0.121005193679
-0.12092765241
-0.120847168052
-0.12075857217
-0.120660870658
-0.120559348478
-0.120450990411
-0.120334514808
-0.120214996544
-0.12008972932
-0.119954920342
-0.119821026658
-0.119685162062
-0.119544245009
-0.119403048365
-0.119265681594
-0.1191433411
-0.119041755957
-0.118964216685
-0.11891596091
-0.118897210252
-0.118911323977
-0.118954730545
-0.119044345522
-0.119198331779
-0.119429382926
-0.119744275511
-0.120141764722
-0.120617960263
-0.121177780442
-0.121824053471
-0.122559254416
-0.123378442824
-0.12427219424
-0.125232575526
-0.126233266774
-0.127174732441
-0.127750077145
-0.127688835886
-0.127461934957
-0.13017743813
-0.132096760834
-0.132127550759
-0.130704259764
-0.128364626337
-0.125207414492
-0.121455149595
-0.117237412221
-0.11270100644
-0.107949383094
-0.103065935452
-0.0981092139054
-0.0931123894981
-0.0880807875468
-0.0829899669889
-0.0777837368089
-0.0723736742377
-0.0666406029214
-0.060439202974
-0.0535931678533
-0.0458522270306
-0.0368139251876
-0.0259367039383
-0.0128123779376
0.00259579585474
0.0209397413848
0.0462640160939
0.0873349179255
0.147200096393
0.196962625887
-0.121379160189
-0.121372049206
-0.12135716535
-0.121334900347
-0.121305360835
-0.121268436443
-0.121224787153
-0.121171099738
-0.121108518115
-0.121035570127
-0.12095226547
-0.12086384421
-0.120771439972
-0.120669400046
-0.120556877676
-0.120439051037
-0.120312387272
-0.120176372453
-0.120035844935
-0.119886905196
-0.119728973327
-0.119570163737
-0.119404800977
-0.119234254933
-0.119057471032
-0.118880705257
-0.118709641789
-0.118557785646
-0.118429383953
-0.118330147395
-0.118259590812
-0.118224468336
-0.118227345768
-0.118270621428
-0.118375326311
-0.118556201223
-0.118831070499
-0.119205769803
-0.119674187393
-0.120232231752
-0.12088251992
-0.121627075314
-0.122458110196
-0.12337291066
-0.124352197751
-0.125180472728
-0.125225639611
-0.124890426034
-0.124596493557
-0.126739965793
-0.129960950554
-0.130980748265
-0.130118334161
-0.127857655881
-0.124679602012
-0.120746804274
-0.116296829946
-0.1114738136
-0.106428480575
-0.101262167389
-0.0960507593518
-0.0908362044723
-0.0856283415691
-0.08040442884
-0.0751110785574
-0.0696661602251
-0.0639603325904
-0.0578580896748
-0.0511993950743
-0.0437916683379
-0.0353678963373
-0.0255170126701
-0.0137021289014
0.000494556576383
0.0171962999938
0.0371753830935
0.0642526832344
0.105913876861
0.16269476474
0.207079729179
-0.121380689943
-0.121372749741
-0.12135625856
-0.121331958432
-0.121299484616
-0.121258202126
-0.121209431327
-0.121149652027
-0.121079816
-0.120998641171
-0.120905335449
-0.120805538042
-0.120700580024
-0.120584409165
-0.120456531396
-0.120321646206
-0.120176365205
-0.120020340543
-0.119857786005
-0.119684939366
-0.119503010692
-0.119314865128
-0.119117519598
-0.118912399154
-0.118700230951
-0.118481686243
-0.118261884154
-0.118054363965
-0.11787059511
-0.117713971952
-0.117583240319
-0.117484588156
-0.117428957065
-0.117417874533
-0.117467494034
-0.117594043629
-0.11781829728
-0.118157274523
-0.118611545242
-0.119168218659
-0.119826996999
-0.120589850057
-0.121455994986
-0.122420991728
-0.123531044793
-0.125257888829
-0.12393918031
-0.123284741959
-0.123621238417
-0.126758545035
-0.129243588826
-0.129262479565
-0.127497149291
-0.124374019913
-0.120383474846
-0.115734552603
-0.110674332146
-0.10535628993
-0.0999254467558
-0.0944715140284
-0.089052199468
-0.0836851976633
-0.0783537278705
-0.0730090401717
-0.0675753720429
-0.0619532834917
-0.0560207997565
-0.0496327890814
-0.0426204513389
-0.0347830890612
-0.0258521905367
-0.0154353282314
-0.00304041292207
0.0117083730254
0.0289390347473
0.0494029033157
0.0766414628137
0.116995048592
0.169909490394
0.210132391001
-0.121390528272
-0.121381557204
-0.121363579453
-0.121337036911
-0.121301429651
-0.1212560512
-0.121202204269
-0.121136483217
-0.121059496249
-0.12096986086
-0.120866153567
-0.120754411149
-0.120636213267
-0.120505255859
-0.120361486981
-0.120208598081
-0.12004407714
-0.119867376465
-0.119681248185
-0.119482489537
-0.119272952133
-0.119052177619
-0.118819152617
-0.118577358977
-0.118324109829
-0.118062463607
-0.117795230794
-0.117529782763
-0.117288285826
-0.117068176708
-0.116872228951
-0.116704837189
-0.116575858536
-0.116491468738
-0.116467991591
-0.11652788654
-0.116690765485
-0.116982376539
-0.117412932768
-0.117966952272
-0.118637704597
-0.119418535553
-0.120316336748
-0.12130392738
-0.122197320778
-0.122033298583
-0.122587812466
-0.121596938572
-0.123893682273
-0.126824851533
-0.128103033063
-0.127023838245
-0.124284278914
-0.120303057015
-0.115560468745
-0.11028602881
-0.104726983257
-0.0990358132899
-0.0933419984006
-0.0877150337459
-0.0821873999452
-0.0767497716742
-0.0713601247967
-0.0659485534639
-0.0604235315009
-0.0546750701646
-0.0485749697451
-0.0419752060604
-0.0347067177773
-0.0265724618284
-0.0173179467851
-0.00658485494465
0.00606841693132
0.0209801113883
0.038251271505
0.0584594993966
0.0845685435174
0.122079192762
0.170649764526
0.207814618423
-0.121409597214
-0.12139963503
-0.121380070173
-0.121351170376
-0.121312263979
-0.121262916099
-0.121204107809
-0.12113262599
-0.12104845549
-0.120950567775
-0.120836412007
-0.12071211804
-0.120580119125
-0.120434166715
-0.120273937794
-0.120101965715
-0.119918018595
-0.119719766478
-0.119507843203
-0.119280934725
-0.119039855268
-0.118784455238
-0.118515041732
-0.118235362052
-0.11794101097
-0.117636249931
-0.117315332552
-0.116994675479
-0.116687367729
-0.116396618815
-0.116127225315
-0.115885318153
-0.115674686834
-0.115504808579
-0.115388671769
-0.115357097275
-0.115435973018
-0.115662423848
-0.116057723827
-0.116606797119
-0.117297977164
-0.118118074784
-0.119049799191
-0.120081772508
-0.122136494447
-0.120354850229
-0.120152132226
-0.120872323887
-0.124274639188
-0.126361622218
-0.12644385437
-0.124245719316
-0.120524821818
-0.115729605908
-0.110317887645
-0.104525371136
-0.0985871207812
-0.0926423691414
-0.0867961055895
-0.0810914677815
-0.0755328452633
-0.0700850711181
-0.0646849054886
-0.0592469273209
-0.0536696874123
-0.0478379342764
-0.0416219072701
-0.0348749072155
-0.0274314303697
-0.0191014323292
-0.00964692596929
0.00125728498491
0.0140126077978
0.0289409241769
0.0461308437121
0.0659588453071
0.0907486681436
0.125252623062
0.169634568847
0.204226229007
-0.121439183104
-0.121428374528
-0.121407023425
-0.121375678306
-0.121333380531
-0.121279943785
-0.121216237401
-0.121139100339
-0.121047708465
-0.120942058889
-0.120817778455
-0.120680358312
-0.120534418851
-0.120373780885
-0.120196631581
-0.120004735871
-0.119800788592
-0.119579591287
-0.119339703548
-0.119082891852
-0.118809405636
-0.118518876087
-0.118214397772
-0.117895706268
-0.117561150507
-0.117206840188
-0.116830198443
-0.116450011049
-0.116071757792
-0.115707310043
-0.115353480945
-0.115024029179
-0.114723310962
-0.114461476088
-0.114239269588
-0.114087310155
-0.114048056795
-0.114176010951
-0.114516991053
-0.115052017288
-0.115770147832
-0.116683795882
-0.117673259871
-0.11843278193
-0.117929135341
-0.118694694824
-0.117789293932
-0.121023503473
-0.124237755577
-0.125274657723
-0.124185619407
-0.120898840384
-0.116263730792
-0.110740358165
-0.104764815624
-0.0985704143497
-0.092369888556
-0.086279389827
-0.0803732590728
-0.074665406743
-0.0691327372139
-0.0637177660092
-0.058340983065
-0.0529066790373
-0.0473081517698
-0.0414288232078
-0.0351407822549
-0.0283018505499
-0.0207533932148
-0.0123161242533
-0.00277271579686
0.00816537886475
0.0208576224691
0.0356092173357
0.0525014009548
0.0717450683225
0.0951356876468
0.12684636468
0.167584000735
0.200069884255
-0.121479584161
-0.121468114328
-0.121445227189
-0.121411547292
-0.12136597259
-0.121308378364
-0.121239836909
-0.121157165136
-0.121058421403
-0.12094553256
-0.120812057792
-0.12066118829
-0.120500868467
-0.120326338362
-0.120132539827
-0.119919709607
-0.119694215146
-0.119448299914
-0.119179663999
-0.118892403952
-0.118586153918
-0.118260331324
-0.117919395552
-0.117556755093
-0.117174659359
-0.116771267023
-0.116342229152
-0.115898955335
-0.115455766824
-0.115012735191
-0.114572391165
-0.11414314211
-0.113737499099
-0.11336106959
-0.113024800827
-0.112733346138
-0.112534423432
-0.112501530125
-0.112755019721
-0.113254556433
-0.11399491073
-0.115022216319
-0.116309490307
-0.11790719668
-0.116558834613
-0.116423729561
-0.117055458227
-0.121511529807
-0.123684146266
-0.12362244677
-0.121333201265
-0.117018389919
-0.1115665313
-0.105423853831
-0.0990026056237
-0.0925228701424
-0.0861672842235
-0.0800224864672
-0.0741295045226
-0.0684732858136
-0.06300618787
-0.0576529198631
-0.0523225241269
-0.0469134049288
-0.0413172809033
-0.0354193580462
-0.0290964534363
-0.0222139061379
-0.0146233565601
-0.00616000369431
0.00336974835575
0.0142166202021
0.0266974828281
0.0410965408015
0.0574855125084
0.0759456990459
0.0978634370334
0.126989066993
0.164571417523
0.195371731431
-0.121531786423
-0.121519601218
-0.121495414239
-0.121459481944
-0.121410918258
-0.121349307243
-0.121276147498
-0.121188451636
-0.121082291686
-0.120962153754
-0.120820645671
-0.120656738278
-0.120481508209
-0.120293644271
-0.120083515591
-0.119849174205
-0.119600697144
-0.119328532837
-0.119030600638
-0.118712546318
-0.118371598481
-0.118008805382
-0.117626334603
-0.11721654005
-0.116786365823
-0.116334466111
-0.115853906928
-0.115351397357
-0.11484526341
-0.114324848187
-0.113800818321
-0.113271819661
-0.11275014133
-0.112240466928
-0.111761170589
-0.111315046536
-0.110924472393
-0.110643603311
-0.110702808606
-0.111152962883
-0.111992813264
-0.11313909325
-0.114368747693
-0.119887733264
-0.115386760627
-0.113580579533
-0.117194368669
-0.121654456535
-0.122600346011
-0.121420700264
-0.117929236459
-0.112678154746
-0.106516556257
-0.0998710730908
-0.0931221708555
-0.0864653940814
-0.0800473933142
-0.0739217449612
-0.0680964406153
-0.0625300116743
-0.057154486192
-0.0518814889383
-0.0466130268292
-0.041245406525
-0.0356719698517
-0.0297825873573
-0.0234616068409
-0.0165847777529
-0.00901701796587
-0.000610652170341
0.00880327580446
0.019439714986
0.0315761425601
0.0454757528324
0.0612027879663
0.0787413255225
0.0991576933788
0.125879248053
0.160672925447
0.190093910428
-0.121596004215
-0.121583225558
-0.121557916447
-0.121519858483
-0.121468708883
-0.121403573559
-0.121326052378
-0.121234376603
-0.121122258312
-0.120993570984
-0.12084411692
-0.120669040801
-0.120479517202
-0.120277089754
-0.120049788911
-0.119795023982
-0.119522791374
-0.11922346204
-0.118895435896
-0.118547074027
-0.118170949291
-0.117766820656
-0.117337314553
-0.116879255886
-0.116399041211
-0.115893516417
-0.115361944792
-0.114804343258
-0.114230146108
-0.113643615273
-0.113038645935
-0.112419464014
-0.111778170431
-0.111139248821
-0.110501216588
-0.109875771908
-0.109265955731
-0.108697915074
-0.108283953924
-0.108558020864
-0.109540307833
-0.110991150033
-0.111849393919
-0.110477294985
-0.111157378517
-0.110414364269
-0.117549415885
-0.121084724414
-0.120957102152
-0.11864433507
-0.114024230895
-0.107954868421
-0.10119822874
-0.0941672076952
-0.0872005223124
-0.0804612760807
-0.0740565715543
-0.0680060042821
-0.0622869165658
-0.0568353108953
-0.0515675854793
-0.0463868193107
-0.0411919491367
-0.0358805308377
-0.0303504221847
-0.0244988028854
-0.0182200539935
-0.0114027141395
-0.00392715655996
0.00433564077097
0.0135302012053
0.0238385282978
0.0355027359257
0.048767608947
0.0636965694484
0.0802084080081
0.0991208119727
0.123607151291
0.155923436009
0.184222392432
-0.121673065778
-0.121659661152
-0.121632717615
-0.121592783915
-0.121539617306
-0.121471693239
-0.121390275479
-0.121294932609
-0.121178605115
-0.121041782269
-0.120885052702
-0.120700245195
-0.120496744886
-0.120278622107
-0.120033768238
-0.119759496977
-0.11946295395
-0.119136760987
-0.118779081318
-0.118396885988
-0.117981837049
-0.117533569798
-0.117055161103
-0.116548283756
-0.116012211167
-0.115446927433
-0.114857807376
-0.114240864378
-0.113599109613
-0.112944144413
-0.112266892608
-0.111559271605
-0.110823416814
-0.110065585943
-0.109282423795
-0.108484272393
-0.107663175451
-0.106821316047
-0.105905995312
-0.105323027905
-0.106222320672
-0.108556095058
-0.111278308163
-0.107825065468
-0.106496545197
-0.108948852269
-0.117760011707
-0.119830327245
-0.118770375428
-0.115304937305
-0.109682610018
-0.102921115724
-0.0956885240677
-0.0883846975934
-0.081297999889
-0.0745551699755
-0.0682227124882
-0.0622876938081
-0.0567005933519
-0.0513794036292
-0.0462295731075
-0.0411497904579
-0.0360394288365
-0.0308002340347
-0.0253371370703
-0.0195569413259
-0.0133661719015
-0.00666804991169
0.000640013147506
0.0086674815413
0.0175350657382
0.0273946604504
0.038457326435
0.0509538895226
0.064955902562
0.080345656951
0.0977524190599
0.120159039085
0.15029970289
0.177747156527
-0.121762996177
-0.121749141352
-0.121720720764
-0.121679413145
-0.121624520424
-0.121554441222
-0.121469792358
-0.121370650854
-0.121250988204
-0.12110778331
-0.120944869331
-0.120751802832
-0.120534502847
-0.120300603703
-0.120039153081
-0.119745113707
-0.119423982224
-0.119072306209
-0.118684417743
-0.118263849811
-0.117807228232
-0.117313274494
-0.116784830868
-0.116223861883
-0.115623475718
-0.114995465286
-0.114337234716
-0.113647152969
-0.112933062426
-0.112199397479
-0.111449416815
-0.110670114834
-0.109863930962
-0.109012035594
-0.108135077705
-0.107225882208
-0.106277399829
-0.105262801737
-0.104246529331
-0.103323795967
-0.101817156833
-0.105179666782
-0.112737332525
-0.105968756309
-0.102912756994
-0.109223371856
-0.117676493551
-0.118121605035
-0.116105022917
-0.111472087193
-0.104984485876
-0.0976487294868
-0.0900558880423
-0.082581560796
-0.0754583541601
-0.0687751479178
-0.0625588886707
-0.0567672981359
-0.0513285350489
-0.0461472402277
-0.0411222773268
-0.0361516139795
-0.031138079146
-0.0259901059157
-0.0206218291894
-0.0149515170635
-0.00889938752513
-0.00238455132856
0.00467778200902
0.0123775185805
0.0208128281629
0.0301082788857
0.0404475130365
0.0520512890886
0.0650060038225
0.0791762248463
0.0950483499207
0.115488108356
0.143747022546
0.170652953462
-0.121866768913
-0.121852579226
-0.121824625549
-0.121781572617
-0.121724722596
-0.121652820027
-0.12156556861
-0.121463245808
-0.121340658727
-0.121192026845
-0.121023481608
-0.120825146819
-0.120594527776
-0.120344866567
-0.120069454781
-0.119756394995
-0.119408801765
-0.119032659863
-0.118614493488
-0.118153179397
-0.117654479682
-0.117111408501
-0.116529971889
-0.115908950972
-0.115240885967
-0.114539363309
-0.113797427858
-0.113023057622
-0.112219445645
-0.111391496081
-0.110552882869
-0.109707959082
-0.108829529551
-0.10792479443
-0.106989390669
-0.106026136204
-0.105039733752
-0.104015824913
-0.103069510582
-0.101690259602
-0.101513585004
-0.101362201637
-0.102682435045
-0.101547301054
-0.0992184982388
-0.110076560882
-0.117006929486
-0.116048226544
-0.112992746342
-0.10723117763
-0.100009185939
-0.0922057129301
-0.0843588613275
-0.0768020005557
-0.0697107272182
-0.0631357666315
-0.0570671321966
-0.0514373415747
-0.0461569967078
-0.041121846092
-0.0362280665846
-0.0313760493641
-0.0264746003018
-0.0214408735497
-0.0161998905876
-0.0106827901195
-0.00482465039408
0.00143854633157
0.0081729763216
0.0154484809366
0.0233407917687
0.0319478056323
0.0414267124995
0.0519911603248
0.0637518040174
0.0765740380773
0.0908364004791
0.109375286855
0.136082792193
0.162872134074
-0.121983721852
-0.121969282511
-0.121942168168
-0.121898363343
-0.121839826411
-0.121766790346
-0.121677991309
-0.121573596062
-0.121449445573
-0.121297390273
-0.121122530867
-0.120920777779
-0.120680113561
-0.120414352893
-0.12012583316
-0.119796815461
-0.119424042557
-0.119020362043
-0.118570381591
-0.118069120195
-0.117528918509
-0.116936390434
-0.116292562454
-0.115602662773
-0.114864163739
-0.114078019109
-0.113245580153
-0.112374063085
-0.111463671778
-0.110521016403
-0.109557659848
-0.108591758649
-0.107613565414
-0.106624643951
-0.105599561136
-0.10454781661
-0.103489625101
-0.102489928202
-0.101709869458
-0.100989486601
-0.101157134942
-0.100748092406
-0.0990857356654
-0.0973841636929
-0.0974356689353
-0.111009261238
-0.115658345972
-0.113589135363
-0.109429990732
-0.102650831605
-0.0948198330835
-0.0866493058884
-0.0786433211871
-0.0710770598128
-0.0640719467422
-0.0576412267631
-0.0517418307626
-0.0462855618961
-0.0411700721379
-0.0362862461762
-0.031530903265
-0.0268094400513
-0.0220386408293
-0.0171459507297
-0.0120685615547
-0.00675156948077
-0.00114585610423
0.00479490373371
0.0111176493439
0.0178721496045
0.0251129880275
0.0329139927904
0.0414086961811
0.0508082216108
0.061260862055
0.0726496287107
0.0852351633581
0.101839469673
0.127228869218
0.154462419215
-0.122113483652
-0.122098629137
-0.122070189108
-0.122026864391
-0.12196850337
-0.121895537289
-0.121806554256
-0.121701126372
-0.121577016593
-0.121424497912
-0.121244303492
-0.121040656073
-0.120795074913
-0.120514805602
-0.120210888262
-0.119866957699
-0.119472781754
-0.119039392101
-0.118558684951
-0.118019976806
-0.117431650323
-0.116784788062
-0.1160767371
-0.115315036764
-0.114497396571
-0.113619228555
-0.112690403088
-0.111705821796
-0.110674105428
-0.109597925986
-0.108484262826
-0.107338959052
-0.10617286347
-0.104983550754
-0.103754845792
-0.102487141197
-0.101200571437
-0.099956398733
-0.0989014303721
-0.0982808464213
-0.0989961641455
-0.101747892462
-0.0959964067531
-0.0916613603557
-0.0972771275641
-0.111593582571
-0.113781867173
-0.110754178069
-0.105441462278
-0.0977904269779
-0.0894648547721
-0.0810237883811
-0.0729416003921
-0.0654257278758
-0.0585487619297
-0.0522881718852
-0.046572518135
-0.0412973465635
-0.0363516110654
-0.0316248292262
-0.0270172258305
-0.0224412744405
-0.017823305286
-0.0131022720521
-0.00822854250797
-0.00316203104279
0.0021298595065
0.00767519345225
0.0135012381301
0.0196374726035
0.0261175508456
0.0329909136591
0.0403625195243
0.048428846103
0.0573691025419
0.0670969623542
0.0777383490968
0.092055017771
0.11615414685
0.145229109019
-0.122255579674
-0.122240895602
-0.122211803426
-0.122168893052
-0.12211166939
-0.122039252169
-0.12195085448
-0.121845488171
-0.121722159847
-0.121571930157
-0.121389066295
-0.121182622088
-0.120939492268
-0.120647861658
-0.120327468348
-0.119971450131
-0.119559048946
-0.119094210624
-0.118584250937
-0.118009528491
-0.117368829988
-0.116665935906
-0.115890087592
-0.115052616393
-0.114149101478
-0.113176082888
-0.11213730131
-0.111028553982
-0.10986678831
-0.108642685933
-0.107361534125
-0.106023364728
-0.104636884536
-0.103194321408
-0.101691991083
-0.100115786453
-0.0984610042794
-0.0967389951361
-0.0950798609677
-0.0939101025618
-0.0947333461746
-0.103376663566
-0.092361621508
-0.0867288819012
-0.0981951372833
-0.111485496466
-0.111481355182
-0.10754202594
-0.101078290964
-0.0927052621678
-0.0839844804352
-0.0753624637019
-0.0672742564975
-0.0598569988308
-0.0531401769334
-0.0470680957253
-0.0415460211138
-0.0364574235188
-0.0316863437728
-0.0271238564562
-0.0226757907174
-0.0182632585462
-0.013823247466
-0.00930703208965
-0.00467880265405
8.61565685635e-05
0.00500344256702
0.0100824065893
0.0153300374578
0.020754650136
0.0263684306651
0.0321973556513
0.0383185445846
0.0449092979529
0.0521819909791
0.0601477166127
0.0689428007759
0.0812463681513
0.104315540183
0.13651323314
-0.122409939382
-0.122396028987
-0.12236878432
-0.122327327487
-0.122270059213
-0.122198080612
-0.12211062495
-0.12200640583
-0.121885223665
-0.121739571314
-0.121559457593
-0.121349104608
-0.121110002059
-0.120816627954
-0.120480096797
-0.120111816937
-0.119686521432
-0.119194435972
-0.118650881898
-0.1180390699
-0.117347178341
-0.116587319065
-0.115745741616
-0.114823343867
-0.113826557014
-0.112751563234
-0.111593366822
-0.110361758742
-0.109056953043
-0.107677581164
-0.106228992425
-0.104705805787
-0.103112836418
-0.101438144509
-0.0996693810864
-0.0977856943566
-0.0957398327846
-0.0934748651268
-0.0910034311835
-0.0884303027596
-0.0863575107461
-0.0872210886078
-0.0859289606984
-0.0817988497483
-0.0994846855909
-0.110559270044
-0.108810568579
-0.103937379477
-0.0963932957199
-0.0874395088606
-0.0784111988507
-0.0696889056205
-0.0616524164983
-0.054372251492
-0.0478397472045
-0.0419693789103
-0.0366480805778
-0.0317510053848
-0.0271605489582
-0.0227717141017
-0.018497637432
-0.0142692193693
-0.0100349095858
-0.00575893256
-0.00141989981506
0.0029909047878
0.00747146819671
0.012011978452
0.016598948296
0.0212195998977
0.0258655600891
0.030542716211
0.0353043805673
0.0402951189227
0.0456990052102
0.0515565450068
0.0581202462081
0.0679923986572
0.0873860155938
0.113161038751
-0.122574692089
-0.122561547474
-0.122536432775
-0.12249882935
-0.122441498941
-0.122370152646
-0.122284520335
-0.122182766642
-0.122065045061
-0.121925792397
-0.121753141557
-0.121543212289
-0.121304724404
-0.121020994574
-0.120675424964
-0.120290510765
-0.119856132062
-0.119345341962
-0.118764105502
-0.118117216114
-0.117379592133
-0.116554260451
-0.115642458332
-0.114631591944
-0.113539349628
-0.112359462949
-0.111080037937
-0.1097131891
-0.108260341193
-0.10672908206
-0.105111876393
-0.103409375792
-0.10162699711
-0.0997501074989
-0.0977715018038
-0.0956604905152
-0.0933596886402
-0.0907212641531
-0.0878414568812
-0.0829783808537
-0.0846103015671
-0.0847245659266
-0.0826859035242
-0.080303771957
-0.101207510389
-0.108947260724
-0.10582051751
-0.0999410627612
-0.0914352524249
-0.0820244051075
-0.072768590017
-0.0640172796828
-0.0560795745795
-0.0489672820389
-0.0426375448247
-0.0369789191319
-0.0318645451667
-0.0271645479869
-0.0227624209959
-0.0185589651211
-0.0144758977464
-0.0104547086176
-0.00645583954943
-0.00245686604188
0.00154882890317
0.00555369593469
0.009538061092
0.0134732177237
0.0173254725803
0.0210598422396
0.0246423200849
0.0280468950944
0.0312794253353
0.0343937818509
0.0374024124993
0.0401574141236
0.0430350665283
0.0489862806681
0.0611944769303
0.0648155957579
-0.122748861899
-0.122735745252
-0.122710066065
-0.122673545791
-0.122621199882
-0.122552581134
-0.122470163988
-0.122372610515
-0.122259652985
-0.122128329924
-0.12196765662
-0.121766899563
-0.121527953624
-0.121253462521
-0.120915969906
-0.120516575209
-0.120070838819
-0.119550843946
-0.118936151513
-0.118248609855
-0.117467835443
-0.116574967019
-0.115589143162
-0.114498047894
-0.113300322268
-0.112003059312
-0.110598543369
-0.109091426337
-0.107490321599
-0.105794324307
-0.104007092236
-0.10213358007
-0.100171030035
-0.0981168578696
-0.0959763157048
-0.0937394271417
-0.0913850123657
-0.0888415824804
-0.0861623936718
-0.0817634448806
-0.0848122963479
-0.0834478546631
-0.0758785806436
-0.0805528961464
-0.102578124433
-0.106793472257
-0.102552209992
-0.0955767980006
-0.0862477464261
-0.0764809417394
-0.0670717122179
-0.0583533176337
-0.0505532097245
-0.0436339839908
-0.0375217290107
-0.0320833627178
-0.0271822148641
-0.0226862289438
-0.0184822535727
-0.0144783337222
-0.0106057057556
-0.00681701776166
-0.00308513386462
0.000598548398024
0.00422520305067
0.00776998089854
0.0111938449351
0.0144461660715
0.0174673250861
0.0201891796187
0.0225322956179
0.0244073003223
0.0257290172975
0.0264022580727
0.0261864837303
0.024639605172
0.0220028238657
0.020395520886
0.0182745531037
-0.000681271095309
-0.122931154688
-0.122918422945
-0.122893140562
-0.122853772225
-0.122807383711
-0.122743025406
-0.122665011751
-0.122573154407
-0.122466367171
-0.122344547218
-0.122198744148
-0.122015436499
-0.121786877802
-0.12151679023
-0.121197870154
-0.120799398456
-0.120333789737
-0.119808033692
-0.119177181695
-0.118440027824
-0.117617114556
-0.116669746711
-0.115600179353
-0.114418518325
-0.11311149506
-0.111692339269
-0.110156696114
-0.108504515734
-0.106739937789
-0.104875458453
-0.102919338814
-0.100859596901
-0.0987035851558
-0.0964689754638
-0.0941744112555
-0.0918265312497
-0.0894507414887
-0.0871179749029
-0.0850328728071
-0.0834142332558
-0.0871419025525
-0.0799675445589
-0.0703224508128
-0.0817711541223
-0.102775368072
-0.104073801087
-0.0989321019363
-0.0908506912297
-0.0808559856096
-0.0708193846586
-0.0613275455577
-0.0526959263323
-0.0450665227507
-0.0383619075218
-0.032479850942
-0.0272700519805
-0.0225894529926
-0.0183062917734
-0.0143126240844
-0.0105248848489
-0.00688458730407
-0.00335609688164
7.46488018558e-05
0.00340143409974
0.00659842932368
0.00962117292416
0.0124080151689
0.0148821405302
0.0169531172996
0.0185155739298
0.0194447744015
0.0195994928746
0.018841298293
0.0170194544413
0.013833910847
0.00883522592527
0.00233156833597
-0.00387245779931
-0.0114297533716
-0.0296343052017
-0.123118547283
-0.123106935044
-0.123085281259
-0.12304431951
-0.122999074656
-0.122939690627
-0.122866898549
-0.122782105711
-0.122683501057
-0.122572324641
-0.122442296264
-0.122282015666
-0.122075228925
-0.121816933075
-0.121513095548
-0.121140643244
-0.120668187237
-0.120123627628
-0.119484372446
-0.118712931744
-0.117835839383
-0.116831824671
-0.115680906334
-0.11440026822
-0.112984558192
-0.111434357837
-0.109756498333
-0.107947105181
-0.106011640165
-0.103976084861
-0.101821457009
-0.0995454027306
-0.0971755463297
-0.0947363790074
-0.0922459279155
-0.0897276136787
-0.0872285286618
-0.0848210069321
-0.0826192439038
-0.0803323901154
-0.0837006898039
-0.0774893234775
-0.0653555147993
-0.0821486315648
-0.101685329275
-0.100814269267
-0.0948647689826
-0.0857588221385
-0.0752648171172
-0.0650399339965
-0.0555359461631
-0.0470391959106
-0.0396102864289
-0.0331397850347
-0.0275000039118
-0.0225277947214
-0.0180766625081
-0.0140173296111
-0.0102486183578
-0.00669634699216
-0.00331306760914
-7.56383596726e-05
0.00301580923309
0.00593855443296
0.00864747514688
0.0110758839505
0.0131373014575
0.0147284277241
0.0157326129087
0.0160217645709
0.0154571224579
0.0139013753545
0.0112531809984
0.0074509196375
0.00235823124384
-0.00421929570331
-0.0117451089419
-0.0184214097817
-0.0247744420604
-0.0352415675573
-0.123307027088
-0.123296656822
-0.123277593434
-0.12323980577
-0.123191825269
-0.123139267537
-0.123073629749
-0.122997555373
-0.12290974832
-0.12280998368
-0.122696269762
-0.122559341111
-0.122384513694
-0.122153858872
-0.121863862629
-0.121519014291
-0.121073737206
-0.120514202081
-0.119860635506
-0.119075130682
-0.118140034923
-0.117068714783
-0.115841209101
-0.114454597358
-0.112917544585
-0.111232401198
-0.109401224623
-0.107424433477
-0.105315248985
-0.103071229332
-0.100684464464
-0.0981709862661
-0.0955485369689
-0.0928455784919
-0.0900862492631
-0.0873164357036
-0.0846071444665
-0.0819937779502
-0.0794381219701
-0.0752187747976
-0.0807500648241
-0.0761962880859
-0.0581713461895
-0.0819141184801
-0.099707086748
-0.0970566517205
-0.0903106605341
-0.0803142928278
-0.0694738429375
-0.0591397806766
-0.0496931815495
-0.041375223672
-0.0341748623768
-0.0279570236594
-0.0225718477928
-0.0178475132579
-0.013636683182
-0.00981455810605
-0.00628811781327
-0.00299356143442
0.000104578640839
0.00301578015629
0.00572402470388
0.00818783823994
0.0103404164199
0.0120913588587
0.0133305534551
0.0139347687655
0.0137768273276
0.0127354062177
0.0107046000615
0.00761420763387
0.00347398681579
-0.00160483523005
-0.00750402419884
-0.0141228620373
-0.0208143002537
-0.0260670312143
-0.0302045394858
-0.0356718967454
-0.12349760728
-0.123488919251
-0.123471308903
-0.123442150159
-0.123395231993
-0.123344346639
-0.123284473691
-0.123217648386
-0.123142321737
-0.123055885177
-0.122960676136
-0.12284715393
-0.122707647772
-0.122519340881
-0.122264218414
-0.121938774498
-0.121531344876
-0.12098818579
-0.120313554957
-0.1195112402
-0.118545372657
-0.117394161298
-0.11607826719
-0.114587268368
-0.112919114492
-0.11108889188
-0.109096127666
-0.106943787627
-0.104626403997
-0.102141275522
-0.0994928375874
-0.0966858271106
-0.0937417194683
-0.0906897977978
-0.0875586843284
-0.0844313798262
-0.0814082729642
-0.0787628166043
-0.0770579142931
-0.0765641402483
-0.0829446212301
-0.0565650881032
-0.0447558262636
-0.0804748892951
-0.0966098893029
-0.0927388789247
-0.0852686533469
-0.0745446703041
-0.0634879398593
-0.0531200999326
-0.0437964939025
-0.0356973215
-0.0287522510312
-0.0228050830727
-0.01768747819
-0.0132227641009
-0.00926510606004
-0.00569604922855
-0.00243207357431
0.000579108104124
0.00335973582145
0.00590399255786
0.00817781964466
0.0101186558359
0.0116365651308
0.0126187743377
0.0129382263061
0.0124665934821
0.0110917432871
0.00873707715259
0.00537814654404
0.00106151661781
-0.00405842637302
-0.00969000887985
-0.0154759535413
-0.0211142983211
-0.0261538926683
-0.0297573867933
-0.0324304100664
-0.0355780328105
-0.123692269504
-0.123686758058
-0.123673171682
-0.123653294758
-0.123613411186
-0.123559452315
-0.12350058545
-0.123441407231
-0.123378413054
-0.123307843391
-0.123230405367
-0.123145069873
-0.123038282056
-0.122902260155
-0.122703676268
-0.122418704696
-0.122042656207
-0.121540326961
-0.120867008105
-0.120031518608
-0.1190292464
-0.117826054044
-0.116404205726
-0.114793764718
-0.112995276245
-0.111007089495
-0.108835123391
-0.106474125752
-0.103915157395
-0.101158075344
-0.0982009460696
-0.0950584505293
-0.0917326507532
-0.0882321983758
-0.0846022016126
-0.0809169813133
-0.0773112527691
-0.0743630897726
-0.0728782343887
-0.0734830697253
-0.0841744142639
-0.0449817065893
-0.0359080647764
-0.0790963251517
-0.0924999542464
-0.087890745808
-0.0797635408014
-0.0684812880557
-0.0573186228317
-0.0469883139658
-0.0378470028058
-0.0300024021132
-0.0233376914193
-0.0176785347514
-0.0128420533723
-0.00865009265623
-0.00496048259817
-0.0016629059692
0.00131526786325
0.00401345726019
0.00643908577195
0.00856904997898
0.0103490236099
0.0116937952743
0.012491231015
0.0126122421254
0.0119267345337
0.0103247034631
0.00774159341332
0.00418449898243
-0.000250388075651
-0.00537513142587
-0.0109071558978
-0.0164532468846
-0.0215366131797
-0.025784748017
-0.0292384966498
-0.032040171793
-0.0339226243811
-0.0342152523033
-0.123888472691
-0.123887327544
-0.123880572043
-0.123865338662
-0.123835240907
-0.12378495735
-0.123725806607
-0.123669699359
-0.12361550333
-0.123560052617
-0.123500403268
-0.123440899847
-0.123369144335
-0.123281095632
-0.123152374245
-0.122946907532
-0.122616459567
-0.122150494276
-0.121515327805
-0.120668665957
-0.119605904123
-0.118332970519
-0.116826023818
-0.115080056804
-0.113131785482
-0.110970646521
-0.108591511565
-0.105998260431
-0.10318255732
-0.100134965144
-0.0968635083848
-0.0933428698699
-0.0895558179338
-0.0855135060886
-0.0812623627953
-0.0767944498695
-0.0723343353383
-0.0684924211752
-0.0660189477404
-0.0656394976134
-0.0786374359937
-0.0370518573417
-0.030263787051
-0.0782315370034
-0.088071150743
-0.0827872537856
-0.0738951701005
-0.0621760150639
-0.0509884147063
-0.0407589522395
-0.0318509873118
-0.0242921023231
-0.0179304822049
-0.012575608748
-0.00803408352451
-0.00412916065713
-0.000724370781426
0.00228071603258
0.0049463544214
0.00729751891928
0.00932499533619
0.0109863741649
0.0122054719798
0.0128748469865
0.0128650754254
0.0120429523539
0.01029671156
0.00756426161631
0.00386142359927
-0.000693020554653
-0.00586877507902
-0.0113540314995
-0.0168139185118
-0.0219087371186
-0.0262405585503
-0.029407913181
-0.0316210959466
-0.0342810164802
-0.0336289444127
-0.0337002646269
-0.124080057764
-0.124082930974
-0.124081160952
-0.124069184378
-0.124047668271
-0.124010734783
-0.123957780341
-0.123899228446
-0.123849097533
-0.123804272321
-0.123762852615
-0.12372496084
-0.123695824473
-0.123652369576
-0.123593202726
-0.123466729029
-0.123255927249
-0.122825159663
-0.122219090511
-0.121410267578
-0.120305556272
-0.118929353998
-0.117308233207
-0.115438281259
-0.113312008603
-0.110951606266
-0.108361300334
-0.105540632871
-0.102465725161
-0.0991280282463
-0.0954915834818
-0.0915286024337
-0.0872421988061
-0.0826247110628
-0.0776449375544
-0.072246261664
-0.0666275132111
-0.0611666233012
-0.055978603103
-0.0501349248816
-0.0466160030396
-0.0315890706011
-0.0245425373885
-0.0765701104819
-0.083225798717
-0.0774605180346
-0.0677259299218
-0.0556818474158
-0.044527424356
-0.034452894326
-0.025820035341
-0.018572896076
-0.0125340531286
-0.00749819672907
-0.00326534260546
0.000337389889572
0.00343882388408
0.00612777935629
0.00845055076708
0.0104159537814
0.0119963043552
0.0131282981035
0.0137137429303
0.0136264684336
0.0127296006048
0.0109040334091
0.00808276873542
0.00428174597644
-0.000379654495004
-0.00566777049297
-0.0112414456441
-0.016713504013
-0.0217724881205
-0.0262238948887
-0.0298549200771
-0.0324030935314
-0.0335462800812
-0.0332554548895
-0.0332567235248
-0.0332164244967
-0.124264722055
-0.124269144629
-0.124269251764
-0.124261282246
-0.124244777315
-0.124219082858
-0.124177579588
-0.124120263097
-0.124071231989
-0.12403310386
-0.124005556346
-0.123989411609
-0.123991132328
-0.124007631739
-0.124008252872
-0.123985630439
-0.123893919963
-0.123575753863
-0.12298281997
-0.122219920573
-0.12110395717
-0.119638432109
-0.117857405639
-0.115816487986
-0.113517575057
-0.1109512272
-0.108153650561
-0.105102704115
-0.101754725339
-0.0980778848257
-0.0940509325951
-0.0896844899644
-0.0849156610494
-0.0796890904895
-0.0739208462994
-0.0675128828384
-0.0606767363697
-0.0536695576165
-0.0462271825797
-0.034087488985
-0.0413736260543
-0.0406470852617
-0.0213108518263
-0.0748881665645
-0.0780814625593
-0.0718285718842
-0.0612591035858
-0.0490285359518
-0.0379625649151
-0.0280935448359
-0.019769697618
-0.0128553174555
-0.00715541631273
-0.00245138435806
0.00145955819127
0.00474432209369
0.00752220768217
0.00986874156843
0.0118146360127
0.0133508704309
0.0144297989391
0.0149666745149
0.0148435020919
0.0139230287539
0.0120762264188
0.00922105729292
0.00536275573289
0.000619605398304
-0.00477759130339
-0.0105012777833
-0.0161401023973
-0.0212548081013
-0.0255686363818
-0.0291265621411
-0.0319992357224
-0.0341008702548
-0.0351606517766
-0.0334869952372
-0.0329841824355
-0.0327854841111
-0.124444467425
-0.12444593616
-0.124446220415
-0.124439474913
-0.124426387158
-0.124407071058
-0.124378773014
-0.124328414664
-0.124276800024
-0.12424021333
-0.124218804646
-0.124217220437
-0.124240971432
-0.124290675564
-0.124370675329
-0.124419096689
-0.124555691578
-0.12419521553
-0.123773044537
-0.123136968772
-0.121952536073
-0.120377916367
-0.118463577853
-0.116205198783
-0.113706673116
-0.110955055734
-0.107945659369
-0.104645508752
-0.100998398907
-0.0969962215964
-0.0926664624788
-0.0879055658759
-0.0826175300718
-0.0767335017157
-0.0701344477739
-0.0627368875228
-0.0549384889318
-0.0471052114219
-0.0410235898248
-0.0387850321724
-0.0400109160573
-0.020607411624
-0.00760132795304
-0.0713791579981
-0.0721128668602
-0.0657475144476
-0.054498827377
-0.0422408996682
-0.0313208242859
-0.0217061445082
-0.013718310856
-0.00715282291654
-0.00180421548962
0.0025573646282
0.00613388070322
0.00908443361048
0.011517000785
0.0134922101792
0.0150236413909
0.0160830234818
0.0166019773385
0.016475366767
0.0155706088808
0.0137515364524
0.0109169817478
0.00704677194275
0.00224203351354
-0.00326043237813
-0.00911889013287
-0.0149419627367
-0.0203062683612
-0.0247625077948
-0.0280741574236
-0.0307441083142
-0.0334482179636
-0.0352655318876
-0.0338233641038
-0.032869827973
-0.0323958510231
-0.0321949818649
-0.124617514482
-0.124614090784
-0.124612534559
-0.124603714412
-0.124589595048
-0.124572612413
-0.124549566802
-0.124518654239
-0.12446610713
-0.124423013904
-0.12439756167
-0.124395755925
-0.124430053208
-0.124495291762
-0.124699634427
-0.12464588343
-0.124665345663
-0.124613298257
-0.124269761372
-0.123727000034
-0.122892609596
-0.121093657045
-0.118977105858
-0.116542136547
-0.113850304354
-0.110917075187
-0.107701365601
-0.104144436327
-0.100237585401
-0.0960121819268
-0.0913618324841
-0.0861584031721
-0.080347504844
-0.0738072463732
-0.0663877827816
-0.0580054792574
-0.0491205557465
-0.0399468435455
-0.0368885857254
-0.0373000514172
-0.0383465074041
-0.00015856408755
0.00388571312282
-0.0672596724495
-0.0650325675996
-0.0591688734127
-0.047478952776
-0.0353579184891
-0.0246384498157
-0.0153203384499
-0.00768690998543
-0.00148079728695
0.00350838259733
0.0075192296985
0.0107496392707
0.0133493116729
0.0154132206814
0.0169856391072
0.0180616868436
0.01859296987
0.0184907762053
0.0176328873884
0.0158810843496
0.0131174870634
0.00929363446843
0.0044773623832
-0.00111559229039
-0.00712297303449
-0.0131049764711
-0.0186661620789
-0.0234947460326
-0.0272613558794
-0.0297124774942
-0.0314985432301
-0.0344895363411
-0.0333881357605
-0.0325845379499
-0.0319552427621
-0.0315937151175
-0.0314280107952
-0.124779393089
-0.124775941662
-0.124770857052
-0.124757489249
-0.124736531344
-0.124716143763
-0.124696811349
-0.124674941968
-0.124637397394
-0.124582414129
-0.124540749516
-0.124520497859
-0.124536632945
-0.124560792033
-0.124632865929
-0.124641245665
-0.124684923941
-0.124693750036
-0.124432930399
-0.124237944781
-0.123366254988
-0.121726682808
-0.119340287013
-0.116731203293
-0.113897879242
-0.110808522384
-0.107393531051
-0.103641971035
-0.0995641122955
-0.0950876359858
-0.0900838850094
-0.08449099727
-0.0782000535476
-0.0710597210964
-0.0628793613516
-0.0534598284686
-0.0430110313686
-0.0309193381251
-0.0280796242215
-0.0337114208461
-0.0367378027666
0.0160338122904
0.00889544885581
-0.064122701097
-0.0578046106671
-0.0525254563739
-0.0403700332292
-0.0284660846188
-0.0179695519783
-0.00897181249183
-0.00169872280342
0.00414466660217
0.00877097673898
0.0124252116442
0.0152986350751
0.0175302761517
0.0192006413826
0.0203364569627
0.0209134782743
0.0208631540295
0.0200784427339
0.0184261818717
0.0157756196732
0.0120489900509
0.00727845361398
0.00164283529527
-0.00452617443096
-0.0107656524342
-0.0165779288987
-0.0216282991561
-0.0258012849969
-0.0289868904996
-0.0311721388118
-0.0322961920679
-0.0319084019327
-0.0317480957304
-0.0312760620295
-0.0308711189183
-0.0306074468178
-0.0304776557847
-0.124931474104
-0.124933703195
-0.124925935102
-0.124903908761
-0.124870365703
-0.124837742838
-0.124817977898
-0.124809270496
-0.124772761622
-0.124725104081
-0.124656953445
-0.12460469176
-0.124611904384
-0.124640797943
-0.124563848446
-0.124578614629
-0.124614329334
-0.124596574229
-0.124473084468
-0.124370899994
-0.124058331778
-0.121837002676
-0.119410622576
-0.116722365914
-0.113809826586
-0.110610401467
-0.107060216422
-0.103169661086
-0.0989082765582
-0.0941708027472
-0.088889707079
-0.0829707907011
-0.0763030220689
-0.0687031187959
-0.0599490213947
-0.0496881147075
-0.037462295727
-0.0222667450457
-0.0188977330729
-0.0292554341756
-0.03150119731
0.0331777051984
0.00987741416464
-0.0614418927821
-0.0509752505417
-0.0461813418865
-0.0333697480593
-0.0216782675592
-0.0113783002159
-0.00269819673449
0.00422368844669
0.00970895916681
0.013973609443
0.017267452533
0.0197735088612
0.0216192469037
0.0228695361257
0.0235327201506
0.0235648677638
0.0228783158506
0.0213517030183
0.0188505445059
0.0152692473128
0.0105954460544
0.0049697761086
-0.00130015658729
-0.00778103148519
-0.013954216803
-0.0192725280671
-0.0234404767587
-0.0267236326522
-0.0295293736343
-0.0319557769235
-0.0332833517954
-0.0312652186921
-0.0305186896764
-0.0300086236089
-0.0296665437832
-0.0294523848426
-0.0293416505566
-0.125076966521
-0.125087123772
-0.125082037656
-0.125045057643
-0.124992232745
-0.124937660212
-0.124902158897
-0.12491408227
-0.124874681531
-0.124836272608
-0.124760416656
-0.124641528208
-0.124673743002
-0.124586536137
-0.124520438593
-0.124536264619
-0.124567202488
-0.124563520386
-0.124556538623
-0.124439994755
-0.123294980106
-0.121490384171
-0.119142868889
-0.116509811792
-0.113582646326
-0.110316246858
-0.10668919656
-0.102683500556
-0.098246676541
-0.0933279276377
-0.087847868446
-0.0817195329992
-0.0748221173652
-0.0669936339168
-0.0580008554688
-0.047468889338
-0.0345893733899
-0.0283535240325
-0.0195953185633
-0.0267383967438
-0.0145241488743
0.0531703602126
0.00813131743228
-0.0581048673412
-0.0444571300009
-0.0401398293857
-0.0265505944388
-0.0150626802498
-0.00490933391197
0.00347327418536
0.0100644197524
0.0152022817898
0.019109831207
0.0220406739274
0.0241688664588
0.0256097802797
0.0264118455655
0.0265646998263
0.0260052734653
0.0246293153474
0.0223076623257
0.0189181883158
0.0144029065333
0.00884215022219
0.00251041466587
-0.00413763017077
-0.0105778643639
-0.016314057217
-0.0208279577479
-0.0238597333944
-0.0264672412401
-0.0300514408158
-0.0326816093044
-0.0308726528569
-0.0297077299418
-0.0290240793929
-0.0285829717931
-0.0282963189148
-0.0281184177027
-0.0280260729314
-0.125216062466
-0.125233651811
-0.125234630271
-0.125183170762
-0.125103223966
-0.125016145129
-0.12493935945
-0.124937459185
-0.124948084169
-0.124922808861
-0.124849218409
-0.124552914119
-0.124565268808
-0.124512390595
-0.124498960043
-0.124530472459
-0.12457838136
-0.124628631207
-0.124605179346
-0.123894270169
-0.122777580838
-0.120968751244
-0.118752220902
-0.116166137576
-0.113235068774
-0.109956001427
-0.106279068238
-0.102183494995
-0.0976442187335
-0.0926128482021
-0.0870194397574
-0.080787010728
-0.0738485344067
-0.0660306625197
-0.0569908239182
-0.0460510753276
-0.0301023864825
-0.0287222577662
-0.0268882827375
-0.0317623017408
0.0208920117554
0.0707693888505
0.00506231998934
-0.0533511976949
-0.0381966042744
-0.0342813103853
-0.0198973142534
-0.00862626389427
0.00142870126851
0.00953601399954
0.0158200939812
0.0206229259151
0.0241786202937
0.0267434021031
0.0284821334632
0.029497705159
0.0298216025238
0.0294249177509
0.0282268596576
0.026110569328
0.0229481675117
0.0186480728549
0.0132285663084
0.00689414730452
7.3673033793e-05
-0.00662521313197
-0.0126094731749
-0.0175600758386
-0.0213152803508
-0.0236393243207
-0.0257822649751
-0.0306287272416
-0.0293846449571
-0.0285515512261
-0.0278191582264
-0.0273159075194
-0.0269758674192
-0.0267499577374
-0.0266060183767
-0.0265365382118
-0.125339962324
-0.125397239323
-0.125378644678
-0.125306500436
-0.125203494772
-0.125082741589
-0.12496288348
-0.124938456666
-0.124938484983
-0.124930907772
-0.124905505602
-0.124777630364
-0.124504321441
-0.124469596846
-0.124515100675
-0.124580301281
-0.124656332675
-0.124664799048
-0.124212147309
-0.123442757887
-0.122160042595
-0.120438760239
-0.118280840469
-0.115737929943
-0.112834647084
-0.109551921957
-0.105858144243
-0.101727009633
-0.0971314684612
-0.0920501037441
-0.0864308556058
-0.0802420064348
-0.0734526552623
-0.0659699483519
-0.0576605086031
-0.0484885543717
-0.0380257225632
-0.029360374527
-0.031045509976
-0.0360417314713
0.0286115347017
0.0719813605433
0.000191466575012
-0.0480740395059
-0.0325585198464
-0.0285845920136
-0.0134069767194
-0.00234896587586
0.00765370100387
0.0155034957414
0.0215012264013
0.025978553174
0.0291853103721
0.0313786584305
0.0327141769406
0.0332818766726
0.0330961037385
0.0321102701505
0.0302286865666
0.0273283916313
0.0232962590661
0.0180958510544
0.0118563085297
0.00493590467246
-0.00208830561336
-0.00851322705781
-0.0137342027477
-0.0176868411253
-0.0210520977912
-0.024248249616
-0.0264211663715
-0.0258662419484
-0.0264632311218
-0.026155078151
-0.025754872747
-0.0254175246967
-0.0251702838768
-0.0250031734432
-0.0248861035945
-0.0248346391991
-0.125390669872
-0.125390993082
-0.125383342249
-0.125367418366
-0.125281536553
-0.125140901401
-0.125018394052
-0.124943871693
-0.124944272328
-0.12496174333
-0.124895761931
-0.124730196679
-0.124544544968
-0.124517706136
-0.124590841091
-0.124687941418
-0.124726254883
-0.12441700555
-0.123838769248
-0.122905238489
-0.121612460901
-0.119911002468
-0.117810449147
-0.115301273078
-0.112426603933
-0.109169954059
-0.105477123276
-0.101334537375
-0.0967331757326
-0.0916580115004
-0.0860796899952
-0.0799991557231
-0.0734601050279
-0.066447641207
-0.0591329971003
-0.0518140269946
-0.0446384199981
-0.0395717110442
-0.0374180561967
-0.0423703506261
0.0253673567366
0.0664206656738
-0.00527169871619
-0.04355292774
-0.0278866822536
-0.0230859632942
-0.00709830168439
0.00380055935171
0.01379886431
0.0214038740256
0.0271298208473
0.0312851167892
0.0341410976972
0.035953738334
0.0368692311692
0.036964139505
0.0362356772112
0.034620997719
0.0320134067179
0.028292018607
0.0233744522717
0.0173057477597
0.0103565635504
0.00305708867914
-0.00388883312631
-0.00976738931814
-0.0140425134971
-0.0168478656348
-0.0199609853819
-0.0249157214766
-0.0280811766162
-0.0251726350787
-0.0244729878072
-0.023980151234
-0.0236223063301
-0.0233497563231
-0.0231460702254
-0.0230097436015
-0.0229140937221
-0.0228609676833
-0.125384072902
-0.125380060216
-0.125378902413
-0.125380244009
-0.125301726956
-0.12516706514
-0.125045470694
-0.124953085919
-0.124928976571
-0.124907217789
-0.124841598547
-0.124702124185
-0.124583290312
-0.124580566621
-0.12469296927
-0.124762405182
-0.124637959691
-0.124142810671
-0.12344461513
-0.122432504093
-0.121116951968
-0.119444346034
-0.117364279484
-0.1148942896
-0.112059729132
-0.108826712359
-0.10515954419
-0.101037691425
-0.0964554884868
-0.0914184460345
-0.0859078750915
-0.0799535085292
-0.0736106252267
-0.0670430161989
-0.0605647554686
-0.0545560445088
-0.0493701170403
-0.0457195712809
-0.0433537372968
-0.047619028656
0.0231949716042
0.0626361031258
-0.00924063786609
-0.0395586514919
-0.0238219193104
-0.0176593841072
-0.000920795102054
0.00988947977443
0.0199157660833
0.0272779569106
0.0327365743698
0.0365646445927
0.0390615374763
0.040479310956
0.0409545163324
0.0405495020523
0.0392446666952
0.0369632435045
0.0335933153842
0.0290278223711
0.0232380625234
0.016386844664
0.00892431074925
0.00157166124052
-0.00485734802871
-0.00973279954214
-0.0128642419779
-0.0148100499937
-0.0178883822686
-0.0256761601891
-0.0236850979827
-0.0226292323168
-0.0220316593237
-0.0216240637206
-0.0213259661979
-0.0210958641285
-0.0209159780002
-0.0207845676219
-0.020703954819
-0.0206450116656
-0.12537615263
-0.125375878841
-0.125383945363
-0.125395836385
-0.125298069497
-0.125172778093
-0.125053628783
-0.124950944961
-0.124903204204
-0.124844635479
-0.124757791884
-0.124671979948
-0.124607228895
-0.124644526462
-0.124739207269
-0.124792969219
-0.124418137905
-0.123866783923
-0.123070693593
-0.122019635921
-0.12069896192
-0.119024692085
-0.116979867817
-0.114553270172
-0.111760592823
-0.108572294055
-0.104935174892
-0.100844773232
-0.0963078912204
-0.0913161890373
-0.0858405863471
-0.0799302439404
-0.0737434001196
-0.0674947700552
-0.0615376319893
-0.0563712898794
-0.0524061174122
-0.0503023385038
-0.0482488209943
-0.0518369611705
0.0223694682506
0.0610034891658
-0.0115031761513
-0.0354892100805
-0.0197107632189
-0.0120332893478
0.00528477685844
0.0160372195122
0.026079364914
0.033178551925
0.038358185982
0.0418425136846
0.043964379918
0.0449678882628
0.0449792151244
0.0440453567039
0.0421304158755
0.0391467659756
0.0349844065996
0.0295639669793
0.0229366040115
0.015418325958
0.00765618960198
0.000520874358405
-0.00518259612813
-0.00905731594062
-0.0115847278752
-0.0147270527329
-0.0187129497213
-0.0183955048947
-0.0197674133618
-0.0196323413868
-0.0193653272816
-0.0191008914685
-0.0188769836614
-0.0186916712791
-0.0185411441184
-0.0184224838431
-0.0183501683119
-0.0183065990809
-0.125420896933
-0.125385536413
-0.12539230654
-0.125410715628
-0.125292651645
-0.1251717636
-0.125057041535
-0.124957577902
-0.124893161764
-0.124788174996
-0.124678240627
-0.124622072951
-0.124651742839
-0.124764673142
-0.124766268297
-0.124608562207
-0.124216272267
-0.123612247585
-0.122780331939
-0.121708994389
-0.120354154923
-0.118687069631
-0.11668591132
-0.114309343772
-0.111562773052
-0.108411198186
-0.104819426353
-0.100774177748
-0.0962766780143
-0.091288711846
-0.0857721728733
-0.0798639098354
-0.0737482053541
-0.0676313894079
-0.0619160685198
-0.0571045405263
-0.0536497945307
-0.0521507856094
-0.0515456910143
-0.0564347013641
0.0198949031487
0.0593364590586
-0.0127593849722
-0.031098259253
-0.0151114835764
-0.00595958796222
0.0117204366231
0.0223866991277
0.0323764620367
0.0391635454791
0.0440322792229
0.0471436961355
0.0488668774468
0.049432059054
0.0489535375098
0.0474614348807
0.0449045204076
0.0411887235915
0.0362156593817
0.0299519347339
0.0225622746382
0.0145556108551
0.00678185129736
0.000197319994436
-0.00455591074987
-0.00754146801299
-0.00964320391743
-0.0131135164938
-0.0211950487763
-0.0175980720365
-0.0172451261848
-0.0169205563306
-0.0166825700003
-0.016482025609
-0.0163135787714
-0.016172719443
-0.016057502012
-0.0159649517579
-0.0159056743826
-0.0158796907023
-0.125427462271
-0.125393900151
-0.125395639172
-0.125409808375
-0.125284647908
-0.125168997243
-0.125060103233
-0.124966967192
-0.124912333687
-0.124740107024
-0.124597046287
-0.124571198774
-0.124662297183
-0.124795603882
-0.124846440941
-0.124583055833
-0.124120632191
-0.123433257902
-0.12256703863
-0.121473068316
-0.120119070606
-0.118467599093
-0.116497873417
-0.11417443538
-0.111475626352
-0.108371102507
-0.104818839541
-0.100817529958
-0.0963225795895
-0.0912507780121
-0.0856806902384
-0.0797366684399
-0.0735326246312
-0.0673373129685
-0.0615584174563
-0.0566445436752
-0.0531380442639
-0.0520222268358
-0.0527587571899
-0.0719297384122
0.0120830308435
0.0554530420633
-0.013468229427
-0.0261869098955
-0.00975676142708
0.000750264664703
0.0185675950367
0.0290616688421
0.0388822255667
0.0452818536085
0.049788868163
0.052487426799
0.0537823805296
0.0538823330326
0.0528873341101
0.0508086287333
0.0475808593525
0.0431087008216
0.0373159769498
0.0302337760142
0.0221736379446
0.0138660543047
0.00632710391283
0.000473987846573
-0.00332408022165
-0.00582770529469
-0.00944334040564
-0.0138856532997
-0.0132989093092
-0.0141689923995
-0.0141670139452
-0.0140384883942
-0.0138930087952
-0.0137616786386
-0.0136486475361
-0.0135537782241
-0.013476145247
-0.0134109183814
-0.0133722570087
-0.0133591473371
-0.125433411764
-0.125405750536
-0.125397617743
-0.125373060213
-0.125276258488
-0.125168223825
-0.125062207934
-0.124969977549
-0.124919644038
-0.124697748489
-0.124529269124
-0.124534672416
-0.124691806021
-0.124834789207
-0.12481076878
-0.124728967359
-0.124042026588
-0.123317106676
-0.122419494631
-0.121314881424
-0.119972696485
-0.118355067813
-0.116430533327
-0.114158019854
-0.111511833894
-0.108446490449
-0.104936851
-0.100945432236
-0.096384184536
-0.0912509387638
-0.0856032018946
-0.0794873739809
-0.0729975746213
-0.0664150901024
-0.0601388289291
-0.0545395285207
-0.050176636948
-0.047898300638
-0.049136080775
-0.0556484734437
0.000295802631895
0.0507518364944
-0.0114025045901
-0.0198024375657
-0.00321523357992
0.00832569495036
0.0259800102268
0.036144881926
0.0456409130359
0.0515591518884
0.0556411884023
0.0578815158416
0.0587168786122
0.0583251666859
0.0567892068479
0.0540992253172
0.0501777351962
0.0449355028258
0.0383331858132
0.0304912123134
0.0219125151179
0.0135915780571
0.00668505922677
0.00191674247229
-0.000884338425815
-0.00289266698549
-0.0069058334616
-0.0164884974052
-0.0120764531657
-0.0115253874468
-0.0112639335743
-0.0111354081307
-0.0110415135663
-0.0109683917759
-0.0109081734458
-0.0108587912344
-0.0108201209222
-0.0107859879941
-0.0107685630501
-0.0107653046327
-0.125448136669
-0.125428347306
-0.125465929121
-0.125398820214
-0.1252858399
-0.12516979109
-0.125060828747
-0.124966616574
-0.124915279657
-0.124658123755
-0.124475703065
-0.124520565294
-0.124713456502
-0.124824876693
-0.124831906322
-0.12448119575
-0.123929370485
-0.123229919841
-0.12232871601
-0.121237189364
-0.119928453271
-0.118358640674
-0.116481934089
-0.114263365757
-0.111664845926
-0.108639538353
-0.105156705936
-0.101148535238
-0.0965494207673
-0.091345155885
-0.0855436070761
-0.0790996812507
-0.0721578678682
-0.0650571596053
-0.0579767838235
-0.0511316720141
-0.045065056203
-0.0406914030184
-0.0431493975537
-0.0424855065454
-0.0299211057725
0.0486460313676
-0.00436776871149
-0.0112772263359
0.00497508862401
0.0169930593532
0.034053364337
0.0436608611418
0.0526516108716
0.0579870132959
0.0615785547708
0.0633178495554
0.0636663467698
0.0627615390165
0.060665849162
0.057346413541
0.0527161625421
0.0467003648139
0.0393124639461
0.0307853917486
0.0218488056937
0.0137773649755
0.0077982814832
0.00428201772538
0.00206449109668
-0.0020489580883
-0.00764966764382
-0.00700792802951
-0.00804392047918
-0.00815084920265
-0.00816139680437
-0.00815430812865
-0.00814677055178
-0.00814303025215
-0.00814078721835
-0.00813893580038
-0.0081376491536
-0.00813921591763
-0.0081459041894
-0.00815304497172
-0.125462641137
-0.125445436467
-0.125465461205
-0.125455944977
-0.125300632559
-0.125169930372
-0.125052654988
-0.124952969761
-0.124898184887
-0.124622250896
-0.124433535417
-0.124503504671
-0.124708558098
-0.124831271248
-0.124713270874
-0.12440422551
-0.123893507343
-0.123184124184
-0.122319415808
-0.121271621483
-0.119990365856
-0.118462818771
-0.116650559555
-0.114493018877
-0.111935014237
-0.108953525167
-0.105503677469
-0.101490785896
-0.0968537984011
-0.0915710041433
-0.0855438436497
-0.0787233875497
-0.0713770004642
-0.0636759868737
-0.0555341102907
-0.046839607286
-0.0377085465001
-0.0268281835158
-0.0282296809639
-0.0287451658862
-0.0168131435753
0.0816245267697
0.0134045184914
0.000937974929958
0.0154277031077
0.0268584105952
0.0427603447326
0.0515478200566
0.0598532843067
0.0645150980993
0.0675622426666
0.068770114987
0.0686155570016
0.0671864662253
0.0645220337883
0.0605649040015
0.0552222083558
0.0484450792264
0.0403240292812
0.0312435051571
0.0222108508503
0.0148159477422
0.0103112743184
0.00834682944093
0.0067917723602
0.00182842758327
-0.0108645003479
-0.00570994210558
-0.00521610628914
-0.00507556012052
-0.00511346940036
-0.00519079823787
-0.0052697885491
-0.00534398919253
-0.00540923455139
-0.00546365476989
-0.00550631641527
-0.00554274367757
-0.00556784608454
-0.00557848076083
-0.125471252009
-0.125453032393
-0.125464639174
-0.125460758277
-0.125302307501
-0.125163562607
-0.125039054191
-0.12493299808
-0.124877689623
-0.124600495176
-0.124412813897
-0.124503929347
-0.124724213283
-0.124887049152
-0.124701409994
-0.124376788992
-0.123893183048
-0.123225998649
-0.122392779499
-0.121374959255
-0.120154674439
-0.118707698794
-0.116944279158
-0.114827857422
-0.112340394925
-0.109423755992
-0.105989787551
-0.101991140639
-0.0973594721135
-0.0919861409453
-0.0857058336463
-0.0786133392495
-0.0709826612312
-0.0627495506632
-0.0536337222816
-0.0430283471169
-0.0298390180512
-0.00568860714039
-0.00869055685464
-0.0169620620302
0.018057510072
0.128516246924
0.0331109192982
0.0158504915801
0.0278212869172
0.0375766901295
0.051861872966
0.0596257177554
0.0671129932831
0.0710481401416
0.0735254197631
0.0741944820595
0.0735390338816
0.0715901273025
0.0683620582941
0.0637728136608
0.057728870359
0.0502195086241
0.0414390792522
0.0319672457827
0.0231011678759
0.0166327718513
0.013844338246
0.0133129937653
0.00897064066718
0.000893737097449
0.00124881693563
-0.000868668147128
-0.00142763120781
-0.00175826831383
-0.00201507309257
-0.00224047886969
-0.00243608582379
-0.00260534475107
-0.00274954486558
-0.00286877926812
-0.00296357277634
-0.00303322726769
-0.00307347960588
-0.00308210683758
-0.12547556107
-0.125456205727
-0.125465809002
-0.125462409276
-0.125300909976
-0.125155353279
-0.125025222579
-0.12491759737
-0.124883398386
-0.12462426311
-0.124431410583
-0.124521033363
-0.124746681982
-0.124919404588
-0.124698569051
-0.124369997565
-0.123911420518
-0.123312498869
-0.122537101181
-0.121580198559
-0.12043549153
-0.119046054831
-0.117342412551
-0.115313430996
-0.112907562898
-0.110029075952
-0.106651629069
-0.102710490087
-0.0980745237768
-0.0926292865185
-0.0862120141294
-0.0789869213615
-0.0712283378274
-0.0627808847277
-0.0534039099563
-0.0427077392592
-0.0302998499361
-0.0139171324914
-0.0111606414512
-0.0199335968914
0.139754815038
0.188542077455
0.0512725819534
0.0321410214495
0.0406580035906
0.0482649676158
0.060879217738
0.0675873777742
0.074229094309
0.0774519513909
0.0793782446035
0.0795334223575
0.0784037390956
0.0759596755352
0.0721906161924
0.0669910918451
0.0602735555661
0.0520791114997
0.0427374426999
0.033101681882
0.0248434029237
0.0197023529349
0.0185154231408
0.0199199364975
0.0150732639931
-0.00370745967377
0.00253953151676
0.00236786332307
0.00196371606295
0.00147771019459
0.00104157054531
0.000662731486938
0.000334091950255
5.77524826196e-05
-0.000172440887638
-0.000359471372137
-0.000506072900981
-0.000609975653533
-0.000674161869445
-0.000696061115457
-0.12547682416
-0.125454509063
-0.125467146373
-0.125461599471
-0.125301063554
-0.125146748259
-0.125004963392
-0.124881724654
-0.12485741757
-0.124721337348
-0.124494616107
-0.124548533632
-0.124771029607
-0.124944794994
-0.124717806852
-0.124387601369
-0.123951795385
-0.123410852003
-0.122732905625
-0.121872241953
-0.120803491753
-0.119489146255
-0.117884677593
-0.115953601564
-0.113613645152
-0.110797415688
-0.107503396699
-0.103639674729
-0.0990498870163
-0.0935890309511
-0.0871299589044
-0.0799171006186
-0.0721804312009
-0.0637650803902
-0.0544920073193
-0.0441008817192
-0.032369983934
-0.0174532929905
-0.015483242416
-0.0184270662943
0.165300864071
0.199909490339
0.0593096417054
0.0465488326658
0.0517518239871
0.0578736808317
0.0692221222719
0.0750577237274
0.0809658765551
0.0835733880295
0.0850198648386
0.0847230819611
0.0831738918203
0.080282831925
0.076016706895
0.0702498544266
0.0629107455812
0.0541108909439
0.0443463978469
0.0347997072691
0.0275519550893
0.0239116784955
0.0227141450363
0.0210921367752
0.0166342186451
0.014229825003
0.00876858747925
0.00680182065197
0.00560502867922
0.00475068285015
0.00406667930985
0.00350475771007
0.00303088076549
0.00263888661292
0.00231755600268
0.00205936250128
0.00185914581174
0.00172031252701
0.00162763142729
0.00158365439265
-0.125482962764
-0.125452976129
-0.125479538395
-0.125472879325
-0.125309128561
-0.125151819907
-0.125024993116
-0.12493602541
-0.124913906945
-0.124735394175
-0.124539808529
-0.124573369716
-0.124790084144
-0.124965869015
-0.124746347303
-0.124435853501
-0.124035091549
-0.123544815378
-0.122943964338
-0.122198986779
-0.121254560594
-0.120048186766
-0.118548478922
-0.116711211552
-0.114458091229
-0.111747425964
-0.108569180988
-0.104805168646
-0.100283076496
-0.0948774139991
-0.0885037685774
-0.0814048866794
-0.0738184099757
-0.065619148411
-0.0566999048155
-0.0469399784322
-0.0363354027539
-0.0237792483229
-0.0221411485491
-0.0254768341112
0.149907204249
0.184589228546
0.0578674832215
0.0553864439875
0.0591837963109
0.0655725406383
0.0763741858378
0.0817052311798
0.0871129908792
0.0892717201208
0.0903555388128
0.0897029906468
0.0878163064931
0.084550724732
0.079854198026
0.0735844418736
0.0656942187224
0.0563775629362
0.0463078511187
0.0369998422248
0.0308699490778
0.0285932345696
0.0268242428212
0.0199899186133
0.0128564213059
0.0130793300066
0.0117332208097
0.0102721019444
0.0089877157467
0.00791861812835
0.00702107491996
0.00626856423712
0.0056448145951
0.00513297560415
0.00471823177246
0.00438830041463
0.00413566123281
0.00395603487274
0.00383410210788
0.00376980453823
-0.125501088733
-0.125486107543
-0.125504618428
-0.125504517215
-0.125313944121
-0.125147830741
-0.125017355611
-0.124939094926
-0.124928785392
-0.124829949244
-0.124619426585
-0.124602798584
-0.124803565382
-0.124972122813
-0.12479929661
-0.124507786772
-0.124146308747
-0.123724971191
-0.123216762791
-0.122570825605
-0.121735959702
-0.120661879359
-0.119300091544
-0.117583047381
-0.115445407206
-0.112861896597
-0.109811887583
-0.106187566446
-0.101815050589
-0.0965365137685
-0.0903033383738
-0.0834083842854
-0.0760678344982
-0.0681919052047
-0.0597342010246
-0.050676365725
-0.0411480239601
-0.030465797388
-0.0292254831712
-0.0333080948597
0.136650153965
0.171522573076
0.0552669274892
0.0602202375706
0.0634713561762
0.0713731884705
0.0821582529986
0.0873697506119
0.0925455665723
0.0944481844135
0.0953124817798
0.0944240615065
0.0923048271143
0.0887605458854
0.0837252814514
0.0770442669819
0.0687065712347
0.0590112224616
0.0488461000251
0.040161951654
0.0357650822024
0.0351648224846
0.0336531990941
0.0257291698922
0.00826321061152
0.0148862515251
0.0147531608496
0.0136998995188
0.0123229572399
0.0110233944418
0.00990138269402
0.00894921584481
0.00816382632843
0.00752606568655
0.00701602846422
0.006615214248
0.00631273015916
0.00609017430336
0.00594172413515
0.0058610855505
-0.125526354919
-0.125547382921
-0.125534489741
-0.125529763428
-0.125322112181
-0.125162594513
-0.12503956961
-0.12494852937
-0.124930746153
-0.124870316549
-0.124670603224
-0.124626990175
-0.124819868175
-0.125011471237
-0.124849527358
-0.124591940009
-0.124280107564
-0.12393427816
-0.123536337539
-0.123019726786
-0.12229808705
-0.121334668838
-0.12008993911
-0.118506645681
-0.11652380693
-0.114118594492
-0.111249556464
-0.107797521003
-0.103603006577
-0.0985175036946
-0.0925008257895
-0.0858796783073
-0.0788465885401
-0.07133954711
-0.0633488398646
-0.0549164257961
-0.0462549781653
-0.0368887837215
-0.0361979121768
-0.040278360536
0.131069202091
0.165847911035
0.0549098179303
0.0637980835712
0.0662947795013
0.0759044395964
0.0867615210195
0.092096996736
0.0972437625948
0.0990612644061
0.0998482507251
0.0988536688248
0.0966216345385
0.0929155708996
0.0876595902419
0.0806912679083
0.0720458007449
0.0621517281181
0.0521217366692
0.0443559212201
0.0423683080093
0.0439768957121
0.0378256499068
0.0243764591407
0.0238729051827
0.0210421117724
0.0193268799607
0.017580926877
0.0157829384855
0.0141197820605
0.0127027336281
0.0115245843928
0.0105603603475
0.00978611312201
0.00917677726827
0.00870517719605
0.00835159538886
0.00809263281583
0.00792302041965
0.00783394313096
-0.125553352732
-0.125556546827
-0.125546518463
-0.125542982893
-0.125347234955
-0.125190589327
-0.12506587213
-0.124968269936
-0.124941576436
-0.124894618651
-0.124707642464
-0.124655685013
-0.124858360808
-0.125083300242
-0.124954251349
-0.124696426262
-0.124420180748
-0.124146233746
-0.123866555787
-0.123504878216
-0.122921493287
-0.122082492437
-0.120954820116
-0.119500819632
-0.117678065454
-0.115465515859
-0.112796187123
-0.109558891548
-0.10560949051
-0.100807346938
-0.0950901590064
-0.0887812361399
-0.0820916321855
-0.074960575226
-0.0673835158937
-0.0594167851358
-0.0512998309879
-0.0426489226718
-0.0424671808664
-0.0462030064656
0.128799135339
0.163473842653
0.0556860150616
0.0669941064518
0.0685945632935
0.0796614979103
0.090461897639
0.0960174450057
0.101248256545
0.103102972618
0.103940191092
0.102966369633
0.100752796309
0.0970209355826
0.0916918563739
0.084598104018
0.0758329731772
0.0660051052651
0.0566165727461
0.0506125106497
0.0518895807906
0.0577055522942
0.0498943306921
0.0175699982097
0.0266135733446
0.0255053221325
0.0236545614783
0.0214692179289
0.0192361906849
0.0171442631617
0.0153876651606
0.0139525112209
0.0127937125697
0.0118731776103
0.0111604841291
0.010616750959
0.0102109979227
0.00991947997262
0.00972953065545
0.00963598685832
-0.125588314689
-0.125559560377
-0.125558462886
-0.125565024117
-0.125414127669
-0.125248104263
-0.125111220255
-0.124992633015
-0.124948748394
-0.124904866637
-0.124733502731
-0.124680354504
-0.124879675536
-0.125049582713
-0.125057270796
-0.124799232639
-0.124548570289
-0.124343395215
-0.124201210053
-0.124028010738
-0.123563516194
-0.122845151727
-0.121852068143
-0.120558785139
-0.118920038695
-0.116899765154
-0.114436744649
-0.111418883408
-0.107754000096
-0.103338251815
-0.098037518929
-0.0920822206072
-0.0857701868881
-0.0790167884309
-0.071784551854
-0.064090516963
-0.0561479606004
-0.0475459071289
-0.0477990475497
-0.0511304220882
0.127285678781
0.161624755597
0.0561461503696
0.0695354111238
0.0703836761878
0.0827447993886
0.0933798836355
0.0992270516599
0.104592937323
0.106584531598
0.107574585552
0.106744817938
0.104680205759
0.101075318452
0.0958476589961
0.0888443162514
0.0802265946412
0.0708010647001
0.0625919378219
0.059162672134
0.0618614498423
0.0631024920554
0.0546456766317
0.0467812598126
0.0366496857129
0.0319373000048
0.0284641555118
0.0254454790325
0.022653047565
0.0200674604304
0.0179093288453
0.0161896004568
0.0148247670397
0.0137509857756
0.012925141347
0.0123051558056
0.0118514060206
0.0115332142457
0.0113238368185
0.0112273538432
-0.125611264155
-0.125581497166
-0.125601120911
-0.125646676136
-0.125546384357
-0.125350825905
-0.125192372572
-0.125066234949
-0.124969197395
-0.124904712675
-0.124754111005
-0.124682995202
-0.124850390282
-0.125016076529
-0.125078773781
-0.124874720905
-0.124630180049
-0.124468328279
-0.124419572629
-0.124473832167
-0.124147937102
-0.123590896718
-0.122752503434
-0.12163320139
-0.120207722341
-0.118403370712
-0.116153708929
-0.113368634298
-0.109993285071
-0.10599475684
-0.101245249902
-0.0957684921192
-0.0898842139243
-0.0835420611473
-0.0766220692219
-0.0690310040521
-0.0608470836259
-0.0513184125421
-0.0519272185542
-0.054907323144
0.125507779611
0.159533934973
0.0558084932384
0.0712186400164
0.0716063111262
0.085109707673
0.0955908209234
0.101728534873
0.107284839621
0.109462090866
0.110711130805
0.110131570787
0.108367263332
0.105058648857
0.100147223881
0.0934808364464
0.0853134353925
0.0765523322366
0.0695473911773
0.0688214564224
0.0731439636031
0.0644652060674
0.0466697279277
0.0442776454492
0.0405071352654
0.0364504049846
0.0326676651
0.029150492567
0.0258857128472
0.0228494438619
0.0202428008018
0.0182033848136
0.0166193734085
0.0153930831358
0.0144558109619
0.0137573895066
0.0132537396625
0.0129134532218
0.0126883201059
0.0125849622525
-0.125655394631
-0.125645885241
-0.125636577098
-0.125661469032
-0.125658745394
-0.125454495133
-0.12528749189
-0.125150963944
-0.125059879267
-0.124924468266
-0.12478881364
-0.124689185544
-0.124821248062
-0.125007159463
-0.125121080019
-0.124953941386
-0.124658830389
-0.124511694583
-0.124507107684
-0.124497800033
-0.124544017978
-0.124243690754
-0.123619625389
-0.122705715525
-0.121516808672
-0.119936534796
-0.117901270773
-0.115333404161
-0.112228141458
-0.108686044196
-0.10460988902
-0.0997942465685
-0.0944589085815
-0.0886403838973
-0.0821094338038
-0.0745926891205
-0.0658667477153
-0.0541276437725
-0.0547514720465
-0.0578765858184
0.122525651937
0.156481626654
0.0541678981466
0.0717954595715
0.0719113238332
0.0866811401602
0.096962417062
0.103547432893
0.109285790517
0.111766224727
0.113323630833
0.113114025732
0.111754514664
0.108915625159
0.104526365393
0.0985013473468
0.0912111241604
0.0838182432778
0.0787844181982
0.0814730123683
0.0906000270367
0.078767300445
0.0359181359846
0.0474072294733
0.0447310820786
0.0408196082464
0.0366234175386
0.0326066305948
0.0288719946537
0.0254222252744
0.0223752068899
0.0199780119617
0.0181568761577
0.0167727343893
0.0157321633758
0.0149664049156
0.0144160642491
0.0140486988793
0.0138131314381
0.0136929379148
-0.12568792318
-0.125680225965
-0.125658015742
-0.125667541033
-0.125688465461
-0.125529558811
-0.125393372688
-0.125261983558
-0.125128672561
-0.124973607586
-0.124828914489
-0.124713752029
-0.124824514997
-0.125021678592
-0.125139689949
-0.125107389601
-0.124580350663
-0.124415525405
-0.124340329619
-0.124358804423
-0.124532240468
-0.124665009451
-0.12443335249
-0.123735360153
-0.122832938591
-0.121467446045
-0.119637222801
-0.117251070371
-0.114318166751
-0.111222720565
-0.107927674009
-0.104057439264
-0.0995545458414
-0.0944556798074
-0.0885801894213
-0.0814312972001
-0.072323223187
-0.0567150821935
-0.0563770089145
-0.0620880739794
0.115038353737
0.152048295017
0.0514065779511
0.0716641683494
0.0722091664949
0.0875439809667
0.0979117163836
0.104512452052
0.110617557684
0.113229337293
0.115278816115
0.115451498751
0.114731398086
0.112538437662
0.109028452645
0.103994019826
0.0980918900649
0.0927373571142
0.0909343639169
0.0952004081392
0.0984997143508
0.0861185164016
0.0729043835035
0.0591616065241
0.0516119556382
0.0456625971407
0.0404715385128
0.0358010002178
0.0315685238829
0.0277177814466
0.0242680688136
0.0215050861615
0.019438602732
0.0178927292473
0.0167439679903
0.0159130894404
0.0153279278812
0.0149369351458
0.0146911279688
0.0145573696835
-0.12572416634
-0.125729059871
-0.125679939937
-0.125678440595
-0.125702647121
-0.125600465422
-0.125507793926
-0.125405082337
-0.125278194766
-0.125116327115
-0.124864640213
-0.124736543978
-0.124815228292
-0.124999355997
-0.125312764212
-0.124801609503
-0.124112090608
-0.124118423321
-0.124018421625
-0.124143742397
-0.124581820797
-0.124876636048
-0.125297404092
-0.124576771746
-0.123992720087
-0.122864724492
-0.121252642578
-0.119041300152
-0.116047816055
-0.113320983497
-0.110878951091
-0.108175306088
-0.105021663509
-0.101132263776
-0.096385550156
-0.090634535055
-0.0833342567374
-0.0739463860284
-0.0567024717629
-0.103899156987
0.104161820898
0.143258746508
0.0453018897245
0.0705545709266
0.0704339570624
0.0877877436854
0.0973852663818
0.105022857536
0.111055128094
0.114339980227
0.116626675395
0.117433220105
0.11718584838
0.115806820382
0.113197179249
0.10960118733
0.10563406269
0.103366416816
0.106640994105
0.116678819064
0.106299406764
0.0772018251697
0.0720574421339
0.063609147665
0.0561201060298
0.0495781278058
0.0437554896391
0.0385473316408
0.0338758034
0.0296764069164
0.0258841267415
0.0227769465346
0.0204725336219
0.0187722224201
0.0175197726162
0.0166167504968
0.0159924885369
0.0155850016529
0.0153388901223
0.0152246212529
-0.125726731742
-0.125727981679
-0.125696018031
-0.125677896134
-0.125682235074
-0.125677723307
-0.125650887659
-0.125604672129
-0.125517204239
-0.125344002258
-0.124968512131
-0.124824848575
-0.124667953025
-0.124492071457
-0.124479257011
-0.124907312993
-0.124504305008
-0.124274295716
-0.12398659139
-0.124055958456
-0.124222369129
-0.124308980376
-0.124368032607
-0.124919419763
-0.125596326106
-0.124542863535
-0.123045812829
-0.121139283898
-0.117322043313
-0.114796671091
-0.113252053237
-0.111609507929
-0.11008466366
-0.108058779415
-0.10534689713
-0.101446237149
-0.0968814796053
-0.0932136029123
-0.0927907815145
-0.119390382177
0.100294112089
0.132947589745
0.0407614738336
0.0738316148575
0.0715927699032
0.0891978976663
0.0973372742178
0.104726614068
0.110505556187
0.113944664315
0.11661376623
0.118078301645
0.118723067489
0.118570380234
0.11756182676
0.116014727125
0.114754581277
0.115496286113
0.124770907404
0.148126417607
0.132962793987
0.0625745329854
0.0725666979842
0.0669133218913
0.059741036737
0.0527669562622
0.0464206224647
0.0407541630221
0.0357091709343
0.0312098438404
0.0271587561843
0.0237826113041
0.0212651107425
0.0194230224785
0.0180838422705
0.017123319732
0.0164605035763
0.0160352567249
0.0157906201606
0.0156980435097
-0.125728433348
-0.125727293061
-0.125720922859
-0.125697930005
-0.125681868567
-0.125792375952
-0.125856908669
-0.125918822821
-0.125968496008
-0.125967578751
-0.1257880231
-0.125313719877
-0.124687795924
-0.123706118089
-0.122576100786
-0.122257432288
-0.123221084299
-0.123663384308
-0.123234278844
-0.122191210537
-0.122647305786
-0.122248245662
-0.121619089739
-0.12090487332
-0.120702017161
-0.120438028223
-0.119534015525
-0.118957018413
-0.116234172208
-0.113868003576
-0.113448637691
-0.113038868294
-0.113186728141
-0.113508190057
-0.113812479
-0.112604629038
-0.108956377978
-0.107151800086
-0.117890959293
-0.125531537622
0.141715271672
0.106700604817
0.0287473569936
0.0856703092929
0.0543459972949
0.0985483490447
0.0861236484146
0.110448979085
0.1054352601
0.117945277356
0.115025827009
0.121438882967
0.118998009084
0.122075971774
0.119675217013
0.122106434942
0.122343174756
0.133268321063
0.145080869484
0.18667734659
0.168765761431
0.125679363652
0.0809528562179
0.0731183133055
0.0634483999961
0.0554077567814
0.0484267436746
0.042342311171
0.0369972081669
0.0322689170382
0.0280323512057
0.0244822826612
0.0218130479824
0.0198611262376
0.0184516112366
0.0174486660212
0.016756998383
0.0163121575646
0.0160558646177
0.0159572980198
-0.125728352939
-0.125727839215
-0.125834648101
-0.12585325973
-0.125890464855
-0.125967318983
-0.126040912376
-0.12611246306
-0.126179585573
-0.126232591501
-0.126250410766
-0.126218202179
-0.126158500282
-0.126184252378
-0.125849115727
-0.125136170492
-0.125112643869
-0.126149721206
-0.128217427371
-0.12867384204
-0.125995691195
-0.125682439246
-0.125825067782
-0.125407859031
-0.124699762308
-0.124403780095
-0.124652108727
-0.123029956178
-0.124614464191
-0.125185304182
-0.125420487222
-0.125529557926
-0.125671174031
-0.126112440691
-0.126686783719
-0.12607096638
-0.122184426892
-0.117746554118
-0.128757396327
-0.172793722842
0.174252588772
0.0556238028765
0.0588119973781
0.129973868027
0.0595242319601
0.1277287119
0.079966236271
0.12107123836
0.0966972302267
0.119619775475
0.10824478577
0.122479621358
0.117708114858
0.128536071109
0.127526405209
0.139071633851
0.13969916543
0.158046242745
0.149781474456
0.19568404935
0.119802610039
0.0754982420592
0.0783456523046
0.0783289953121
0.0657732896554
0.0569691867325
0.0495440010535
0.0431951325031
0.0376735879632
0.0328158158199
0.0284715113606
0.0248342944483
0.0220943270707
0.0200826833572
0.0186299258258
0.0176022098023
0.0168968314519
0.016439885212
0.0161660938413
0.0160572821569
)
;
boundaryField
{
frontAndBack
{
type empty;
}
upperWall
{
type zeroGradient;
}
lowerWall
{
type zeroGradient;
}
inlet
{
type zeroGradient;
}
outlet
{
type adjointOutletPressurePower;
value nonuniform List<scalar>
20
(
0.023304246691
0.10609187375
0.145215345719
0.170885100385
0.188610186443
0.199723659758
0.203782044542
0.20249473721
0.19957922159
0.195957182619
0.191712304139
0.186834885446
0.181312759472
0.175128301476
0.168249328059
0.160557902707
0.152008920211
0.142552701687
0.134039614976
0.106449729706
)
;
}
}
// ************************************************************************* //
|
|
18b7df7a03d432ee62b7834d5bf8b93977a0d7de
|
74481b97524ebb4cad7b24f74cc7ad8ef8437227
|
/SimulerCombat.h
|
b286adbf182701cf5e9333d645a09e8271313726
|
[] |
no_license
|
Zilmerx/RainbowSix
|
d42de0ded09b4ba744acdaf69a0654391d071b3a
|
fc44310705102574b75bcc27f40803dbc6c67222
|
refs/heads/master
| 2020-06-23T17:21:48.864372
| 2017-01-26T21:38:05
| 2017-01-26T21:38:05
| 66,678,856
| 3
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,410
|
h
|
SimulerCombat.h
|
#pragma once
#include <ostream>
#include <future>
#include <atomic>
#include "Operator.h"
class SimulerCombat
{
private:
Operator& m_op1;
Operator& m_op2;
// Pense pas qu'un atomic / un mutex soit necessaire.
bool Start;
bool KeepOnGoing;
std::vector<std::pair<Operator&, Damage>> damageLog;
public:
SimulerCombat(Operator& op1, Operator& op2) :
m_op1{ op1 },
m_op2{ op2 },
Start{ false },
KeepOnGoing{ true }
{
damageLog.reserve(50);
std::cout << op1.m_Name << Language::GetText("KEY_IS_USING") << op1.GetCurrentWeapon().m_name << std::endl;
std::cout << op2.m_Name << Language::GetText("KEY_IS_USING") << op2.GetCurrentWeapon().m_name << std::endl
<< std::endl;
const auto func = [this](Operator& from, Operator& to) { OperatorFightingLoop(from, to); };
std::future<void> future1 = std::async(std::launch::async, func, op1, op2);
std::future<void> future2 = std::async(std::launch::async, func, op2, op1);
Start = true;
future1.wait();
future2.wait();
}
void OperatorFightingLoop(Operator& from, Operator& to)
{
while (!Start); // Attendre le bool avant de commencer le combat.
const auto fireDelay = from.GetCurrentWeapon().fireDelayMs();
while (KeepOnGoing)
{
const auto before = std::chrono::high_resolution_clock::now();
DealDamage(from, to);
const auto after = std::chrono::high_resolution_clock::now();
std::this_thread::sleep_for(fireDelay - (after-before));
}
}
void DealDamage(Operator& from, Operator& to)
{
Damage dmg = from.GetCurrentWeapon().m_damage;
dmg = to.m_Armor.ArmorModifier(to.m_Armor.TorsoModifier(dmg));
damageLog.push_back(std::pair<Operator&, Damage>(to, dmg));
to.m_Armor.TakeTrueDamage(dmg);
HealthState health = to.m_Armor.CheckHealth();
if (health == HealthState::DBNO ||
health == HealthState::Dead)
{
ShowResults(to);
}
}
void ShowResults(Operator& dead)
{
KeepOnGoing = false;
for (std::pair<Operator&, Damage> pair : damageLog)
{
std::cout << pair.first.m_Name << Language::GetText("KEY_TAKES") << pair.second.val << Language::GetText("KEY_DAMAGE") << "!" << std::endl;
}
HealthState hs = dead.m_Armor.CheckHealth();
std::cout << dead.m_Name << Language::GetText("KEY_HAS_LOST") << ": ";
if (hs == HealthState::DBNO)
{
std::cout << Language::GetText("KEY_DNBO");
}
else
{
std::cout << Language::GetText("KEY_DEAD");
}
}
};
|
7297e6d0c88e443208a0e6624f1badda5c6d480c
|
8f34911e697ef220d7cf76d44fa9b560be4ba7f0
|
/Engine/Header/Render/Gizmos/CGizmosDirectionalLight.hpp
|
3aa51a1c16f6036f7913f869b1f6f829f26f32bc
|
[
"MIT"
] |
permissive
|
RaMaaT-MunTu/OOM-Engine
|
3d85d6bef34d55b4061dc5f87d74d411e66ec93a
|
e52f706d17f1867f575a85ba5b87b4cc34a7fa97
|
refs/heads/master
| 2022-01-23T07:17:14.483120
| 2018-08-20T11:19:31
| 2018-08-20T11:19:31
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 492
|
hpp
|
CGizmosDirectionalLight.hpp
|
/// \file CGizmosDirectionalLight.hpp
/// \date 03/08/2018
/// \project OOM-Engine
/// \package Render/Gizmos
/// \author Vincent STEHLY--CALISTO
#ifndef OOM_ENGINE_C_GIZMOS_DIRECTIONAL_LIGHT_HPP__
#define OOM_ENGINE_C_GIZMOS_DIRECTIONAL_LIGHT_HPP__
#include <GLM/glm.hpp>
namespace Oom {
void DrawDirectionalLight(glm::vec3 const& position, glm::vec3 const& direction, glm::vec3 const& color, float scale);
}
#endif // !OOM_ENGINE_C_GIZMOS_DIRECTIONAL_LIGHT_HPP__
|
151cc4a577511b545eb71a3a8198fc18dc698dbe
|
601b572c0857aecd7edf7d1cea8f779089e2fc26
|
/float_count.cc
|
8406e29fc29bf931b038716f288e917bf39ab7a6
|
[] |
no_license
|
realfirst/ffcpp
|
a320b10138bb10af9ae91fe9cd87dcf81145ef3c
|
0a9f2fe0def2568e929c5e1962094f909cd5400e
|
refs/heads/master
| 2016-09-06T12:33:02.724924
| 2011-06-06T11:57:11
| 2011-06-06T11:57:11
| 1,680,642
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 205
|
cc
|
float_count.cc
|
#include <iostream>
using namespace std;
int main(int argc, char **argv) {
double x;
for (x = 0; x < 1.0; x = x + 0.1) {
std::cout << 1.0 - x << ' ' ;
}
std::cout << std::endl;
return 0;
}
|
2ea5322d9bf59147285470bd29837c55b414d0fb
|
1835e4366fe74851ae2db2d1c0cb4ee39d2d03ee
|
/app/src/main/cpp/hellonativetriangle/src/renderer.cpp
|
1f97d1cd538a54857b80d30cd49d38451b99bb55
|
[] |
no_license
|
Siamaster/HelloNativeTriangle
|
91371d53ae9f2dd79c0c58e86a6bcb4bb8d38a96
|
3c5aa58bf015f994b437b72e542b463e3e5322d8
|
refs/heads/master
| 2020-04-10T08:47:48.367442
| 2018-03-11T20:52:44
| 2018-03-11T20:52:44
| 124,267,743
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,981
|
cpp
|
renderer.cpp
|
#include "renderer.h"
#include "file.h"
#include "logger.h"
#include "shader.h"
#include "texture.h"
#include <glm/ext.hpp>
using namespace std;
Renderer::~Renderer() {
Destroy();
}
void Renderer::Initialize() {
// Initialize EGL
display_ = eglGetDisplay(EGL_DEFAULT_DISPLAY);
if (display_ == EGL_NO_DISPLAY) {
LOG_ERROR("eglGetDisplay() returned error %d", eglGetError());
return;
}
if (eglInitialize(display_, nullptr, nullptr) == EGL_FALSE) {
LOG_ERROR("eglInitialize() returned error %d", eglGetError());
return;
}
const EGLint attribs[] = {
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_BLUE_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_RED_SIZE, 8,
EGL_NONE
};
EGLConfig config;
EGLint numConfigs;
if (eglChooseConfig(display_, (EGLint *)attribs, &config, 1, &numConfigs) == EGL_FALSE) {
LOG_ERROR("eglChooseConfig() returned error %d", eglGetError());
Destroy();
return;
}
EGLint format;
if (eglGetConfigAttrib(display_, config, EGL_NATIVE_VISUAL_ID, &format) == EGL_FALSE) {
LOG_ERROR("eglGetConfigAttrib() returned error %d", eglGetError());
Destroy();
return;
}
eglChooseConfig(display_, attribs, &config, 1, &numConfigs);
const EGLint context_attribs[] = {EGL_CONTEXT_CLIENT_VERSION, 3, EGL_NONE};
context_ = eglCreateContext(display_, config, EGL_NO_CONTEXT, (EGLint *)(context_attribs));
if (context_ == nullptr) {
LOG_ERROR("eglCreateContext() returned error %d", eglGetError());
Destroy();
return;
}
surface_ = eglCreateWindowSurface(display_, config, window_.get(), nullptr);
if (surface_ == nullptr) {
LOG_ERROR("eglCreateWindowSurface() returned error %d", eglGetError());
Destroy();
return;
}
if (eglMakeCurrent(display_, surface_, surface_, context_) == EGL_FALSE) {
LOG_ERROR("eglMakeCurrent() returned error %d", eglGetError());
Destroy();
return;
}
if (eglQuerySurface(display_, surface_, EGL_WIDTH, &surface_width_) == EGL_FALSE ||
eglQuerySurface(display_, surface_, EGL_HEIGHT, &surface_height_) == EGL_FALSE) {
LOG_ERROR("eglQuerySurface() returned error %d", eglGetError());
Destroy();
return;
}
// Initialize matrices
float ratio = static_cast<float>(glm::min(surface_width_, surface_height_)) / glm::max(surface_width_, surface_height_);
if (surface_width_ < surface_height_) {
model_ = glm::scale(model_, glm::vec3(1.0f, ratio, 1.0f));
} else {
model_ = glm::scale(model_, glm::vec3(ratio, 1.0f, 1.0f));
}
// Initialize texture
texture_ = texture::LoadPNG(file::Read("textures/illuminati.png"));
if (texture_ == 0) {
LOG_ERROR("Couldn't load texture");
Destroy();
exit(1);
}
// Initialize shader
shader_program_ = shader::Load(
file::Read("shaders/vertex_shader.glsl"),
file::Read("shaders/fragment_shader.glsl")
);
if (shader_program_ == 0) {
LOG_ERROR("Couldn't create shader program");
Destroy();
exit(1);
}
glUseProgram(shader_program_);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, texture_);
// Initialize vertex array
GLfloat vertices[] = {
// Position Texture coordinates
-0.5f, -0.5f, 0.0f, 0.0f,
0.5f, -0.5f, 1.0f, 0.0f,
0.0f, 0.5f, 0.5f, 1.0f
};
GLuint buffer;
glGenVertexArrays(1, &vertex_array_);
glGenBuffers(1, &buffer);
glBindVertexArray(vertex_array_);
glBindBuffer(GL_ARRAY_BUFFER, buffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), nullptr);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), (void *) (2 * sizeof(GLfloat)));
}
void Renderer::DrawFrame() {
glClearColor(1.0f, 1.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
model_ = glm::rotate(model_, 0.01f, glm::vec3(0, 0, 1));
glUniformMatrix4fv(glGetUniformLocation(shader_program_, "uModel"), 1, GL_FALSE, glm::value_ptr(model_));
glDrawArrays(GL_TRIANGLES, 0, 3);
if (eglSwapBuffers(display_, surface_) == EGL_FALSE) {
LOG_ERROR("eglSwapBuffers() returned error %d", eglGetError());
}
}
void Renderer::Destroy() {
if (display_ == EGL_NO_DISPLAY) {
return;
}
eglMakeCurrent(display_, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
eglDestroyContext(display_, context_);
eglDestroySurface(display_, surface_);
eglTerminate(display_);
display_ = EGL_NO_DISPLAY;
surface_ = EGL_NO_SURFACE;
context_ = EGL_NO_CONTEXT;
}
|
b10650b141df7e58a5ddda682c8ef613820b0db0
|
9db98bca06eb487acd2bf6e916aaf8ed193ebfb5
|
/C++Version/Msg/MsgManager.h
|
92aa279244c5c6342604cb774ce356b4a8868349
|
[] |
no_license
|
SkadyCat/CompressJson
|
e28891d75d84b031a739c8e23e848ffe447b6f06
|
9100537cd0fa5ac83661a72fc294516a93dc28bc
|
refs/heads/main
| 2023-05-23T20:34:35.323834
| 2021-06-21T15:02:36
| 2021-06-21T15:02:36
| 366,011,300
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,025
|
h
|
MsgManager.h
|
#pragma once
#include"MsgEntity.h"
#include <queue>
#include <string>
using namespace std;
class MsgManager
{
public:
int index;
MsgManager();
~MsgManager();
string preProcess;
map<string, SerializeNode*> headMap;
map<string, SerializeNode*> serialsNodes;
queue<string> load(string path);
void process(string path);
void tranverse(string msg);
SerializeNode* serialize(string msg, string jdata, SerializeNode*& outSerials, SerializeNode*& tail );
queue<DynamicNode> serialize(string msg, string jdata);
Layer serializeToLayer(string msg, string jdata);
string deSerialize(Layer& layer);
string deSerialize(SerializeNode*& head);
SerializeNode* deSerialize(Layer layer,map<string,int>& posMaps,SerializeNode*& info,SerializeNode*& growNode);
vector<string> Buffer2Json(string buf);
string Json2Buffer(string msgType,string json);
Layer fromBuffer(string buf) {
Layer lb;
lb.fromBuffer(buf);
return lb;
}
Layer genLayer(string to) {
Layer lb;
lb.init(to);
return lb;
}
private:
};
|
9b49bdd4226866a2330a1993dae0a142fba7e518
|
9e7ddbe6bdc142661431ae997b52bb3950e02659
|
/tests/test-hdr/queue/hdr_intrusive_msqueue_hp.cpp
|
fa11fa483f8d9d616060b6f588ecb314d002771a
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
OlegZaytsev/libcds
|
f8971cb9c6d4240dafbe225cba9682d204a7e8f7
|
ce09638fafc152a6d3c9320e676056e99ae93cba
|
refs/heads/master
| 2021-01-15T21:08:18.071447
| 2016-02-26T08:11:04
| 2016-02-26T08:11:04
| 50,012,457
| 0
| 1
| null | 2016-01-20T07:23:36
| 2016-01-20T07:23:35
| null |
UTF-8
|
C++
| false
| false
| 9,024
|
cpp
|
hdr_intrusive_msqueue_hp.cpp
|
/*
This file is a part of libcds - Concurrent Data Structures library
(C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
Source code repo: http://github.com/khizmax/libcds/
Download: http://sourceforge.net/projects/libcds/files/
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "hdr_intrusive_msqueue.h"
#include <cds/intrusive/msqueue.h>
#include <cds/gc/hp.h>
namespace queue {
#define TEST(X) void IntrusiveQueueHeaderTest::test_##X() { test<X>(); }
namespace {
typedef IntrusiveQueueHeaderTest::base_hook_item< ci::msqueue::node<cds::gc::HP > > base_item_type;
typedef IntrusiveQueueHeaderTest::member_hook_item< ci::msqueue::node<cds::gc::HP > > member_item_type;
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
>::type
> MSQueue_HP_default;
/// HP + item counter
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,co::item_counter< cds::atomicity::item_counter >
,co::memory_model< co::v::sequential_consistent >
>::type
> MSQueue_HP_default_ic;
/// HP + stat
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,co::stat< ci::msqueue::stat<> >
>::type
> MSQueue_HP_default_stat;
// HP base hook
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::base_hook< ci::opt::gc<cds::gc::HP> >
>
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
>::type
> MSQueue_HP_base;
// HP member hook
typedef ci::MSQueue< cds::gc::HP, member_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::member_hook<
offsetof( member_item_type, hMember ),
ci::opt::gc<cds::gc::HP>
>
>
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
>::type
> MSQueue_HP_member;
/// HP base hook + item counter
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,ci::opt::hook<
ci::msqueue::base_hook< ci::opt::gc<cds::gc::HP> >
>
,co::item_counter< cds::atomicity::item_counter >
,co::memory_model< co::v::relaxed_ordering >
>::type
> MSQueue_HP_base_ic;
// HP member hook + item counter
typedef ci::MSQueue< cds::gc::HP, member_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::member_hook<
offsetof( member_item_type, hMember ),
ci::opt::gc<cds::gc::HP>
>
>
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,co::item_counter< cds::atomicity::item_counter >
>::type
> MSQueue_HP_member_ic;
// HP base hook + stat
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::base_hook< ci::opt::gc<cds::gc::HP> >
>
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,co::stat< ci::msqueue::stat<> >
>::type
> MSQueue_HP_base_stat;
// HP member hook + stat
typedef ci::MSQueue< cds::gc::HP, member_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::member_hook<
offsetof( member_item_type, hMember ),
ci::opt::gc<cds::gc::HP>
>
>
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,co::stat< ci::msqueue::stat<> >
>::type
> MSQueue_HP_member_stat;
// HP base hook + padding
typedef ci::MSQueue< cds::gc::HP, base_item_type,
typename ci::msqueue::make_traits<
ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
,ci::opt::hook<
ci::msqueue::base_hook< ci::opt::gc<cds::gc::HP> >
>
,co::padding< 32 >
>::type
> MSQueue_HP_base_align;
// HP member hook + padding
typedef ci::MSQueue< cds::gc::HP, member_item_type,
typename ci::msqueue::make_traits<
ci::opt::hook<
ci::msqueue::member_hook<
offsetof( member_item_type, hMember ),
ci::opt::gc<cds::gc::HP>
>
>
,co::padding< 32 >
,ci::opt::disposer< IntrusiveQueueHeaderTest::faked_disposer >
>::type
> MSQueue_HP_member_align;
// HP base hook + no padding
struct traits_MSQueue_HP_base_noalign : public ci::msqueue::traits {
typedef ci::msqueue::base_hook< ci::opt::gc<cds::gc::HP> > hook;
typedef IntrusiveQueueHeaderTest::faked_disposer disposer;
enum { padding = co::no_special_padding };
};
typedef ci::MSQueue< cds::gc::HP, base_item_type, traits_MSQueue_HP_base_noalign > MSQueue_HP_base_noalign;
// HP member hook + no padding
struct traits_MSQueue_HP_member_noalign : public ci::msqueue::traits {
typedef ci::msqueue::member_hook <
offsetof( member_item_type, hMember ),
ci::opt::gc < cds::gc::HP >
> hook;
typedef IntrusiveQueueHeaderTest::faked_disposer disposer;
enum { padding = co::no_special_padding };
};
typedef ci::MSQueue< cds::gc::HP, member_item_type, traits_MSQueue_HP_member_noalign > MSQueue_HP_member_noalign;
// HP base hook + cache padding
struct traits_MSQueue_HP_base_cachealign : public traits_MSQueue_HP_base_noalign
{
enum { padding = co::cache_line_padding };
};
typedef ci::MSQueue< cds::gc::HP, base_item_type, traits_MSQueue_HP_base_cachealign > MSQueue_HP_base_cachealign;
// HP member hook + cache padding
struct traits_MSQueue_HP_member_cachealign : public traits_MSQueue_HP_member_noalign
{
enum { padding = co::cache_line_padding };
};
typedef ci::MSQueue< cds::gc::HP, member_item_type, traits_MSQueue_HP_member_cachealign > MSQueue_HP_member_cachealign;
}
TEST(MSQueue_HP_default)
TEST(MSQueue_HP_default_ic)
TEST(MSQueue_HP_default_stat)
TEST(MSQueue_HP_base)
TEST(MSQueue_HP_member)
TEST(MSQueue_HP_base_ic)
TEST(MSQueue_HP_member_ic)
TEST(MSQueue_HP_base_stat)
TEST(MSQueue_HP_member_stat)
TEST(MSQueue_HP_base_align)
TEST(MSQueue_HP_member_align)
TEST(MSQueue_HP_base_noalign)
TEST(MSQueue_HP_member_noalign)
TEST(MSQueue_HP_base_cachealign)
TEST(MSQueue_HP_member_cachealign)
}
|
ee2fa54d31cba1a21af3d007fefd15a91927d9af
|
d81fde186297f570ccd4f9ea5df3277a0172ab17
|
/Temp/il2cppOutput/il2cppOutput/Bulk_System.Xml_1.cpp
|
9a5ae8505f45d6057c0abd7596ddd89831469038
|
[] |
no_license
|
dsalamancad/ARPlaceMaker
|
832c7d87b5786f14c922c4716d03075edf2ec3ba
|
9c5674007b35fd50a06abb858d5f1275be231eb6
|
refs/heads/master
| 2021-01-17T20:27:51.944773
| 2016-05-06T04:38:43
| 2016-05-06T04:38:43
| 58,178,989
| 0
| 0
| null | 2016-05-06T03:41:18
| 2016-05-06T03:41:17
| null |
UTF-8
|
C++
| false
| false
| 1,595,548
|
cpp
|
Bulk_System.Xml_1.cpp
|
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
// System.Xml.Schema.XmlSchemaDatatype
struct XmlSchemaDatatype_t2590121;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t176365656;
// System.String
struct String_t;
// System.Xml.Schema.XmlSchemaFacet
struct XmlSchemaFacet_t4078749516;
// System.Xml.Schema.XmlSchemaInfo
struct XmlSchemaInfo_t3432471667;
// System.Xml.Schema.IXmlSchemaInfo
struct IXmlSchemaInfo_t886430410;
// System.Xml.Schema.XmlSchemaSimpleType
struct XmlSchemaSimpleType_t1500525009;
// System.Xml.Schema.XmlSchemaAttribute
struct XmlSchemaAttribute_t1191708721;
// System.Xml.Schema.XmlSchemaElement
struct XmlSchemaElement_t471922321;
// System.Xml.Schema.XmlSchemaType
struct XmlSchemaType_t3432810239;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t2900481284;
// System.Xml.Schema.XmlSchemaPatternFacet
struct XmlSchemaPatternFacet_t2687480780;
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t3827173367;
// System.Xml.XmlNameTable
struct XmlNameTable_t3232213908;
// System.Xml.Schema.XmlSchema[]
struct XmlSchemaU5BU5D_t3223231528;
// System.Xml.Schema.XmlSchemaSimpleTypeContent
struct XmlSchemaSimpleTypeContent_t1763168354;
// System.Xml.Schema.XmlSchemaSimpleTypeList
struct XmlSchemaSimpleTypeList_t3214959759;
// System.Xml.Serialization.ClassMap
struct ClassMap_t912207490;
// System.Xml.Serialization.XmlTypeMapMember
struct XmlTypeMapMember_t757519331;
// System.Xml.Serialization.XmlTypeMapMemberExpandable
struct XmlTypeMapMemberExpandable_t1849554103;
// System.Xml.Serialization.XmlTypeMapMemberAttribute
struct XmlTypeMapMemberAttribute_t2837866357;
// System.Xml.Serialization.XmlTypeMapElementInfo
struct XmlTypeMapElementInfo_t3184170653;
// System.Xml.Serialization.XmlTypeMapMemberAnyElement
struct XmlTypeMapMemberAnyElement_t2899433779;
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute
struct XmlTypeMapMemberAnyAttribute_t576758419;
// System.Xml.Serialization.XmlTypeMapMemberNamespaces
struct XmlTypeMapMemberNamespaces_t1473492027;
// System.Collections.ICollection
struct ICollection_t3761522009;
// System.Collections.ArrayList
struct ArrayList_t2121638921;
// System.Xml.Serialization.EnumMap
struct EnumMap_t228974105;
// System.Xml.Serialization.EnumMap/EnumMapMember[]
struct EnumMapMemberU5BU5D_t3911606680;
// System.String[]
struct StringU5BU5D_t2956870243;
// System.Int64[]
struct Int64U5BU5D_t753178071;
// System.Object
struct Il2CppObject;
// System.Xml.Serialization.EnumMap/EnumMapMember
struct EnumMapMember_t1245278965;
// System.Text.StringBuilder
struct StringBuilder_t3822575854;
// System.Type
struct Type_t;
// System.Xml.Serialization.ListMap
struct ListMap_t2001748316;
// System.Xml.Serialization.XmlTypeMapElementInfoList
struct XmlTypeMapElementInfoList_t3690603483;
// System.Xml.Serialization.ObjectMap
struct ObjectMap_t669501211;
// System.Xml.Serialization.ReflectionHelper
struct ReflectionHelper_t3225254263;
// System.Xml.Serialization.XmlTypeMapping
struct XmlTypeMapping_t988104027;
// System.Xml.Serialization.SerializationSource
struct SerializationSource_t3475287465;
// System.Type[]
struct TypeU5BU5D_t3431720054;
// System.Xml.Serialization.TypeData
struct TypeData_t3837952962;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// System.InvalidOperationException
struct InvalidOperationException_t2420574324;
// System.Xml.Serialization.TypeMember
struct TypeMember_t540108850;
// System.Xml.Serialization.UnreferencedObjectEventArgs
struct UnreferencedObjectEventArgs_t3619478372;
// System.Xml.Serialization.UnreferencedObjectEventHandler
struct UnreferencedObjectEventHandler_t3729189727;
// System.IAsyncResult
struct IAsyncResult_t537683269;
// System.AsyncCallback
struct AsyncCallback_t1363551830;
// System.Xml.Serialization.XmlAnyElementAttribute
struct XmlAnyElementAttribute_t3085069619;
// System.Xml.Serialization.XmlAnyElementAttributes
struct XmlAnyElementAttributes_t788445468;
// System.Xml.Serialization.XmlArrayAttribute
struct XmlArrayAttribute_t229420472;
// System.Xml.Serialization.XmlArrayItemAttribute
struct XmlArrayItemAttribute_t2429429989;
// System.Xml.Serialization.XmlArrayItemAttributes
struct XmlArrayItemAttributes_t1938453418;
// System.Xml.Serialization.XmlAttributeAttribute
struct XmlAttributeAttribute_t949177685;
// System.Xml.Serialization.XmlAttributeEventArgs
struct XmlAttributeEventArgs_t966950224;
// System.Xml.XmlAttribute
struct XmlAttribute_t2022155821;
// System.Xml.Serialization.XmlAttributeEventHandler
struct XmlAttributeEventHandler_t1071444467;
// System.Xml.Serialization.XmlAttributeOverrides
struct XmlAttributeOverrides_t186122464;
// System.Xml.Serialization.XmlAttributes
struct XmlAttributes_t2892492364;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_t2334200065;
// System.Xml.Serialization.XmlAnyAttributeAttribute
struct XmlAnyAttributeAttribute_t1747985491;
// System.Xml.Serialization.XmlChoiceIdentifierAttribute
struct XmlChoiceIdentifierAttribute_t1288756729;
// System.Xml.Serialization.XmlElementAttributes
struct XmlElementAttributes_t485582810;
// System.Xml.Serialization.XmlRootAttribute
struct XmlRootAttribute_t2483700417;
// System.Xml.Serialization.XmlTextAttribute
struct XmlTextAttribute_t1613374166;
// System.Xml.Serialization.XmlTypeAttribute
struct XmlTypeAttribute_t43505513;
// System.Xml.Serialization.XmlElementAttribute
struct XmlElementAttribute_t27258549;
// System.Xml.Serialization.XmlElementEventArgs
struct XmlElementEventArgs_t45031088;
// System.Xml.XmlElement
struct XmlElement_t3562928333;
// System.Xml.Serialization.XmlElementEventHandler
struct XmlElementEventHandler_t2494321811;
// System.Xml.Serialization.XmlEnumAttribute
struct XmlEnumAttribute_t1057710466;
// System.Xml.Serialization.XmlIgnoreAttribute
struct XmlIgnoreAttribute_t2523800977;
// System.Xml.Serialization.XmlIncludeAttribute
struct XmlIncludeAttribute_t3812448905;
// System.Xml.Serialization.XmlMapping
struct XmlMapping_t2344951413;
// System.Xml.Serialization.XmlMembersMapping
struct XmlMembersMapping_t2913331946;
// System.Xml.Serialization.XmlNodeEventArgs
struct XmlNodeEventArgs_t619448732;
// System.Xml.Serialization.XmlNodeEventHandler
struct XmlNodeEventHandler_t3820646951;
// System.Xml.Serialization.XmlReflectionImporter
struct XmlReflectionImporter_t3346079314;
// System.Xml.Serialization.XmlReflectionMember
struct XmlReflectionMember_t891190874;
// System.Xml.Serialization.XmlTypeMapMemberElement
struct XmlTypeMapMemberElement_t1386704533;
// System.Xml.Serialization.XmlSchemaProviderAttribute
struct XmlSchemaProviderAttribute_t1971034033;
// System.Xml.Serialization.XmlSerializableMapping
struct XmlSerializableMapping_t3919399670;
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback
struct XmlSerializationCollectionFixupCallback_t2598659068;
// System.Xml.Serialization.XmlSerializationFixupCallback
struct XmlSerializationFixupCallback_t3787251386;
// System.Xml.Serialization.XmlSerializationGeneratedCode
struct XmlSerializationGeneratedCode_t3515170049;
// System.Xml.Serialization.XmlSerializationReadCallback
struct XmlSerializationReadCallback_t3159962994;
// System.Xml.Serialization.XmlSerializationReader
struct XmlSerializationReader_t540589306;
// System.Xml.XmlReader
struct XmlReader_t4229084514;
// System.Xml.Serialization.XmlSerializer
struct XmlSerializer_t1888860807;
// System.Collections.Hashtable
struct Hashtable_t3875263730;
// System.Xml.XmlDocument
struct XmlDocument_t3705263098;
// System.Xml.Serialization.XmlSerializationReader/CollectionFixup
struct CollectionFixup_t40072530;
// System.Xml.Serialization.XmlSerializationReader/Fixup
struct Fixup_t67893584;
// System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup
struct CollectionItemFixup_t3301129471;
// System.Exception
struct Exception_t1967233988;
// System.Array
struct Il2CppArray;
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo
struct WriteCallbackInfo_t2990892018;
// System.Xml.Serialization.IXmlSerializable
struct IXmlSerializable_t1192716491;
// System.Xml.XmlNode
struct XmlNode_t3592213601;
// System.Xml.Serialization.XmlSerializationReaderInterpreter
struct XmlSerializationReaderInterpreter_t1865114396;
// System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo
struct FixupCallbackInfo_t3459720195;
// System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo
struct ReaderCallbackInfo_t922331926;
// System.Xml.Serialization.XmlSerializationWriteCallback
struct XmlSerializationWriteCallback_t4044254761;
// System.Xml.Serialization.XmlSerializationWriter
struct XmlSerializationWriter_t695994538;
// System.Xml.XmlWriter
struct XmlWriter_t89522450;
// System.Xml.Serialization.XmlSerializerNamespaces
struct XmlSerializerNamespaces_t2229116383;
// System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo
struct WriteCallbackInfo_t2990892019;
// System.Xml.Serialization.XmlSerializationWriterInterpreter
struct XmlSerializationWriterInterpreter_t1671227756;
// System.Object[]
struct ObjectU5BU5D_t11523773;
// System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo
struct CallbackInfo_t2288427699;
// System.IO.TextReader
struct TextReader_t1534522647;
// System.IO.TextWriter
struct TextWriter_t1689927879;
// System.Xml.Serialization.XmlSerializer/SerializerData
struct SerializerData_t1946782844;
// System.Xml.Serialization.XmlSerializerImplementation
struct XmlSerializerImplementation_t457041561;
// System.Xml.XmlQualifiedName[]
struct XmlQualifiedNameU5BU5D_t781474633;
// System.Collections.Specialized.ListDictionary
struct ListDictionary_t4226329727;
// System.Xml.Serialization.XmlTypeMapMemberFlatList
struct XmlTypeMapMemberFlatList_t1312744122;
// System.Xml.Serialization.XmlTypeMapMemberList
struct XmlTypeMapMemberList_t2630503969;
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Array2840145358.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaDatatype2590121.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaDatatype2590121MethodDeclarations.h"
#include "mscorlib_System_Void2779279689.h"
#include "mscorlib_System_Text_StringBuilder3822575854MethodDeclarations.h"
#include "mscorlib_System_Object837106420MethodDeclarations.h"
#include "mscorlib_System_Text_StringBuilder3822575854.h"
#include "mscorlib_System_Runtime_CompilerServices_RuntimeHe1695827251MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdAnySimpleType8663200MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdString1590891979MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNormalizedString2753230946MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdToken2806564481MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdLanguage4177521362MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNMToken1296931426MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNMTokens2060706707MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdName2013535877MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNCName1401413498MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdID2215259957MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdIDRef2795100704MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdIDRefs1259314069MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdEntity1184602525MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdEntities3688996667MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNotation3074536316MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdDecimal1712604697MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdInteger2128393222MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdLong2013489782MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdInt464121399MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdShort2805436676MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdByte2013201666MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNonNegativeInteger906772726MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdPositiveInteger2414883021MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedLong1376676363MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedInt4045809666MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedShort244089871MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedByte1376388247MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNonPositiveInteger673083058MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdNegativeInteger2648572689MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdFloat2793549540MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdDouble1156919691MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdBase64Binary3314116906MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdBoolean235052784MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdAnyURI1070214554MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdDuration3799098638MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdDateTime3288893205MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdDate2013238184MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdTime2013722311MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdHexBinary1695962116MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdQName2802801444MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdGYearMonth878671062MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdGMonthDay2202709899MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdGYear2793897420MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdGMonth1211240467MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XsdGDay2013299119MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XdtAnyAtomicType941707450MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XdtUntypedAtomic3803926693MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XdtDayTimeDuration2689613030MethodDeclarations.h"
#include "System_Xml_Mono_Xml_Schema_XdtYearMonthDuration3115315360MethodDeclarations.h"
#include "mscorlib_ArrayTypes.h"
#include "mscorlib_System_Char2778706699.h"
#include "System_Xml_U3CPrivateImplementationDetailsU3E3053238933.h"
#include "System_Xml_U3CPrivateImplementationDetailsU3E3053238933MethodDeclarations.h"
#include "System_Xml_U3CPrivateImplementationDetailsU3E_U24A2777878083.h"
#include "mscorlib_System_RuntimeFieldHandle3184214143.h"
#include "System_Xml_Mono_Xml_Schema_XsdAnySimpleType8663200.h"
#include "System_Xml_Mono_Xml_Schema_XsdString1590891979.h"
#include "System_Xml_Mono_Xml_Schema_XsdNormalizedString2753230946.h"
#include "System_Xml_Mono_Xml_Schema_XsdToken2806564481.h"
#include "System_Xml_Mono_Xml_Schema_XsdLanguage4177521362.h"
#include "System_Xml_Mono_Xml_Schema_XsdNMToken1296931426.h"
#include "System_Xml_Mono_Xml_Schema_XsdNMTokens2060706707.h"
#include "System_Xml_Mono_Xml_Schema_XsdName2013535877.h"
#include "System_Xml_Mono_Xml_Schema_XsdNCName1401413498.h"
#include "System_Xml_Mono_Xml_Schema_XsdID2215259957.h"
#include "System_Xml_Mono_Xml_Schema_XsdIDRef2795100704.h"
#include "System_Xml_Mono_Xml_Schema_XsdIDRefs1259314069.h"
#include "System_Xml_Mono_Xml_Schema_XsdEntity1184602525.h"
#include "System_Xml_Mono_Xml_Schema_XsdEntities3688996667.h"
#include "System_Xml_Mono_Xml_Schema_XsdNotation3074536316.h"
#include "System_Xml_Mono_Xml_Schema_XsdDecimal1712604697.h"
#include "System_Xml_Mono_Xml_Schema_XsdInteger2128393222.h"
#include "System_Xml_Mono_Xml_Schema_XsdLong2013489782.h"
#include "System_Xml_Mono_Xml_Schema_XsdInt464121399.h"
#include "System_Xml_Mono_Xml_Schema_XsdShort2805436676.h"
#include "System_Xml_Mono_Xml_Schema_XsdByte2013201666.h"
#include "System_Xml_Mono_Xml_Schema_XsdNonNegativeInteger906772726.h"
#include "System_Xml_Mono_Xml_Schema_XsdPositiveInteger2414883021.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedLong1376676363.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedInt4045809666.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedShort244089871.h"
#include "System_Xml_Mono_Xml_Schema_XsdUnsignedByte1376388247.h"
#include "System_Xml_Mono_Xml_Schema_XsdNonPositiveInteger673083058.h"
#include "System_Xml_Mono_Xml_Schema_XsdNegativeInteger2648572689.h"
#include "System_Xml_Mono_Xml_Schema_XsdFloat2793549540.h"
#include "System_Xml_Mono_Xml_Schema_XsdDouble1156919691.h"
#include "System_Xml_Mono_Xml_Schema_XsdBase64Binary3314116906.h"
#include "System_Xml_Mono_Xml_Schema_XsdBoolean235052784.h"
#include "System_Xml_Mono_Xml_Schema_XsdAnyURI1070214554.h"
#include "System_Xml_Mono_Xml_Schema_XsdDuration3799098638.h"
#include "System_Xml_Mono_Xml_Schema_XsdDateTime3288893205.h"
#include "System_Xml_Mono_Xml_Schema_XsdDate2013238184.h"
#include "System_Xml_Mono_Xml_Schema_XsdTime2013722311.h"
#include "System_Xml_Mono_Xml_Schema_XsdHexBinary1695962116.h"
#include "System_Xml_Mono_Xml_Schema_XsdQName2802801444.h"
#include "System_Xml_Mono_Xml_Schema_XsdGYearMonth878671062.h"
#include "System_Xml_Mono_Xml_Schema_XsdGMonthDay2202709899.h"
#include "System_Xml_Mono_Xml_Schema_XsdGYear2793897420.h"
#include "System_Xml_Mono_Xml_Schema_XsdGMonth1211240467.h"
#include "System_Xml_Mono_Xml_Schema_XsdGDay2013299119.h"
#include "System_Xml_Mono_Xml_Schema_XdtAnyAtomicType941707450.h"
#include "System_Xml_Mono_Xml_Schema_XdtUntypedAtomic3803926693.h"
#include "System_Xml_Mono_Xml_Schema_XdtDayTimeDuration2689613030.h"
#include "System_Xml_Mono_Xml_Schema_XdtYearMonthDuration3115315360.h"
#include "System_Xml_System_Xml_XmlQualifiedName176365656.h"
#include "System_Xml_System_Xml_XmlQualifiedName176365656MethodDeclarations.h"
#include "mscorlib_System_String968488902.h"
#include "mscorlib_System_Collections_Generic_Dictionary_2_ge190145395MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Dictionary_2_ge190145395.h"
#include "mscorlib_System_Int322847414787.h"
#include "mscorlib_System_Boolean211005341.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaDerivationMe4042409021.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaDerivationMe4042409021MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaElement471922321.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaElement471922321MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaFacet4078749516.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaFacet4078749516MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaAnnotated2513933869MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaFacet_Facet67634583.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaFacet_Facet67634583MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaForm3432383625.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaForm3432383625MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaInfo3432471667.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaInfo3432471667MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleType1500525009.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaAttribute1191708721.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaType3432810239.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaValidity1086268151.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaObject2900481284.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaObject2900481284MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializerN2229116383MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializerN2229116383.h"
#include "mscorlib_System_Collections_ArrayList2121638921.h"
#include "mscorlib_System_Guid2778838590.h"
#include "mscorlib_System_Guid2778838590MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaParticle3696384587.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaParticle3696384587MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaPatternFacet2687480780.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaPatternFacet2687480780MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSet3827173367.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSet3827173367MethodDeclarations.h"
#include "System_Xml_System_Xml_NameTable2805661099MethodDeclarations.h"
#include "System_Xml_System_Xml_NameTable2805661099.h"
#include "System_Xml_System_Xml_XmlNameTable3232213908.h"
#include "System_Xml_System_Xml_XmlUrlResolver215921638MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaCompilationSe539371163MethodDeclarations.h"
#include "mscorlib_System_ArgumentNullException3214793280MethodDeclarations.h"
#include "mscorlib_System_Collections_ArrayList2121638921MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlUrlResolver215921638.h"
#include "System_Xml_System_Xml_XmlResolver2502213349.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaCompilationSe539371163.h"
#include "mscorlib_System_ArgumentNullException3214793280.h"
#include "System.Xml_ArrayTypes.h"
#include "System_Xml_System_Xml_Schema_XmlSchema1932230565.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleType1500525009MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaType3432810239MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeLi3214959759MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeLi3214959759.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeCo1763168354.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeCo1763168354MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeRes409858485.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeRes409858485MethodDeclarations.h"
#include "mscorlib_System_Globalization_NumberStyles3988678145.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeUn1642459576.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaSimpleTypeUn1642459576MethodDeclarations.h"
#include "mscorlib_System_String968488902MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaUtil3432835015.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaUtil3432835015MethodDeclarations.h"
#include "mscorlib_System_Environment63604104MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaValidity1086268151MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_ClassMap912207490.h"
#include "System_Xml_System_Xml_Serialization_ClassMap912207490MethodDeclarations.h"
#include "mscorlib_System_Collections_Hashtable3875263730MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_ObjectMap669501211MethodDeclarations.h"
#include "mscorlib_System_Collections_Hashtable3875263730.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMembe757519331.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMembe757519331MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2837866357MethodDeclarations.h"
#include "mscorlib_System_InvalidOperationException2420574324MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2899433779MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_TypeData3837952962MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1386704533MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapElem3184170653MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2837866357.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2899433779.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapElem3184170653.h"
#include "mscorlib_System_Object837106420.h"
#include "mscorlib_System_DBNull491814586.h"
#include "mscorlib_System_InvalidOperationException2420574324.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1312744122.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1849554103.h"
#include "System_Xml_System_Xml_Serialization_TypeData3837952962.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMembe576758419.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1473492027.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1386704533.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapElem3690603483.h"
#include "mscorlib_System_Type2779229935.h"
#include "mscorlib_System_Type2779229935MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1849554103MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_SchemaTypes802525398.h"
#include "System_Xml_System_Xml_Serialization_CodeIdentifier1729402932.h"
#include "System_Xml_System_Xml_Serialization_CodeIdentifier1729402932MethodDeclarations.h"
#include "mscorlib_System_Globalization_CultureInfo3603717042MethodDeclarations.h"
#include "mscorlib_System_Char2778706699MethodDeclarations.h"
#include "mscorlib_System_Globalization_CultureInfo3603717042.h"
#include "mscorlib_System_NullReferenceException3216235232MethodDeclarations.h"
#include "mscorlib_System_NullReferenceException3216235232.h"
#include "System_Xml_System_Xml_Serialization_EnumMap228974105.h"
#include "System_Xml_System_Xml_Serialization_EnumMap228974105MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_EnumMap_EnumMa1245278965.h"
#include "System_Xml_System_Xml_Serialization_EnumMap_EnumMa1245278965MethodDeclarations.h"
#include "mscorlib_System_Int642847414882.h"
#include "mscorlib_System_InvalidCastException922874574MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlCustomForma4081221888MethodDeclarations.h"
#include "mscorlib_System_FormatException2404802957.h"
#include "mscorlib_System_InvalidCastException922874574.h"
#include "System_Xml_System_Xml_Serialization_KeyHelper4136865899.h"
#include "System_Xml_System_Xml_Serialization_KeyHelper4136865899MethodDeclarations.h"
#include "mscorlib_System_Int322847414787MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_ListMap2001748316.h"
#include "System_Xml_System_Xml_Serialization_ListMap2001748316MethodDeclarations.h"
#include "mscorlib_System_Array2840145358MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlMapping2344951413MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapping988104027MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapping988104027.h"
#include "System_Xml_System_Xml_Serialization_ObjectMap669501211.h"
#include "System_Xml_System_Xml_Serialization_ReflectionHelp3225254263.h"
#include "System_Xml_System_Xml_Serialization_ReflectionHelp3225254263MethodDeclarations.h"
#include "mscorlib_System_Reflection_ParameterModifier500203470.h"
#include "mscorlib_System_RuntimeTypeHandle1864875887.h"
#include "System_Xml_System_Xml_Serialization_TypeTranslator236292786MethodDeclarations.h"
#include "mscorlib_System_Reflection_ConstructorInfo3542137334.h"
#include "mscorlib_System_Reflection_BindingFlags2090192240.h"
#include "mscorlib_System_Reflection_Binder4180926488.h"
#include "System_Xml_System_Xml_Serialization_SchemaTypes802525398MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_SerializationF3103014277.h"
#include "System_Xml_System_Xml_Serialization_SerializationF3103014277MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_SerializationS3475287465.h"
#include "System_Xml_System_Xml_Serialization_SerializationS3475287465MethodDeclarations.h"
#include "mscorlib_System_Reflection_MemberInfo2843033814MethodDeclarations.h"
#include "mscorlib_System_Reflection_MemberInfo2843033814.h"
#include "mscorlib_System_NotSupportedException1374155497MethodDeclarations.h"
#include "mscorlib_System_Reflection_PropertyInfo1490548369.h"
#include "mscorlib_System_Reflection_MethodInfo3461221277.h"
#include "mscorlib_System_NotSupportedException1374155497.h"
#include "mscorlib_System_Reflection_PropertyInfo1490548369MethodDeclarations.h"
#include "mscorlib_System_Reflection_MethodInfo3461221277MethodDeclarations.h"
#include "mscorlib_System_Reflection_ParameterInfo2610273829.h"
#include "mscorlib_System_Reflection_ParameterInfo2610273829MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_TypeMember540108850.h"
#include "System_Xml_System_Xml_Serialization_TypeMember540108850MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_TypeTranslator236292786.h"
#include "mscorlib_System_Collections_DictionaryEntry130027246MethodDeclarations.h"
#include "mscorlib_System_Collections_DictionaryEntry130027246.h"
#include "System_Xml_System_Xml_XmlConvert1882388356MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_UnreferencedOb3619478372.h"
#include "System_Xml_System_Xml_Serialization_UnreferencedOb3619478372MethodDeclarations.h"
#include "mscorlib_System_EventArgs516466188MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_UnreferencedOb3729189727.h"
#include "System_Xml_System_Xml_Serialization_UnreferencedOb3729189727MethodDeclarations.h"
#include "mscorlib_System_IntPtr676692020.h"
#include "mscorlib_System_AsyncCallback1363551830.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyAttribut1747985491.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyAttribut1747985491MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyElementA3085069619.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyElementA3085069619MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyElementAt788445468.h"
#include "System_Xml_System_Xml_Serialization_XmlAnyElementAt788445468MethodDeclarations.h"
#include "mscorlib_System_Collections_CollectionBase851261505MethodDeclarations.h"
#include "mscorlib_System_Collections_CollectionBase851261505.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayAttribu229420472.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayAttribu229420472MethodDeclarations.h"
#include "mscorlib_System_Enum2778772662MethodDeclarations.h"
#include "mscorlib_System_Enum2778772662.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayItemAt2429429989.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayItemAt2429429989MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayItemAt1938453418.h"
#include "System_Xml_System_Xml_Serialization_XmlArrayItemAt1938453418MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeAtt949177685.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeAtt949177685MethodDeclarations.h"
#include "mscorlib_System_Attribute498693649MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeEve966950224.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeEve966950224MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlAttribute2022155821.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeEv1071444467.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeEv1071444467MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeOve186122464.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributeOve186122464MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributes2892492364.h"
#include "System_Xml_System_Xml_Serialization_XmlAttributes2892492364MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlElementAttri485582810MethodDeclarations.h"
#include "mscorlib_System_DBNull491814586MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlElementAttri485582810.h"
#include "System_Xml_System_Xml_Serialization_XmlChoiceIdent1288756729.h"
#include "System_System_ComponentModel_DefaultValueAttribute1225651029.h"
#include "System_System_ComponentModel_DefaultValueAttribute1225651029MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlElementAttrib27258549.h"
#include "System_Xml_System_Xml_Serialization_XmlEnumAttribu1057710466.h"
#include "System_Xml_System_Xml_Serialization_XmlIgnoreAttri2523800977.h"
#include "System_Xml_System_Xml_Serialization_XmlNamespaceDe4184778045.h"
#include "System_Xml_System_Xml_Serialization_XmlRootAttribu2483700417.h"
#include "System_Xml_System_Xml_Serialization_XmlTextAttribu1613374166.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeAttribute43505513.h"
#include "System_Xml_System_Xml_Serialization_XmlEnumAttribu1057710466MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlRootAttribu2483700417MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTextAttribu1613374166MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeAttribute43505513MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlChoiceIdent1288756729MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlCustomForma4081221888.h"
#include "mscorlib_System_DateTime339033936MethodDeclarations.h"
#include "mscorlib_System_Convert1097883944MethodDeclarations.h"
#include "mscorlib_System_DateTime339033936.h"
#include "mscorlib_System_Byte2778693821.h"
#include "System_Xml_System_Xml_XmlDateTimeSerializationMode167003369.h"
#include "mscorlib_System_Decimal1688557254.h"
#include "mscorlib_System_Double534516614.h"
#include "mscorlib_System_Int162847414729.h"
#include "mscorlib_System_SByte2855346064.h"
#include "mscorlib_System_Single958209021.h"
#include "mscorlib_System_UInt16985925268.h"
#include "mscorlib_System_UInt32985925326.h"
#include "mscorlib_System_UInt64985925421.h"
#include "System_Xml_System_Xml_Serialization_XmlElementAttrib27258549MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlElementEventA45031088.h"
#include "System_Xml_System_Xml_Serialization_XmlElementEventA45031088MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlElement3562928333.h"
#include "System_Xml_System_Xml_Serialization_XmlElementEven2494321811.h"
#include "System_Xml_System_Xml_Serialization_XmlElementEven2494321811MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlIgnoreAttri2523800977MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlIncludeAttr3812448905.h"
#include "System_Xml_System_Xml_Serialization_XmlIncludeAttr3812448905MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlMapping2344951413.h"
#include "System_Xml_System_Xml_Serialization_XmlMemberMappin633864123.h"
#include "System_Xml_System_Xml_Serialization_XmlMemberMappin633864123MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlMembersMapp2913331946.h"
#include "System_Xml_System_Xml_Serialization_XmlMembersMapp2913331946MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlNamespaceDe4184778045MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlNodeEventArg619448732.h"
#include "System_Xml_System_Xml_Serialization_XmlNodeEventArg619448732MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlNodeType3966624571.h"
#include "System_Xml_System_Xml_Serialization_XmlNodeEventHa3820646951.h"
#include "System_Xml_System_Xml_Serialization_XmlNodeEventHa3820646951MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlReflectionI3346079314.h"
#include "System_Xml_System_Xml_Serialization_XmlReflectionI3346079314MethodDeclarations.h"
#include "mscorlib_System_ArgumentException124305799MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeSeriali3729967672MethodDeclarations.h"
#include "mscorlib_System_ArgumentException124305799.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeSeriali3729967672.h"
#include "mscorlib_System_Exception1967233988.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializabl3919399670MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializabl3919399670.h"
#include "System_Xml_System_Xml_Serialization_XmlReflectionMe891190874MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlReflectionMe891190874.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapElem3690603483MethodDeclarations.h"
#include "mscorlib_System_Reflection_FieldInfo1164929782.h"
#include "mscorlib_System_Reflection_FieldInfo1164929782MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMembe576758419MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1473492027MethodDeclarations.h"
#include "mscorlib_System_Exception1967233988MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb1312744122MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2630503969MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlTypeMapMemb2630503969.h"
#include "System_Xml_System_Xml_Serialization_XmlSchemaProvi1971034033.h"
#include "System_Xml_System_Xml_Serialization_XmlSchemaProvi1971034033MethodDeclarations.h"
#include "mscorlib_System_Activator690001546MethodDeclarations.h"
#include "System_Xml_System_Xml_Schema_XmlSchema1932230565MethodDeclarations.h"
#include "mscorlib_System_Attribute498693649.h"
#include "mscorlib_System_Reflection_MethodBase3461000640MethodDeclarations.h"
#include "mscorlib_System_Reflection_MethodBase3461000640.h"
#include "System_Xml_System_Xml_Schema_XmlSchemaComplexType1860629407.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2598659068.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2598659068MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3787251386.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3787251386MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3515170049.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3515170049MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3159962994.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3159962994MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio540589306.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio540589306MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlReader4229084514.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializer1888860807.h"
#include "System_Xml_System_Xml_XmlReader4229084514MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlNameTable3232213908MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlDocument3705263098.h"
#include "System_Xml_System_Xml_XmlDocument3705263098MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerialization40072530.h"
#include "System_Xml_System_Xml_Serialization_XmlSerialization40072530MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerialization67893584.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3301129471.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2990892018MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2990892018.h"
#include "System_Xml_System_Xml_XmlAttribute2022155821MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3301129471MethodDeclarations.h"
#include "mscorlib_System_Reflection_Assembly1882292308.h"
#include "mscorlib_System_Reflection_Assembly1882292308MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerialization67893584MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlNode3592213601.h"
#include "System_Xml_System_Xml_XmlNode3592213601MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlNodeList3966370975.h"
#include "System_Xml_System_Xml_XmlNodeList3966370975MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlAttributeCollection571717291.h"
#include "System_Xml_System_Xml_XmlNamedNodeMap1329997280MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlNamedNodeMap1329997280.h"
#include "System_Xml_System_Xml_XmlElement3562928333MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlTextReader3719122287.h"
#include "System_Xml_System_Xml_XmlTextReader3719122287MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializer1888860807MethodDeclarations.h"
#include "System_Xml_System_Xml_ReadState457987651.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati1865114396.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati1865114396MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio922331926MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio922331926.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3459720195MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati3459720195.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati4044254761.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati4044254761MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio695994538.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializatio695994538MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlWriter89522450.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati_0MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati_0.h"
#include "mscorlib_System_Runtime_Serialization_ObjectIDGene1038861362MethodDeclarations.h"
#include "mscorlib_System_Runtime_Serialization_ObjectIDGene1038861362.h"
#include "System_Xml_System_Xml_XmlWriter89522450MethodDeclarations.h"
#include "System_System_Collections_Specialized_ListDictiona4226329727.h"
#include "System_System_Collections_Specialized_ListDictiona4226329727MethodDeclarations.h"
#include "mscorlib_System_Collections_Queue1621224067.h"
#include "mscorlib_System_Collections_Queue1621224067MethodDeclarations.h"
#include "System_Xml_System_Xml_WriteState924817882.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati1671227756.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati1671227756MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2288427699MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializati2288427699.h"
#include "mscorlib_System_NotImplementedException1091014741MethodDeclarations.h"
#include "mscorlib_System_NotImplementedException1091014741.h"
#include "mscorlib_System_IO_TextReader1534522647.h"
#include "System_Xml_System_Xml_WhitespaceHandling3134486634.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializer_1946782844.h"
#include "mscorlib_System_IO_TextWriter1689927879.h"
#include "System_Xml_System_Xml_XmlTextWriter3874527519MethodDeclarations.h"
#include "System_Xml_System_Xml_XmlTextWriter3874527519.h"
#include "System_Xml_System_Xml_Formatting1896776013.h"
#include "mscorlib_System_Reflection_TargetInvocationExcepti1980070524.h"
#include "mscorlib_System_Threading_Monitor2071304733MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializer_1946782844MethodDeclarations.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializerIm457041561.h"
#include "System_Xml_System_Xml_Serialization_XmlSerializerIm457041561MethodDeclarations.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.Schema.XmlSchemaDatatype::.ctor()
extern TypeInfo* StringBuilder_t3822575854_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaDatatype__ctor_m503494556_MetadataUsageId;
extern "C" void XmlSchemaDatatype__ctor_m503494556 (XmlSchemaDatatype_t2590121 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaDatatype__ctor_m503494556_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = (StringBuilder_t3822575854 *)il2cpp_codegen_object_new(StringBuilder_t3822575854_il2cpp_TypeInfo_var);
StringBuilder__ctor_m135953004(L_0, /*hidden argument*/NULL);
__this->set_sb_2(L_0);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaDatatype::.cctor()
extern TypeInfo* CharU5BU5D_t3416858730_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var;
extern TypeInfo* XsdAnySimpleType_t8663200_il2cpp_TypeInfo_var;
extern TypeInfo* XsdString_t1590891979_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNormalizedString_t2753230946_il2cpp_TypeInfo_var;
extern TypeInfo* XsdToken_t2806564481_il2cpp_TypeInfo_var;
extern TypeInfo* XsdLanguage_t4177521362_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNMToken_t1296931426_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNMTokens_t2060706707_il2cpp_TypeInfo_var;
extern TypeInfo* XsdName_t2013535877_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNCName_t1401413498_il2cpp_TypeInfo_var;
extern TypeInfo* XsdID_t2215259957_il2cpp_TypeInfo_var;
extern TypeInfo* XsdIDRef_t2795100704_il2cpp_TypeInfo_var;
extern TypeInfo* XsdIDRefs_t1259314069_il2cpp_TypeInfo_var;
extern TypeInfo* XsdEntity_t1184602525_il2cpp_TypeInfo_var;
extern TypeInfo* XsdEntities_t3688996667_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNotation_t3074536316_il2cpp_TypeInfo_var;
extern TypeInfo* XsdDecimal_t1712604697_il2cpp_TypeInfo_var;
extern TypeInfo* XsdInteger_t2128393222_il2cpp_TypeInfo_var;
extern TypeInfo* XsdLong_t2013489782_il2cpp_TypeInfo_var;
extern TypeInfo* XsdInt_t464121399_il2cpp_TypeInfo_var;
extern TypeInfo* XsdShort_t2805436676_il2cpp_TypeInfo_var;
extern TypeInfo* XsdByte_t2013201666_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNonNegativeInteger_t906772726_il2cpp_TypeInfo_var;
extern TypeInfo* XsdPositiveInteger_t2414883021_il2cpp_TypeInfo_var;
extern TypeInfo* XsdUnsignedLong_t1376676363_il2cpp_TypeInfo_var;
extern TypeInfo* XsdUnsignedInt_t4045809666_il2cpp_TypeInfo_var;
extern TypeInfo* XsdUnsignedShort_t244089871_il2cpp_TypeInfo_var;
extern TypeInfo* XsdUnsignedByte_t1376388247_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNonPositiveInteger_t673083058_il2cpp_TypeInfo_var;
extern TypeInfo* XsdNegativeInteger_t2648572689_il2cpp_TypeInfo_var;
extern TypeInfo* XsdFloat_t2793549540_il2cpp_TypeInfo_var;
extern TypeInfo* XsdDouble_t1156919691_il2cpp_TypeInfo_var;
extern TypeInfo* XsdBase64Binary_t3314116906_il2cpp_TypeInfo_var;
extern TypeInfo* XsdBoolean_t235052784_il2cpp_TypeInfo_var;
extern TypeInfo* XsdAnyURI_t1070214554_il2cpp_TypeInfo_var;
extern TypeInfo* XsdDuration_t3799098638_il2cpp_TypeInfo_var;
extern TypeInfo* XsdDateTime_t3288893205_il2cpp_TypeInfo_var;
extern TypeInfo* XsdDate_t2013238184_il2cpp_TypeInfo_var;
extern TypeInfo* XsdTime_t2013722311_il2cpp_TypeInfo_var;
extern TypeInfo* XsdHexBinary_t1695962116_il2cpp_TypeInfo_var;
extern TypeInfo* XsdQName_t2802801444_il2cpp_TypeInfo_var;
extern TypeInfo* XsdGYearMonth_t878671062_il2cpp_TypeInfo_var;
extern TypeInfo* XsdGMonthDay_t2202709899_il2cpp_TypeInfo_var;
extern TypeInfo* XsdGYear_t2793897420_il2cpp_TypeInfo_var;
extern TypeInfo* XsdGMonth_t1211240467_il2cpp_TypeInfo_var;
extern TypeInfo* XsdGDay_t2013299119_il2cpp_TypeInfo_var;
extern TypeInfo* XdtAnyAtomicType_t941707450_il2cpp_TypeInfo_var;
extern TypeInfo* XdtUntypedAtomic_t3803926693_il2cpp_TypeInfo_var;
extern TypeInfo* XdtDayTimeDuration_t2689613030_il2cpp_TypeInfo_var;
extern TypeInfo* XdtYearMonthDuration_t3115315360_il2cpp_TypeInfo_var;
extern FieldInfo* U3CPrivateImplementationDetailsU3E_t3053238938____U24U24fieldU2D23_0_FieldInfo_var;
extern const uint32_t XmlSchemaDatatype__cctor_m2241333137_MetadataUsageId;
extern "C" void XmlSchemaDatatype__cctor_m2241333137 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaDatatype__cctor_m2241333137_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
CharU5BU5D_t3416858730* L_0 = ((CharU5BU5D_t3416858730*)SZArrayNew(CharU5BU5D_t3416858730_il2cpp_TypeInfo_var, (uint32_t)4));
RuntimeHelpers_InitializeArray_m2058365049(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_0, LoadFieldToken(U3CPrivateImplementationDetailsU3E_t3053238938____U24U24fieldU2D23_0_FieldInfo_var), /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_wsChars_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(XsdAnySimpleType_t8663200_il2cpp_TypeInfo_var);
XsdAnySimpleType_t8663200 * L_1 = XsdAnySimpleType_get_Instance_m4236154734(NULL /*static, unused*/, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeAnySimpleType_3(L_1);
XsdString_t1590891979 * L_2 = (XsdString_t1590891979 *)il2cpp_codegen_object_new(XsdString_t1590891979_il2cpp_TypeInfo_var);
XsdString__ctor_m952800242(L_2, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeString_4(L_2);
XsdNormalizedString_t2753230946 * L_3 = (XsdNormalizedString_t2753230946 *)il2cpp_codegen_object_new(XsdNormalizedString_t2753230946_il2cpp_TypeInfo_var);
XsdNormalizedString__ctor_m1949672443(L_3, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNormalizedString_5(L_3);
XsdToken_t2806564481 * L_4 = (XsdToken_t2806564481 *)il2cpp_codegen_object_new(XsdToken_t2806564481_il2cpp_TypeInfo_var);
XsdToken__ctor_m2878046794(L_4, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeToken_6(L_4);
XsdLanguage_t4177521362 * L_5 = (XsdLanguage_t4177521362 *)il2cpp_codegen_object_new(XsdLanguage_t4177521362_il2cpp_TypeInfo_var);
XsdLanguage__ctor_m1673300107(L_5, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeLanguage_7(L_5);
XsdNMToken_t1296931426 * L_6 = (XsdNMToken_t1296931426 *)il2cpp_codegen_object_new(XsdNMToken_t1296931426_il2cpp_TypeInfo_var);
XsdNMToken__ctor_m327823817(L_6, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNMToken_8(L_6);
XsdNMTokens_t2060706707 * L_7 = (XsdNMTokens_t2060706707 *)il2cpp_codegen_object_new(XsdNMTokens_t2060706707_il2cpp_TypeInfo_var);
XsdNMTokens__ctor_m2419972330(L_7, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNMTokens_9(L_7);
XsdName_t2013535877 * L_8 = (XsdName_t2013535877 *)il2cpp_codegen_object_new(XsdName_t2013535877_il2cpp_TypeInfo_var);
XsdName__ctor_m965229240(L_8, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeName_10(L_8);
XsdNCName_t1401413498 * L_9 = (XsdNCName_t1401413498 *)il2cpp_codegen_object_new(XsdNCName_t1401413498_il2cpp_TypeInfo_var);
XsdNCName__ctor_m4137434915(L_9, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNCName_11(L_9);
XsdID_t2215259957 * L_10 = (XsdID_t2215259957 *)il2cpp_codegen_object_new(XsdID_t2215259957_il2cpp_TypeInfo_var);
XsdID__ctor_m1149632072(L_10, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeID_12(L_10);
XsdIDRef_t2795100704 * L_11 = (XsdIDRef_t2795100704 *)il2cpp_codegen_object_new(XsdIDRef_t2795100704_il2cpp_TypeInfo_var);
XsdIDRef__ctor_m2220691851(L_11, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeIDRef_13(L_11);
XsdIDRefs_t1259314069 * L_12 = (XsdIDRefs_t1259314069 *)il2cpp_codegen_object_new(XsdIDRefs_t1259314069_il2cpp_TypeInfo_var);
XsdIDRefs__ctor_m969339240(L_12, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeIDRefs_14(L_12);
XsdEntity_t1184602525 * L_13 = (XsdEntity_t1184602525 *)il2cpp_codegen_object_new(XsdEntity_t1184602525_il2cpp_TypeInfo_var);
XsdEntity__ctor_m2334407776(L_13, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeEntity_15(L_13);
XsdEntities_t3688996667 * L_14 = (XsdEntities_t3688996667 *)il2cpp_codegen_object_new(XsdEntities_t3688996667_il2cpp_TypeInfo_var);
XsdEntities__ctor_m61127234(L_14, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeEntities_16(L_14);
XsdNotation_t3074536316 * L_15 = (XsdNotation_t3074536316 *)il2cpp_codegen_object_new(XsdNotation_t3074536316_il2cpp_TypeInfo_var);
XsdNotation__ctor_m3082870561(L_15, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNotation_17(L_15);
XsdDecimal_t1712604697 * L_16 = (XsdDecimal_t1712604697 *)il2cpp_codegen_object_new(XsdDecimal_t1712604697_il2cpp_TypeInfo_var);
XsdDecimal__ctor_m680772594(L_16, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDecimal_18(L_16);
XsdInteger_t2128393222 * L_17 = (XsdInteger_t2128393222 *)il2cpp_codegen_object_new(XsdInteger_t2128393222_il2cpp_TypeInfo_var);
XsdInteger__ctor_m3723735205(L_17, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeInteger_19(L_17);
XsdLong_t2013489782 * L_18 = (XsdLong_t2013489782 *)il2cpp_codegen_object_new(XsdLong_t2013489782_il2cpp_TypeInfo_var);
XsdLong__ctor_m1169214951(L_18, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeLong_20(L_18);
XsdInt_t464121399 * L_19 = (XsdInt_t464121399 *)il2cpp_codegen_object_new(XsdInt_t464121399_il2cpp_TypeInfo_var);
XsdInt__ctor_m3767165204(L_19, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeInt_21(L_19);
XsdShort_t2805436676 * L_20 = (XsdShort_t2805436676 *)il2cpp_codegen_object_new(XsdShort_t2805436676_il2cpp_TypeInfo_var);
XsdShort__ctor_m2889145127(L_20, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeShort_22(L_20);
XsdByte_t2013201666 * L_21 = (XsdByte_t2013201666 *)il2cpp_codegen_object_new(XsdByte_t2013201666_il2cpp_TypeInfo_var);
XsdByte__ctor_m3595325659(L_21, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeByte_23(L_21);
XsdNonNegativeInteger_t906772726 * L_22 = (XsdNonNegativeInteger_t906772726 *)il2cpp_codegen_object_new(XsdNonNegativeInteger_t906772726_il2cpp_TypeInfo_var);
XsdNonNegativeInteger__ctor_m1363977127(L_22, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNonNegativeInteger_24(L_22);
XsdPositiveInteger_t2414883021 * L_23 = (XsdPositiveInteger_t2414883021 *)il2cpp_codegen_object_new(XsdPositiveInteger_t2414883021_il2cpp_TypeInfo_var);
XsdPositiveInteger__ctor_m1629740222(L_23, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypePositiveInteger_25(L_23);
XsdUnsignedLong_t1376676363 * L_24 = (XsdUnsignedLong_t1376676363 *)il2cpp_codegen_object_new(XsdUnsignedLong_t1376676363_il2cpp_TypeInfo_var);
XsdUnsignedLong__ctor_m2340744434(L_24, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeUnsignedLong_26(L_24);
XsdUnsignedInt_t4045809666 * L_25 = (XsdUnsignedInt_t4045809666 *)il2cpp_codegen_object_new(XsdUnsignedInt_t4045809666_il2cpp_TypeInfo_var);
XsdUnsignedInt__ctor_m3112219817(L_25, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeUnsignedInt_27(L_25);
XsdUnsignedShort_t244089871 * L_26 = (XsdUnsignedShort_t244089871 *)il2cpp_codegen_object_new(XsdUnsignedShort_t244089871_il2cpp_TypeInfo_var);
XsdUnsignedShort__ctor_m551853436(L_26, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeUnsignedShort_28(L_26);
XsdUnsignedByte_t1376388247 * L_27 = (XsdUnsignedByte_t1376388247 *)il2cpp_codegen_object_new(XsdUnsignedByte_t1376388247_il2cpp_TypeInfo_var);
XsdUnsignedByte__ctor_m471887846(L_27, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeUnsignedByte_29(L_27);
XsdNonPositiveInteger_t673083058 * L_28 = (XsdNonPositiveInteger_t673083058 *)il2cpp_codegen_object_new(XsdNonPositiveInteger_t673083058_il2cpp_TypeInfo_var);
XsdNonPositiveInteger__ctor_m3796642155(L_28, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNonPositiveInteger_30(L_28);
XsdNegativeInteger_t2648572689 * L_29 = (XsdNegativeInteger_t2648572689 *)il2cpp_codegen_object_new(XsdNegativeInteger_t2648572689_il2cpp_TypeInfo_var);
XsdNegativeInteger__ctor_m3492042490(L_29, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeNegativeInteger_31(L_29);
XsdFloat_t2793549540 * L_30 = (XsdFloat_t2793549540 *)il2cpp_codegen_object_new(XsdFloat_t2793549540_il2cpp_TypeInfo_var);
XsdFloat__ctor_m181262663(L_30, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeFloat_32(L_30);
XsdDouble_t1156919691 * L_31 = (XsdDouble_t1156919691 *)il2cpp_codegen_object_new(XsdDouble_t1156919691_il2cpp_TypeInfo_var);
XsdDouble__ctor_m250327090(L_31, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDouble_33(L_31);
XsdBase64Binary_t3314116906 * L_32 = (XsdBase64Binary_t3314116906 *)il2cpp_codegen_object_new(XsdBase64Binary_t3314116906_il2cpp_TypeInfo_var);
XsdBase64Binary__ctor_m501055667(L_32, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeBase64Binary_34(L_32);
XsdBoolean_t235052784 * L_33 = (XsdBoolean_t235052784 *)il2cpp_codegen_object_new(XsdBoolean_t235052784_il2cpp_TypeInfo_var);
XsdBoolean__ctor_m4109790459(L_33, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeBoolean_35(L_33);
XsdAnyURI_t1070214554 * L_34 = (XsdAnyURI_t1070214554 *)il2cpp_codegen_object_new(XsdAnyURI_t1070214554_il2cpp_TypeInfo_var);
XsdAnyURI__ctor_m2654983427(L_34, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeAnyURI_36(L_34);
XsdDuration_t3799098638 * L_35 = (XsdDuration_t3799098638 *)il2cpp_codegen_object_new(XsdDuration_t3799098638_il2cpp_TypeInfo_var);
XsdDuration__ctor_m651334095(L_35, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDuration_37(L_35);
XsdDateTime_t3288893205 * L_36 = (XsdDateTime_t3288893205 *)il2cpp_codegen_object_new(XsdDateTime_t3288893205_il2cpp_TypeInfo_var);
XsdDateTime__ctor_m836503464(L_36, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDateTime_38(L_36);
XsdDate_t2013238184 * L_37 = (XsdDate_t2013238184 *)il2cpp_codegen_object_new(XsdDate_t2013238184_il2cpp_TypeInfo_var);
XsdDate__ctor_m4205501685(L_37, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDate_39(L_37);
XsdTime_t2013722311 * L_38 = (XsdTime_t2013722311 *)il2cpp_codegen_object_new(XsdTime_t2013722311_il2cpp_TypeInfo_var);
XsdTime__ctor_m237472950(L_38, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeTime_40(L_38);
XsdHexBinary_t1695962116 * L_39 = (XsdHexBinary_t1695962116 *)il2cpp_codegen_object_new(XsdHexBinary_t1695962116_il2cpp_TypeInfo_var);
XsdHexBinary__ctor_m3944764583(L_39, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeHexBinary_41(L_39);
XsdQName_t2802801444 * L_40 = (XsdQName_t2802801444 *)il2cpp_codegen_object_new(XsdQName_t2802801444_il2cpp_TypeInfo_var);
XsdQName__ctor_m179205383(L_40, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeQName_42(L_40);
XsdGYearMonth_t878671062 * L_41 = (XsdGYearMonth_t878671062 *)il2cpp_codegen_object_new(XsdGYearMonth_t878671062_il2cpp_TypeInfo_var);
XsdGYearMonth__ctor_m2329781447(L_41, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeGYearMonth_43(L_41);
XsdGMonthDay_t2202709899 * L_42 = (XsdGMonthDay_t2202709899 *)il2cpp_codegen_object_new(XsdGMonthDay_t2202709899_il2cpp_TypeInfo_var);
XsdGMonthDay__ctor_m1969029376(L_42, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeGMonthDay_44(L_42);
XsdGYear_t2793897420 * L_43 = (XsdGYear_t2793897420 *)il2cpp_codegen_object_new(XsdGYear_t2793897420_il2cpp_TypeInfo_var);
XsdGYear__ctor_m57593695(L_43, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeGYear_45(L_43);
XsdGMonth_t1211240467 * L_44 = (XsdGMonth_t1211240467 *)il2cpp_codegen_object_new(XsdGMonth_t1211240467_il2cpp_TypeInfo_var);
XsdGMonth__ctor_m1716300458(L_44, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeGMonth_46(L_44);
XsdGDay_t2013299119 * L_45 = (XsdGDay_t2013299119 *)il2cpp_codegen_object_new(XsdGDay_t2013299119_il2cpp_TypeInfo_var);
XsdGDay__ctor_m4023895758(L_45, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeGDay_47(L_45);
XdtAnyAtomicType_t941707450 * L_46 = (XdtAnyAtomicType_t941707450 *)il2cpp_codegen_object_new(XdtAnyAtomicType_t941707450_il2cpp_TypeInfo_var);
XdtAnyAtomicType__ctor_m822337841(L_46, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeAnyAtomicType_48(L_46);
XdtUntypedAtomic_t3803926693 * L_47 = (XdtUntypedAtomic_t3803926693 *)il2cpp_codegen_object_new(XdtUntypedAtomic_t3803926693_il2cpp_TypeInfo_var);
XdtUntypedAtomic__ctor_m3382942118(L_47, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeUntypedAtomic_49(L_47);
XdtDayTimeDuration_t2689613030 * L_48 = (XdtDayTimeDuration_t2689613030 *)il2cpp_codegen_object_new(XdtDayTimeDuration_t2689613030_il2cpp_TypeInfo_var);
XdtDayTimeDuration__ctor_m155016389(L_48, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeDayTimeDuration_50(L_48);
XdtYearMonthDuration_t3115315360 * L_49 = (XdtYearMonthDuration_t3115315360 *)il2cpp_codegen_object_new(XdtYearMonthDuration_t3115315360_il2cpp_TypeInfo_var);
XdtYearMonthDuration__ctor_m737026187(L_49, /*hidden argument*/NULL);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_datatypeYearMonthDuration_51(L_49);
return;
}
}
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaDatatype::FromName(System.Xml.XmlQualifiedName)
extern TypeInfo* XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaDatatype_FromName_m2003221181_MetadataUsageId;
extern "C" XmlSchemaDatatype_t2590121 * XmlSchemaDatatype_FromName_m2003221181 (Il2CppObject * __this /* static, unused */, XmlQualifiedName_t176365656 * ___qname, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaDatatype_FromName_m2003221181_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = ___qname;
NullCheck(L_0);
String_t* L_1 = XmlQualifiedName_get_Name_m607016698(L_0, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_2 = ___qname;
NullCheck(L_2);
String_t* L_3 = XmlQualifiedName_get_Namespace_m2987642414(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XmlSchemaDatatype_t2590121 * L_4 = XmlSchemaDatatype_FromName_m1008904623(NULL /*static, unused*/, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaDatatype::FromName(System.String,System.String)
extern TypeInfo* XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var;
extern TypeInfo* Dictionary_2_t190145395_il2cpp_TypeInfo_var;
extern const MethodInfo* Dictionary_2__ctor_m1958628151_MethodInfo_var;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral1977395786;
extern Il2CppCodeGenString* _stringLiteral2368514833;
extern Il2CppCodeGenString* _stringLiteral935766780;
extern Il2CppCodeGenString* _stringLiteral304624957;
extern Il2CppCodeGenString* _stringLiteral1201997559;
extern Il2CppCodeGenString* _stringLiteral798026520;
extern Il2CppCodeGenString* _stringLiteral3402981393;
extern Il2CppCodeGenString* _stringLiteral3571808744;
extern Il2CppCodeGenString* _stringLiteral110541305;
extern Il2CppCodeGenString* _stringLiteral2681377624;
extern Il2CppCodeGenString* _stringLiteral2790258554;
extern Il2CppCodeGenString* _stringLiteral598669337;
extern Il2CppCodeGenString* _stringLiteral2420395;
extern Il2CppCodeGenString* _stringLiteral2297370080;
extern Il2CppCodeGenString* _stringLiteral2331;
extern Il2CppCodeGenString* _stringLiteral69523832;
extern Il2CppCodeGenString* _stringLiteral2155238875;
extern Il2CppCodeGenString* _stringLiteral2050021347;
extern Il2CppCodeGenString* _stringLiteral2975479745;
extern Il2CppCodeGenString* _stringLiteral2361019394;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral1958052158;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral2189983352;
extern Il2CppCodeGenString* _stringLiteral1860163401;
extern Il2CppCodeGenString* _stringLiteral2423673020;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern Il2CppCodeGenString* _stringLiteral1626473733;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral2882303968;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral77225596;
extern Il2CppCodeGenString* _stringLiteral2741234588;
extern Il2CppCodeGenString* _stringLiteral2556356227;
extern Il2CppCodeGenString* _stringLiteral97874244;
extern Il2CppCodeGenString* _stringLiteral3023329881;
extern Il2CppCodeGenString* _stringLiteral3136949;
extern const uint32_t XmlSchemaDatatype_FromName_m1008904623_MetadataUsageId;
extern "C" XmlSchemaDatatype_t2590121 * XmlSchemaDatatype_FromName_m1008904623 (Il2CppObject * __this /* static, unused */, String_t* ___localName, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaDatatype_FromName_m1008904623_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
Dictionary_2_t190145395 * V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
int32_t V_4 = 0;
{
String_t* L_0 = ___ns;
V_0 = L_0;
String_t* L_1 = V_0;
if (!L_1)
{
goto IL_00f7;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_2 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2B_53();
if (L_2)
{
goto IL_0037;
}
}
{
Dictionary_2_t190145395 * L_3 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_3, 2, /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_3;
Dictionary_2_t190145395 * L_4 = V_1;
NullCheck(L_4);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_4, _stringLiteral1440052060, 0);
Dictionary_2_t190145395 * L_5 = V_1;
NullCheck(L_5);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_5, _stringLiteral1977395786, 1);
Dictionary_2_t190145395 * L_6 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map2B_53(L_6);
}
IL_0037:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_7 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2B_53();
String_t* L_8 = V_0;
NullCheck(L_7);
bool L_9 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_7, L_8, (&V_2));
if (!L_9)
{
goto IL_00f7;
}
}
{
int32_t L_10 = V_2;
if (!L_10)
{
goto IL_005b;
}
}
{
int32_t L_11 = V_2;
if ((((int32_t)L_11) == ((int32_t)1)))
{
goto IL_0060;
}
}
{
goto IL_00f7;
}
IL_005b:
{
goto IL_00f9;
}
IL_0060:
{
String_t* L_12 = ___localName;
V_3 = L_12;
String_t* L_13 = V_3;
if (!L_13)
{
goto IL_00f5;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_14 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2A_52();
if (L_14)
{
goto IL_00af;
}
}
{
Dictionary_2_t190145395 * L_15 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_15, 4, /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_15;
Dictionary_2_t190145395 * L_16 = V_1;
NullCheck(L_16);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_16, _stringLiteral2368514833, 0);
Dictionary_2_t190145395 * L_17 = V_1;
NullCheck(L_17);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_17, _stringLiteral935766780, 1);
Dictionary_2_t190145395 * L_18 = V_1;
NullCheck(L_18);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_18, _stringLiteral304624957, 2);
Dictionary_2_t190145395 * L_19 = V_1;
NullCheck(L_19);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_19, _stringLiteral1201997559, 3);
Dictionary_2_t190145395 * L_20 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map2A_52(L_20);
}
IL_00af:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_21 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2A_52();
String_t* L_22 = V_3;
NullCheck(L_21);
bool L_23 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_21, L_22, (&V_4));
if (!L_23)
{
goto IL_00f5;
}
}
{
int32_t L_24 = V_4;
if (L_24 == 0)
{
goto IL_00dd;
}
if (L_24 == 1)
{
goto IL_00e3;
}
if (L_24 == 2)
{
goto IL_00e9;
}
if (L_24 == 3)
{
goto IL_00ef;
}
}
{
goto IL_00f5;
}
IL_00dd:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XdtAnyAtomicType_t941707450 * L_25 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeAnyAtomicType_48();
return L_25;
}
IL_00e3:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XdtUntypedAtomic_t3803926693 * L_26 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeUntypedAtomic_49();
return L_26;
}
IL_00e9:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XdtDayTimeDuration_t2689613030 * L_27 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDayTimeDuration_50();
return L_27;
}
IL_00ef:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XdtYearMonthDuration_t3115315360 * L_28 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeYearMonthDuration_51();
return L_28;
}
IL_00f5:
{
return (XmlSchemaDatatype_t2590121 *)NULL;
}
IL_00f7:
{
return (XmlSchemaDatatype_t2590121 *)NULL;
}
IL_00f9:
{
String_t* L_29 = ___localName;
V_0 = L_29;
String_t* L_30 = V_0;
if (!L_30)
{
goto IL_0538;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_31 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2C_54();
if (L_31)
{
goto IL_0359;
}
}
{
Dictionary_2_t190145395 * L_32 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_32, ((int32_t)45), /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_32;
Dictionary_2_t190145395 * L_33 = V_1;
NullCheck(L_33);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_33, _stringLiteral798026520, 0);
Dictionary_2_t190145395 * L_34 = V_1;
NullCheck(L_34);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_34, _stringLiteral3402981393, 1);
Dictionary_2_t190145395 * L_35 = V_1;
NullCheck(L_35);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_35, _stringLiteral3571808744, 2);
Dictionary_2_t190145395 * L_36 = V_1;
NullCheck(L_36);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_36, _stringLiteral110541305, 3);
Dictionary_2_t190145395 * L_37 = V_1;
NullCheck(L_37);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_37, _stringLiteral2681377624, 4);
Dictionary_2_t190145395 * L_38 = V_1;
NullCheck(L_38);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_38, _stringLiteral2790258554, 5);
Dictionary_2_t190145395 * L_39 = V_1;
NullCheck(L_39);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_39, _stringLiteral598669337, 6);
Dictionary_2_t190145395 * L_40 = V_1;
NullCheck(L_40);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_40, _stringLiteral2420395, 7);
Dictionary_2_t190145395 * L_41 = V_1;
NullCheck(L_41);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_41, _stringLiteral2297370080, 8);
Dictionary_2_t190145395 * L_42 = V_1;
NullCheck(L_42);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_42, _stringLiteral2331, ((int32_t)9));
Dictionary_2_t190145395 * L_43 = V_1;
NullCheck(L_43);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_43, _stringLiteral69523832, ((int32_t)10));
Dictionary_2_t190145395 * L_44 = V_1;
NullCheck(L_44);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_44, _stringLiteral2155238875, ((int32_t)11));
Dictionary_2_t190145395 * L_45 = V_1;
NullCheck(L_45);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_45, _stringLiteral2050021347, ((int32_t)12));
Dictionary_2_t190145395 * L_46 = V_1;
NullCheck(L_46);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_46, _stringLiteral2975479745, ((int32_t)13));
Dictionary_2_t190145395 * L_47 = V_1;
NullCheck(L_47);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_47, _stringLiteral2361019394, ((int32_t)14));
Dictionary_2_t190145395 * L_48 = V_1;
NullCheck(L_48);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_48, _stringLiteral1542263633, ((int32_t)15));
Dictionary_2_t190145395 * L_49 = V_1;
NullCheck(L_49);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_49, _stringLiteral1958052158, ((int32_t)16));
Dictionary_2_t190145395 * L_50 = V_1;
NullCheck(L_50);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_50, _stringLiteral3327612, ((int32_t)17));
Dictionary_2_t190145395 * L_51 = V_1;
NullCheck(L_51);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_51, _stringLiteral104431, ((int32_t)18));
Dictionary_2_t190145395 * L_52 = V_1;
NullCheck(L_52);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_52, _stringLiteral109413500, ((int32_t)19));
Dictionary_2_t190145395 * L_53 = V_1;
NullCheck(L_53);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_53, _stringLiteral3039496, ((int32_t)20));
Dictionary_2_t190145395 * L_54 = V_1;
NullCheck(L_54);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_54, _stringLiteral2189983352, ((int32_t)21));
Dictionary_2_t190145395 * L_55 = V_1;
NullCheck(L_55);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_55, _stringLiteral1860163401, ((int32_t)22));
Dictionary_2_t190145395 * L_56 = V_1;
NullCheck(L_56);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_56, _stringLiteral2423673020, ((int32_t)23));
Dictionary_2_t190145395 * L_57 = V_1;
NullCheck(L_57);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_57, _stringLiteral1141514001, ((int32_t)24));
Dictionary_2_t190145395 * L_58 = V_1;
NullCheck(L_58);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_58, _stringLiteral1145198778, ((int32_t)25));
Dictionary_2_t190145395 * L_59 = V_1;
NullCheck(L_59);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_59, _stringLiteral1033453191, ((int32_t)26));
Dictionary_2_t190145395 * L_60 = V_1;
NullCheck(L_60);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_60, _stringLiteral1141225885, ((int32_t)27));
Dictionary_2_t190145395 * L_61 = V_1;
NullCheck(L_61);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_61, _stringLiteral1626473733, ((int32_t)28));
Dictionary_2_t190145395 * L_62 = V_1;
NullCheck(L_62);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_62, _stringLiteral97526364, ((int32_t)29));
Dictionary_2_t190145395 * L_63 = V_1;
NullCheck(L_63);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_63, _stringLiteral2969009105, ((int32_t)30));
Dictionary_2_t190145395 * L_64 = V_1;
NullCheck(L_64);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_64, _stringLiteral3078954544, ((int32_t)31));
Dictionary_2_t190145395 * L_65 = V_1;
NullCheck(L_65);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_65, _stringLiteral64711720, ((int32_t)32));
Dictionary_2_t190145395 * L_66 = V_1;
NullCheck(L_66);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_66, _stringLiteral2882303968, ((int32_t)33));
Dictionary_2_t190145395 * L_67 = V_1;
NullCheck(L_67);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_67, _stringLiteral2302954900, ((int32_t)34));
Dictionary_2_t190145395 * L_68 = V_1;
NullCheck(L_68);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_68, _stringLiteral1792749467, ((int32_t)35));
Dictionary_2_t190145395 * L_69 = V_1;
NullCheck(L_69);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_69, _stringLiteral3076014, ((int32_t)36));
Dictionary_2_t190145395 * L_70 = V_1;
NullCheck(L_70);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_70, _stringLiteral3560141, ((int32_t)37));
Dictionary_2_t190145395 * L_71 = V_1;
NullCheck(L_71);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_71, _stringLiteral2049608444, ((int32_t)38));
Dictionary_2_t190145395 * L_72 = V_1;
NullCheck(L_72);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_72, _stringLiteral77225596, ((int32_t)39));
Dictionary_2_t190145395 * L_73 = V_1;
NullCheck(L_73);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_73, _stringLiteral2741234588, ((int32_t)40));
Dictionary_2_t190145395 * L_74 = V_1;
NullCheck(L_74);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_74, _stringLiteral2556356227, ((int32_t)41));
Dictionary_2_t190145395 * L_75 = V_1;
NullCheck(L_75);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_75, _stringLiteral97874244, ((int32_t)42));
Dictionary_2_t190145395 * L_76 = V_1;
NullCheck(L_76);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_76, _stringLiteral3023329881, ((int32_t)43));
Dictionary_2_t190145395 * L_77 = V_1;
NullCheck(L_77);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_77, _stringLiteral3136949, ((int32_t)44));
Dictionary_2_t190145395 * L_78 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map2C_54(L_78);
}
IL_0359:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
Dictionary_2_t190145395 * L_79 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2C_54();
String_t* L_80 = V_0;
NullCheck(L_79);
bool L_81 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_79, L_80, (&V_2));
if (!L_81)
{
goto IL_0538;
}
}
{
int32_t L_82 = V_2;
if (L_82 == 0)
{
goto IL_042a;
}
if (L_82 == 1)
{
goto IL_0430;
}
if (L_82 == 2)
{
goto IL_0436;
}
if (L_82 == 3)
{
goto IL_043c;
}
if (L_82 == 4)
{
goto IL_0442;
}
if (L_82 == 5)
{
goto IL_0448;
}
if (L_82 == 6)
{
goto IL_044e;
}
if (L_82 == 7)
{
goto IL_0454;
}
if (L_82 == 8)
{
goto IL_045a;
}
if (L_82 == 9)
{
goto IL_0460;
}
if (L_82 == 10)
{
goto IL_0466;
}
if (L_82 == 11)
{
goto IL_046c;
}
if (L_82 == 12)
{
goto IL_0472;
}
if (L_82 == 13)
{
goto IL_0478;
}
if (L_82 == 14)
{
goto IL_047e;
}
if (L_82 == 15)
{
goto IL_0484;
}
if (L_82 == 16)
{
goto IL_048a;
}
if (L_82 == 17)
{
goto IL_0490;
}
if (L_82 == 18)
{
goto IL_0496;
}
if (L_82 == 19)
{
goto IL_049c;
}
if (L_82 == 20)
{
goto IL_04a2;
}
if (L_82 == 21)
{
goto IL_04a8;
}
if (L_82 == 22)
{
goto IL_04ae;
}
if (L_82 == 23)
{
goto IL_04b4;
}
if (L_82 == 24)
{
goto IL_04ba;
}
if (L_82 == 25)
{
goto IL_04c0;
}
if (L_82 == 26)
{
goto IL_04c6;
}
if (L_82 == 27)
{
goto IL_04cc;
}
if (L_82 == 28)
{
goto IL_04d2;
}
if (L_82 == 29)
{
goto IL_04d8;
}
if (L_82 == 30)
{
goto IL_04de;
}
if (L_82 == 31)
{
goto IL_04e4;
}
if (L_82 == 32)
{
goto IL_04ea;
}
if (L_82 == 33)
{
goto IL_04f0;
}
if (L_82 == 34)
{
goto IL_04f6;
}
if (L_82 == 35)
{
goto IL_04fc;
}
if (L_82 == 36)
{
goto IL_0502;
}
if (L_82 == 37)
{
goto IL_0508;
}
if (L_82 == 38)
{
goto IL_050e;
}
if (L_82 == 39)
{
goto IL_0514;
}
if (L_82 == 40)
{
goto IL_051a;
}
if (L_82 == 41)
{
goto IL_0520;
}
if (L_82 == 42)
{
goto IL_0526;
}
if (L_82 == 43)
{
goto IL_052c;
}
if (L_82 == 44)
{
goto IL_0532;
}
}
{
goto IL_0538;
}
IL_042a:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdAnySimpleType_t8663200 * L_83 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeAnySimpleType_3();
return L_83;
}
IL_0430:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdString_t1590891979 * L_84 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeString_4();
return L_84;
}
IL_0436:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNormalizedString_t2753230946 * L_85 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNormalizedString_5();
return L_85;
}
IL_043c:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdToken_t2806564481 * L_86 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeToken_6();
return L_86;
}
IL_0442:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdLanguage_t4177521362 * L_87 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeLanguage_7();
return L_87;
}
IL_0448:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNMToken_t1296931426 * L_88 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNMToken_8();
return L_88;
}
IL_044e:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNMTokens_t2060706707 * L_89 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNMTokens_9();
return L_89;
}
IL_0454:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdName_t2013535877 * L_90 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeName_10();
return L_90;
}
IL_045a:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNCName_t1401413498 * L_91 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNCName_11();
return L_91;
}
IL_0460:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdID_t2215259957 * L_92 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeID_12();
return L_92;
}
IL_0466:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdIDRef_t2795100704 * L_93 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeIDRef_13();
return L_93;
}
IL_046c:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdIDRefs_t1259314069 * L_94 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeIDRefs_14();
return L_94;
}
IL_0472:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdEntity_t1184602525 * L_95 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeEntity_15();
return L_95;
}
IL_0478:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdEntities_t3688996667 * L_96 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeEntities_16();
return L_96;
}
IL_047e:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNotation_t3074536316 * L_97 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNotation_17();
return L_97;
}
IL_0484:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdDecimal_t1712604697 * L_98 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDecimal_18();
return L_98;
}
IL_048a:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdInteger_t2128393222 * L_99 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeInteger_19();
return L_99;
}
IL_0490:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdLong_t2013489782 * L_100 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeLong_20();
return L_100;
}
IL_0496:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdInt_t464121399 * L_101 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeInt_21();
return L_101;
}
IL_049c:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdShort_t2805436676 * L_102 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeShort_22();
return L_102;
}
IL_04a2:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdByte_t2013201666 * L_103 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeByte_23();
return L_103;
}
IL_04a8:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNonPositiveInteger_t673083058 * L_104 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNonPositiveInteger_30();
return L_104;
}
IL_04ae:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNegativeInteger_t2648572689 * L_105 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNegativeInteger_31();
return L_105;
}
IL_04b4:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdNonNegativeInteger_t906772726 * L_106 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeNonNegativeInteger_24();
return L_106;
}
IL_04ba:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdUnsignedLong_t1376676363 * L_107 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeUnsignedLong_26();
return L_107;
}
IL_04c0:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdUnsignedInt_t4045809666 * L_108 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeUnsignedInt_27();
return L_108;
}
IL_04c6:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdUnsignedShort_t244089871 * L_109 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeUnsignedShort_28();
return L_109;
}
IL_04cc:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdUnsignedByte_t1376388247 * L_110 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeUnsignedByte_29();
return L_110;
}
IL_04d2:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdPositiveInteger_t2414883021 * L_111 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypePositiveInteger_25();
return L_111;
}
IL_04d8:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdFloat_t2793549540 * L_112 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeFloat_32();
return L_112;
}
IL_04de:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdDouble_t1156919691 * L_113 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDouble_33();
return L_113;
}
IL_04e4:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdBase64Binary_t3314116906 * L_114 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeBase64Binary_34();
return L_114;
}
IL_04ea:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdBoolean_t235052784 * L_115 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeBoolean_35();
return L_115;
}
IL_04f0:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdAnyURI_t1070214554 * L_116 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeAnyURI_36();
return L_116;
}
IL_04f6:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdDuration_t3799098638 * L_117 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDuration_37();
return L_117;
}
IL_04fc:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdDateTime_t3288893205 * L_118 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDateTime_38();
return L_118;
}
IL_0502:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdDate_t2013238184 * L_119 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeDate_39();
return L_119;
}
IL_0508:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdTime_t2013722311 * L_120 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeTime_40();
return L_120;
}
IL_050e:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdHexBinary_t1695962116 * L_121 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeHexBinary_41();
return L_121;
}
IL_0514:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdQName_t2802801444 * L_122 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeQName_42();
return L_122;
}
IL_051a:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdGYearMonth_t878671062 * L_123 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeGYearMonth_43();
return L_123;
}
IL_0520:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdGMonthDay_t2202709899 * L_124 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeGMonthDay_44();
return L_124;
}
IL_0526:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdGYear_t2793897420 * L_125 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeGYear_45();
return L_125;
}
IL_052c:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdGMonth_t1211240467 * L_126 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeGMonth_46();
return L_126;
}
IL_0532:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XsdGDay_t2013299119 * L_127 = ((XmlSchemaDatatype_t2590121_StaticFields*)XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var->static_fields)->get_datatypeGDay_47();
return L_127;
}
IL_0538:
{
return (XmlSchemaDatatype_t2590121 *)NULL;
}
}
// System.Void System.Xml.Schema.XmlSchemaFacet::.ctor()
extern "C" void XmlSchemaFacet__ctor_m2302296399 (XmlSchemaFacet_t4078749516 * __this, const MethodInfo* method)
{
{
XmlSchemaAnnotated__ctor_m2995102222(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaFacet::.cctor()
extern TypeInfo* XmlSchemaFacet_t4078749516_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaFacet__cctor_m2169615422_MetadataUsageId;
extern "C" void XmlSchemaFacet__cctor_m2169615422 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaFacet__cctor_m2169615422_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
((XmlSchemaFacet_t4078749516_StaticFields*)XmlSchemaFacet_t4078749516_il2cpp_TypeInfo_var->static_fields)->set_AllFacets_3(((int32_t)4095));
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaFacet::set_Value(System.String)
extern "C" void XmlSchemaFacet_set_Value_m226297313 (XmlSchemaFacet_t4078749516 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set_val_4(L_0);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaInfo::.ctor(System.Xml.Schema.IXmlSchemaInfo)
extern TypeInfo* IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaInfo__ctor_m167721790_MetadataUsageId;
extern "C" void XmlSchemaInfo__ctor_m167721790 (XmlSchemaInfo_t3432471667 * __this, Il2CppObject * ___info, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaInfo__ctor_m167721790_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Il2CppObject * L_0 = ___info;
NullCheck(L_0);
bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsDefault() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_0);
__this->set_isDefault_0(L_1);
Il2CppObject * L_2 = ___info;
NullCheck(L_2);
bool L_3 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsNil() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_2);
__this->set_isNil_1(L_3);
Il2CppObject * L_4 = ___info;
NullCheck(L_4);
XmlSchemaSimpleType_t1500525009 * L_5 = InterfaceFuncInvoker0< XmlSchemaSimpleType_t1500525009 * >::Invoke(2 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_4);
__this->set_memberType_2(L_5);
Il2CppObject * L_6 = ___info;
NullCheck(L_6);
XmlSchemaAttribute_t1191708721 * L_7 = InterfaceFuncInvoker0< XmlSchemaAttribute_t1191708721 * >::Invoke(3 /* System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.IXmlSchemaInfo::get_SchemaAttribute() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_6);
__this->set_attr_3(L_7);
Il2CppObject * L_8 = ___info;
NullCheck(L_8);
XmlSchemaElement_t471922321 * L_9 = InterfaceFuncInvoker0< XmlSchemaElement_t471922321 * >::Invoke(4 /* System.Xml.Schema.XmlSchemaElement System.Xml.Schema.IXmlSchemaInfo::get_SchemaElement() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_8);
__this->set_elem_4(L_9);
Il2CppObject * L_10 = ___info;
NullCheck(L_10);
XmlSchemaType_t3432810239 * L_11 = InterfaceFuncInvoker0< XmlSchemaType_t3432810239 * >::Invoke(5 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_10);
__this->set_type_5(L_11);
Il2CppObject * L_12 = ___info;
NullCheck(L_12);
int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_t886430410_il2cpp_TypeInfo_var, L_12);
__this->set_validity_6(L_13);
return;
}
}
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_IsDefault()
extern "C" bool XmlSchemaInfo_get_IsDefault_m766054214 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isDefault_0();
return L_0;
}
}
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_IsNil()
extern "C" bool XmlSchemaInfo_get_IsNil_m3284398358 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isNil_1();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaInfo::get_MemberType()
extern "C" XmlSchemaSimpleType_t1500525009 * XmlSchemaInfo_get_MemberType_m642917129 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
XmlSchemaSimpleType_t1500525009 * L_0 = __this->get_memberType_2();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaInfo::get_SchemaAttribute()
extern "C" XmlSchemaAttribute_t1191708721 * XmlSchemaInfo_get_SchemaAttribute_m3550303800 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
XmlSchemaAttribute_t1191708721 * L_0 = __this->get_attr_3();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaInfo::get_SchemaElement()
extern "C" XmlSchemaElement_t471922321 * XmlSchemaInfo_get_SchemaElement_m4072892664 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
XmlSchemaElement_t471922321 * L_0 = __this->get_elem_4();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaInfo::get_SchemaType()
extern "C" XmlSchemaType_t3432810239 * XmlSchemaInfo_get_SchemaType_m3793507454 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
XmlSchemaType_t3432810239 * L_0 = __this->get_type_5();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.XmlSchemaInfo::get_Validity()
extern "C" int32_t XmlSchemaInfo_get_Validity_m298160621 (XmlSchemaInfo_t3432471667 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_validity_6();
return L_0;
}
}
// System.Void System.Xml.Schema.XmlSchemaObject::.ctor()
extern TypeInfo* XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var;
extern TypeInfo* Guid_t2778838590_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaObject__ctor_m1909653473_MetadataUsageId;
extern "C" void XmlSchemaObject__ctor_m1909653473 (XmlSchemaObject_t2900481284 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaObject__ctor_m1909653473_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlSerializerNamespaces_t2229116383 * L_0 = (XmlSerializerNamespaces_t2229116383 *)il2cpp_codegen_object_new(XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var);
XmlSerializerNamespaces__ctor_m2004798200(L_0, /*hidden argument*/NULL);
__this->set_namespaces_0(L_0);
__this->set_unhandledAttributeList_1((ArrayList_t2121638921 *)NULL);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t2778838590_il2cpp_TypeInfo_var);
Guid_t2778838590 L_1 = ((Guid_t2778838590_StaticFields*)Guid_t2778838590_il2cpp_TypeInfo_var->static_fields)->get_Empty_11();
__this->set_CompilationId_2(L_1);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaPatternFacet::.ctor()
extern TypeInfo* XmlSchemaFacet_t4078749516_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaPatternFacet__ctor_m2919870041_MetadataUsageId;
extern "C" void XmlSchemaPatternFacet__ctor_m2919870041 (XmlSchemaPatternFacet_t2687480780 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaPatternFacet__ctor_m2919870041_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaFacet_t4078749516_il2cpp_TypeInfo_var);
XmlSchemaFacet__ctor_m2302296399(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSet::.ctor()
extern TypeInfo* NameTable_t2805661099_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaSet__ctor_m1520080836_MetadataUsageId;
extern "C" void XmlSchemaSet__ctor_m1520080836 (XmlSchemaSet_t3827173367 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSet__ctor_m1520080836_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NameTable_t2805661099 * L_0 = (NameTable_t2805661099 *)il2cpp_codegen_object_new(NameTable_t2805661099_il2cpp_TypeInfo_var);
NameTable__ctor_m929780536(L_0, /*hidden argument*/NULL);
XmlSchemaSet__ctor_m2873214540(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSet::.ctor(System.Xml.XmlNameTable)
extern TypeInfo* XmlUrlResolver_t215921638_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaCompilationSettings_t539371163_il2cpp_TypeInfo_var;
extern TypeInfo* ArgumentNullException_t3214793280_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* Guid_t2778838590_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1223143427;
extern const uint32_t XmlSchemaSet__ctor_m2873214540_MetadataUsageId;
extern "C" void XmlSchemaSet__ctor_m2873214540 (XmlSchemaSet_t3827173367 * __this, XmlNameTable_t3232213908 * ___nameTable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSet__ctor_m2873214540_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlUrlResolver_t215921638 * L_0 = (XmlUrlResolver_t215921638 *)il2cpp_codegen_object_new(XmlUrlResolver_t215921638_il2cpp_TypeInfo_var);
XmlUrlResolver__ctor_m2727795693(L_0, /*hidden argument*/NULL);
__this->set_xmlResolver_1(L_0);
XmlSchemaCompilationSettings_t539371163 * L_1 = (XmlSchemaCompilationSettings_t539371163 *)il2cpp_codegen_object_new(XmlSchemaCompilationSettings_t539371163_il2cpp_TypeInfo_var);
XmlSchemaCompilationSettings__ctor_m1529068448(L_1, /*hidden argument*/NULL);
__this->set_settings_3(L_1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlNameTable_t3232213908 * L_2 = ___nameTable;
if (L_2)
{
goto IL_002d;
}
}
{
ArgumentNullException_t3214793280 * L_3 = (ArgumentNullException_t3214793280 *)il2cpp_codegen_object_new(ArgumentNullException_t3214793280_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m135444188(L_3, _stringLiteral1223143427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002d:
{
XmlNameTable_t3232213908 * L_4 = ___nameTable;
__this->set_nameTable_0(L_4);
ArrayList_t2121638921 * L_5 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_5, /*hidden argument*/NULL);
__this->set_schemas_2(L_5);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t2778838590_il2cpp_TypeInfo_var);
Guid_t2778838590 L_6 = Guid_NewGuid_m3560729310(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_CompilationId_4(L_6);
return;
}
}
// System.Int32 System.Xml.Schema.XmlSchemaSet::get_Count()
extern "C" int32_t XmlSchemaSet_get_Count_m3097640102 (XmlSchemaSet_t3827173367 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get_schemas_2();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
// System.Void System.Xml.Schema.XmlSchemaSet::CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)
extern "C" void XmlSchemaSet_CopyTo_m2581298744 (XmlSchemaSet_t3827173367 * __this, XmlSchemaU5BU5D_t3223231528* ___array, int32_t ___index, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get_schemas_2();
XmlSchemaU5BU5D_t3223231528* L_1 = ___array;
int32_t L_2 = ___index;
NullCheck(L_0);
VirtActionInvoker2< Il2CppArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, (Il2CppArray *)(Il2CppArray *)L_1, L_2);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleType::.ctor()
extern "C" void XmlSchemaSimpleType__ctor_m562693940 (XmlSchemaSimpleType_t1500525009 * __this, const MethodInfo* method)
{
{
__this->set_islocal_11((bool)1);
XmlSchemaType__ctor_m67578246(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleType::.cctor()
extern TypeInfo* XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaSimpleTypeList_t3214959759_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2882303968;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral798026520;
extern Il2CppCodeGenString* _stringLiteral3402981393;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral2741234588;
extern Il2CppCodeGenString* _stringLiteral97874244;
extern Il2CppCodeGenString* _stringLiteral2556356227;
extern Il2CppCodeGenString* _stringLiteral3136949;
extern Il2CppCodeGenString* _stringLiteral3023329881;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral77225596;
extern Il2CppCodeGenString* _stringLiteral2361019394;
extern Il2CppCodeGenString* _stringLiteral3571808744;
extern Il2CppCodeGenString* _stringLiteral110541305;
extern Il2CppCodeGenString* _stringLiteral2681377624;
extern Il2CppCodeGenString* _stringLiteral2790258554;
extern Il2CppCodeGenString* _stringLiteral2420395;
extern Il2CppCodeGenString* _stringLiteral2297370080;
extern Il2CppCodeGenString* _stringLiteral2331;
extern Il2CppCodeGenString* _stringLiteral69523832;
extern Il2CppCodeGenString* _stringLiteral2050021347;
extern Il2CppCodeGenString* _stringLiteral1958052158;
extern Il2CppCodeGenString* _stringLiteral2189983352;
extern Il2CppCodeGenString* _stringLiteral1860163401;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral2423673020;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern Il2CppCodeGenString* _stringLiteral1626473733;
extern Il2CppCodeGenString* _stringLiteral2368514833;
extern Il2CppCodeGenString* _stringLiteral935766780;
extern Il2CppCodeGenString* _stringLiteral304624957;
extern Il2CppCodeGenString* _stringLiteral1201997559;
extern const uint32_t XmlSchemaSimpleType__cctor_m4076514041_MetadataUsageId;
extern "C" void XmlSchemaSimpleType__cctor_m4076514041 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSimpleType__cctor_m4076514041_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSchemaSimpleType_t1500525009 * V_0 = NULL;
XmlSchemaSimpleTypeList_t3214959759 * V_1 = NULL;
XmlSchemaSimpleTypeList_t3214959759 * V_2 = NULL;
{
XmlSchemaSimpleType_t1500525009 * L_0 = (XmlSchemaSimpleType_t1500525009 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType__ctor_m562693940(L_0, /*hidden argument*/NULL);
V_0 = L_0;
XmlSchemaSimpleTypeList_t3214959759 * L_1 = (XmlSchemaSimpleTypeList_t3214959759 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t3214959759_il2cpp_TypeInfo_var);
XmlSchemaSimpleTypeList__ctor_m2115999670(L_1, /*hidden argument*/NULL);
V_1 = L_1;
XmlSchemaSimpleTypeList_t3214959759 * L_2 = V_1;
XmlQualifiedName_t176365656 * L_3 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_3, _stringLiteral2882303968, _stringLiteral1440052060, /*hidden argument*/NULL);
NullCheck(L_2);
XmlSchemaSimpleTypeList_set_ItemTypeName_m2340184841(L_2, L_3, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_4 = V_0;
XmlSchemaSimpleTypeList_t3214959759 * L_5 = V_1;
NullCheck(L_4);
XmlSchemaSimpleType_set_Content_m3246044994(L_4, L_5, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_6 = V_0;
NullCheck(L_6);
((XmlSchemaType_t3432810239 *)L_6)->set_BaseXmlSchemaTypeInternal_4((XmlSchemaType_t3432810239 *)NULL);
XmlSchemaSimpleType_t1500525009 * L_7 = V_0;
NullCheck(L_7);
L_7->set_variety_12(8);
XmlSchemaSimpleType_t1500525009 * L_8 = V_0;
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_schemaLocationType_9(L_8);
XmlSchemaSimpleType_t1500525009 * L_9 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral798026520, (String_t*)NULL, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsAnySimpleType_13(L_9);
XmlSchemaSimpleType_t1500525009 * L_10 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3402981393, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsString_14(L_10);
XmlSchemaSimpleType_t1500525009 * L_11 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral64711720, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsBoolean_15(L_11);
XmlSchemaSimpleType_t1500525009 * L_12 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1542263633, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsDecimal_16(L_12);
XmlSchemaSimpleType_t1500525009 * L_13 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral97526364, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsFloat_17(L_13);
XmlSchemaSimpleType_t1500525009 * L_14 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2969009105, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsDouble_18(L_14);
XmlSchemaSimpleType_t1500525009 * L_15 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2302954900, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsDuration_19(L_15);
XmlSchemaSimpleType_t1500525009 * L_16 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1792749467, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsDateTime_20(L_16);
XmlSchemaSimpleType_t1500525009 * L_17 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3560141, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsTime_21(L_17);
XmlSchemaSimpleType_t1500525009 * L_18 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3076014, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsDate_22(L_18);
XmlSchemaSimpleType_t1500525009 * L_19 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2741234588, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsGYearMonth_23(L_19);
XmlSchemaSimpleType_t1500525009 * L_20 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral97874244, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsGYear_24(L_20);
XmlSchemaSimpleType_t1500525009 * L_21 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2556356227, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsGMonthDay_25(L_21);
XmlSchemaSimpleType_t1500525009 * L_22 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3136949, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsGDay_26(L_22);
XmlSchemaSimpleType_t1500525009 * L_23 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3023329881, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsGMonth_27(L_23);
XmlSchemaSimpleType_t1500525009 * L_24 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2049608444, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsHexBinary_28(L_24);
XmlSchemaSimpleType_t1500525009 * L_25 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3078954544, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsBase64Binary_29(L_25);
XmlSchemaSimpleType_t1500525009 * L_26 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2882303968, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsAnyUri_30(L_26);
XmlSchemaSimpleType_t1500525009 * L_27 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral77225596, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsQName_31(L_27);
XmlSchemaSimpleType_t1500525009 * L_28 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2361019394, _stringLiteral798026520, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNotation_32(L_28);
XmlSchemaSimpleType_t1500525009 * L_29 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3571808744, _stringLiteral3402981393, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNormalizedString_33(L_29);
XmlSchemaSimpleType_t1500525009 * L_30 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral110541305, _stringLiteral3571808744, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsToken_34(L_30);
XmlSchemaSimpleType_t1500525009 * L_31 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2681377624, _stringLiteral110541305, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsLanguage_35(L_31);
XmlSchemaSimpleType_t1500525009 * L_32 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2790258554, _stringLiteral110541305, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNMToken_36(L_32);
XmlSchemaSimpleType_t1500525009 * L_33 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2420395, _stringLiteral110541305, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsName_38(L_33);
XmlSchemaSimpleType_t1500525009 * L_34 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2297370080, _stringLiteral2420395, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNCName_39(L_34);
XmlSchemaSimpleType_t1500525009 * L_35 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2331, _stringLiteral2297370080, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsID_40(L_35);
XmlSchemaSimpleType_t1500525009 * L_36 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral69523832, _stringLiteral2297370080, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsIDRef_41(L_36);
XmlSchemaSimpleType_t1500525009 * L_37 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2050021347, _stringLiteral2297370080, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsEntity_43(L_37);
XmlSchemaSimpleType_t1500525009 * L_38 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1958052158, _stringLiteral1542263633, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsInteger_45(L_38);
XmlSchemaSimpleType_t1500525009 * L_39 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2189983352, _stringLiteral1958052158, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNonPositiveInteger_46(L_39);
XmlSchemaSimpleType_t1500525009 * L_40 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1860163401, _stringLiteral2189983352, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNegativeInteger_47(L_40);
XmlSchemaSimpleType_t1500525009 * L_41 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3327612, _stringLiteral1958052158, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsLong_48(L_41);
XmlSchemaSimpleType_t1500525009 * L_42 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral104431, _stringLiteral3327612, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsInt_49(L_42);
XmlSchemaSimpleType_t1500525009 * L_43 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral109413500, _stringLiteral104431, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsShort_50(L_43);
XmlSchemaSimpleType_t1500525009 * L_44 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral3039496, _stringLiteral109413500, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsByte_51(L_44);
XmlSchemaSimpleType_t1500525009 * L_45 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral2423673020, _stringLiteral1958052158, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNonNegativeInteger_52(L_45);
XmlSchemaSimpleType_t1500525009 * L_46 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1141514001, _stringLiteral2423673020, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsUnsignedLong_53(L_46);
XmlSchemaSimpleType_t1500525009 * L_47 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1145198778, _stringLiteral1141514001, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsUnsignedInt_54(L_47);
XmlSchemaSimpleType_t1500525009 * L_48 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1033453191, _stringLiteral1145198778, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsUnsignedShort_55(L_48);
XmlSchemaSimpleType_t1500525009 * L_49 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1141225885, _stringLiteral1033453191, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsUnsignedByte_56(L_49);
XmlSchemaSimpleType_t1500525009 * L_50 = XmlSchemaSimpleType_BuildSchemaType_m742275997(NULL /*static, unused*/, _stringLiteral1626473733, _stringLiteral2423673020, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsPositiveInteger_57(L_50);
XmlSchemaSimpleType_t1500525009 * L_51 = XmlSchemaSimpleType_BuildSchemaType_m2882584893(NULL /*static, unused*/, _stringLiteral2368514833, _stringLiteral798026520, (bool)1, (bool)0, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XdtAnyAtomicType_59(L_51);
XmlSchemaSimpleType_t1500525009 * L_52 = XmlSchemaSimpleType_BuildSchemaType_m2882584893(NULL /*static, unused*/, _stringLiteral935766780, _stringLiteral2368514833, (bool)1, (bool)1, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XdtUntypedAtomic_58(L_52);
XmlSchemaSimpleType_t1500525009 * L_53 = XmlSchemaSimpleType_BuildSchemaType_m2882584893(NULL /*static, unused*/, _stringLiteral304624957, _stringLiteral2302954900, (bool)1, (bool)0, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XdtDayTimeDuration_61(L_53);
XmlSchemaSimpleType_t1500525009 * L_54 = XmlSchemaSimpleType_BuildSchemaType_m2882584893(NULL /*static, unused*/, _stringLiteral1201997559, _stringLiteral2302954900, (bool)1, (bool)0, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XdtYearMonthDuration_60(L_54);
XmlSchemaSimpleType_t1500525009 * L_55 = (XmlSchemaSimpleType_t1500525009 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType__ctor_m562693940(L_55, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsIDRefs_42(L_55);
XmlSchemaSimpleTypeList_t3214959759 * L_56 = (XmlSchemaSimpleTypeList_t3214959759 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t3214959759_il2cpp_TypeInfo_var);
XmlSchemaSimpleTypeList__ctor_m2115999670(L_56, /*hidden argument*/NULL);
V_2 = L_56;
XmlSchemaSimpleTypeList_t3214959759 * L_57 = V_2;
XmlSchemaSimpleType_t1500525009 * L_58 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsIDRef_41();
NullCheck(L_57);
XmlSchemaSimpleTypeList_set_ItemType_m2953079053(L_57, L_58, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_59 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsIDRefs_42();
XmlSchemaSimpleTypeList_t3214959759 * L_60 = V_2;
NullCheck(L_59);
XmlSchemaSimpleType_set_Content_m3246044994(L_59, L_60, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_61 = (XmlSchemaSimpleType_t1500525009 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType__ctor_m562693940(L_61, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsEntities_44(L_61);
XmlSchemaSimpleTypeList_t3214959759 * L_62 = (XmlSchemaSimpleTypeList_t3214959759 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t3214959759_il2cpp_TypeInfo_var);
XmlSchemaSimpleTypeList__ctor_m2115999670(L_62, /*hidden argument*/NULL);
V_2 = L_62;
XmlSchemaSimpleTypeList_t3214959759 * L_63 = V_2;
XmlSchemaSimpleType_t1500525009 * L_64 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsEntity_43();
NullCheck(L_63);
XmlSchemaSimpleTypeList_set_ItemType_m2953079053(L_63, L_64, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_65 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsEntities_44();
XmlSchemaSimpleTypeList_t3214959759 * L_66 = V_2;
NullCheck(L_65);
XmlSchemaSimpleType_set_Content_m3246044994(L_65, L_66, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_67 = (XmlSchemaSimpleType_t1500525009 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType__ctor_m562693940(L_67, /*hidden argument*/NULL);
((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->set_XsNMTokens_37(L_67);
XmlSchemaSimpleTypeList_t3214959759 * L_68 = (XmlSchemaSimpleTypeList_t3214959759 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t3214959759_il2cpp_TypeInfo_var);
XmlSchemaSimpleTypeList__ctor_m2115999670(L_68, /*hidden argument*/NULL);
V_2 = L_68;
XmlSchemaSimpleTypeList_t3214959759 * L_69 = V_2;
XmlSchemaSimpleType_t1500525009 * L_70 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNMToken_36();
NullCheck(L_69);
XmlSchemaSimpleTypeList_set_ItemType_m2953079053(L_69, L_70, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_71 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNMTokens_37();
XmlSchemaSimpleTypeList_t3214959759 * L_72 = V_2;
NullCheck(L_71);
XmlSchemaSimpleType_set_Content_m3246044994(L_71, L_72, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String)
extern TypeInfo* XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaSimpleType_BuildSchemaType_m742275997_MetadataUsageId;
extern "C" XmlSchemaSimpleType_t1500525009 * XmlSchemaSimpleType_BuildSchemaType_m742275997 (Il2CppObject * __this /* static, unused */, String_t* ___name, String_t* ___baseName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSimpleType_BuildSchemaType_m742275997_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___name;
String_t* L_1 = ___baseName;
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_2 = XmlSchemaSimpleType_BuildSchemaType_m2882584893(NULL /*static, unused*/, L_0, L_1, (bool)0, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String,System.Boolean,System.Boolean)
extern TypeInfo* XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1977395786;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern const uint32_t XmlSchemaSimpleType_BuildSchemaType_m2882584893_MetadataUsageId;
extern "C" XmlSchemaSimpleType_t1500525009 * XmlSchemaSimpleType_BuildSchemaType_m2882584893 (Il2CppObject * __this /* static, unused */, String_t* ___name, String_t* ___baseName, bool ___xdt, bool ___baseXdt, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSimpleType_BuildSchemaType_m2882584893_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
XmlSchemaSimpleType_t1500525009 * V_2 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B6_0 = NULL;
{
bool L_0 = ___xdt;
if (!L_0)
{
goto IL_0010;
}
}
{
G_B3_0 = _stringLiteral1977395786;
goto IL_0015;
}
IL_0010:
{
G_B3_0 = _stringLiteral1440052060;
}
IL_0015:
{
V_0 = G_B3_0;
bool L_1 = ___baseXdt;
if (!L_1)
{
goto IL_0026;
}
}
{
G_B6_0 = _stringLiteral1977395786;
goto IL_002b;
}
IL_0026:
{
G_B6_0 = _stringLiteral1440052060;
}
IL_002b:
{
V_1 = G_B6_0;
XmlSchemaSimpleType_t1500525009 * L_2 = (XmlSchemaSimpleType_t1500525009 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType__ctor_m562693940(L_2, /*hidden argument*/NULL);
V_2 = L_2;
XmlSchemaSimpleType_t1500525009 * L_3 = V_2;
String_t* L_4 = ___name;
String_t* L_5 = V_0;
XmlQualifiedName_t176365656 * L_6 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_6, L_4, L_5, /*hidden argument*/NULL);
NullCheck(L_3);
((XmlSchemaType_t3432810239 *)L_3)->set_QNameInternal_6(L_6);
String_t* L_7 = ___baseName;
if (!L_7)
{
goto IL_0057;
}
}
{
XmlSchemaSimpleType_t1500525009 * L_8 = V_2;
String_t* L_9 = ___baseName;
String_t* L_10 = V_1;
XmlQualifiedName_t176365656 * L_11 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_11, L_9, L_10, /*hidden argument*/NULL);
XmlSchemaSimpleType_t1500525009 * L_12 = XmlSchemaType_GetBuiltInSimpleType_m799232347(NULL /*static, unused*/, L_11, /*hidden argument*/NULL);
NullCheck(L_8);
((XmlSchemaType_t3432810239 *)L_8)->set_BaseXmlSchemaTypeInternal_4(L_12);
}
IL_0057:
{
XmlSchemaSimpleType_t1500525009 * L_13 = V_2;
XmlSchemaSimpleType_t1500525009 * L_14 = V_2;
NullCheck(L_14);
XmlQualifiedName_t176365656 * L_15 = XmlSchemaType_get_QualifiedName_m3059613359(L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t2590121_il2cpp_TypeInfo_var);
XmlSchemaDatatype_t2590121 * L_16 = XmlSchemaDatatype_FromName_m2003221181(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
NullCheck(L_13);
((XmlSchemaType_t3432810239 *)L_13)->set_DatatypeInternal_5(L_16);
XmlSchemaSimpleType_t1500525009 * L_17 = V_2;
return L_17;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleType::set_Content(System.Xml.Schema.XmlSchemaSimpleTypeContent)
extern "C" void XmlSchemaSimpleType_set_Content_m3246044994 (XmlSchemaSimpleType_t1500525009 * __this, XmlSchemaSimpleTypeContent_t1763168354 * ___value, const MethodInfo* method)
{
{
XmlSchemaSimpleTypeContent_t1763168354 * L_0 = ___value;
__this->set_content_10(L_0);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleTypeContent::.ctor()
extern "C" void XmlSchemaSimpleTypeContent__ctor_m1808750713 (XmlSchemaSimpleTypeContent_t1763168354 * __this, const MethodInfo* method)
{
{
XmlSchemaAnnotated__ctor_m2995102222(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::.ctor()
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaSimpleTypeList__ctor_m2115999670_MetadataUsageId;
extern "C" void XmlSchemaSimpleTypeList__ctor_m2115999670 (XmlSchemaSimpleTypeList_t3214959759 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeList__ctor_m2115999670_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlSchemaSimpleTypeContent__ctor_m1808750713(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName_t176365656 * L_0 = ((XmlQualifiedName_t176365656_StaticFields*)XmlQualifiedName_t176365656_il2cpp_TypeInfo_var->static_fields)->get_Empty_0();
XmlSchemaSimpleTypeList_set_ItemTypeName_m2340184841(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemTypeName(System.Xml.XmlQualifiedName)
extern "C" void XmlSchemaSimpleTypeList_set_ItemTypeName_m2340184841 (XmlSchemaSimpleTypeList_t3214959759 * __this, XmlQualifiedName_t176365656 * ___value, const MethodInfo* method)
{
{
XmlQualifiedName_t176365656 * L_0 = ___value;
__this->set_itemTypeName_4(L_0);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemType(System.Xml.Schema.XmlSchemaSimpleType)
extern "C" void XmlSchemaSimpleTypeList_set_ItemType_m2953079053 (XmlSchemaSimpleTypeList_t3214959759 * __this, XmlSchemaSimpleType_t1500525009 * ___value, const MethodInfo* method)
{
{
XmlSchemaSimpleType_t1500525009 * L_0 = ___value;
__this->set_itemType_3(L_0);
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::.cctor()
extern TypeInfo* XmlSchemaSimpleTypeRestriction_t409858485_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaSimpleTypeRestriction__cctor_m1290560871_MetadataUsageId;
extern "C" void XmlSchemaSimpleTypeRestriction__cctor_m1290560871 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction__cctor_m1290560871_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
((XmlSchemaSimpleTypeRestriction_t409858485_StaticFields*)XmlSchemaSimpleTypeRestriction_t409858485_il2cpp_TypeInfo_var->static_fields)->set_lengthStyle_3(7);
((XmlSchemaSimpleTypeRestriction_t409858485_StaticFields*)XmlSchemaSimpleTypeRestriction_t409858485_il2cpp_TypeInfo_var->static_fields)->set_listFacets_4(((int32_t)63));
return;
}
}
// System.Void System.Xml.Schema.XmlSchemaType::.ctor()
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSchemaType__ctor_m67578246_MetadataUsageId;
extern "C" void XmlSchemaType__ctor_m67578246 (XmlSchemaType_t3432810239 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaType__ctor_m67578246_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlSchemaAnnotated__ctor_m2995102222(__this, /*hidden argument*/NULL);
__this->set_final_3(((int32_t)256));
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName_t176365656 * L_0 = ((XmlQualifiedName_t176365656_StaticFields*)XmlQualifiedName_t176365656_il2cpp_TypeInfo_var->static_fields)->get_Empty_0();
__this->set_QNameInternal_6(L_0);
return;
}
}
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::get_QualifiedName()
extern "C" XmlQualifiedName_t176365656 * XmlSchemaType_get_QualifiedName_m3059613359 (XmlSchemaType_t3432810239 * __this, const MethodInfo* method)
{
{
XmlQualifiedName_t176365656 * L_0 = __this->get_QNameInternal_6();
return L_0;
}
}
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.XmlQualifiedName)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaType_t3432810239_il2cpp_TypeInfo_var;
extern TypeInfo* Dictionary_2_t190145395_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var;
extern const MethodInfo* Dictionary_2__ctor_m1958628151_MethodInfo_var;
extern Il2CppCodeGenString* _stringLiteral1977395786;
extern Il2CppCodeGenString* _stringLiteral935766780;
extern Il2CppCodeGenString* _stringLiteral2368514833;
extern Il2CppCodeGenString* _stringLiteral1201997559;
extern Il2CppCodeGenString* _stringLiteral304624957;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral798026520;
extern Il2CppCodeGenString* _stringLiteral3402981393;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral2741234588;
extern Il2CppCodeGenString* _stringLiteral97874244;
extern Il2CppCodeGenString* _stringLiteral2556356227;
extern Il2CppCodeGenString* _stringLiteral3136949;
extern Il2CppCodeGenString* _stringLiteral3023329881;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral2882303968;
extern Il2CppCodeGenString* _stringLiteral77225596;
extern Il2CppCodeGenString* _stringLiteral2361019394;
extern Il2CppCodeGenString* _stringLiteral3571808744;
extern Il2CppCodeGenString* _stringLiteral110541305;
extern Il2CppCodeGenString* _stringLiteral2681377624;
extern Il2CppCodeGenString* _stringLiteral2790258554;
extern Il2CppCodeGenString* _stringLiteral598669337;
extern Il2CppCodeGenString* _stringLiteral2420395;
extern Il2CppCodeGenString* _stringLiteral2297370080;
extern Il2CppCodeGenString* _stringLiteral2331;
extern Il2CppCodeGenString* _stringLiteral69523832;
extern Il2CppCodeGenString* _stringLiteral2155238875;
extern Il2CppCodeGenString* _stringLiteral2050021347;
extern Il2CppCodeGenString* _stringLiteral2975479745;
extern Il2CppCodeGenString* _stringLiteral1958052158;
extern Il2CppCodeGenString* _stringLiteral2189983352;
extern Il2CppCodeGenString* _stringLiteral1860163401;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral2423673020;
extern Il2CppCodeGenString* _stringLiteral1626473733;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern const uint32_t XmlSchemaType_GetBuiltInSimpleType_m799232347_MetadataUsageId;
extern "C" XmlSchemaSimpleType_t1500525009 * XmlSchemaType_GetBuiltInSimpleType_m799232347 (Il2CppObject * __this /* static, unused */, XmlQualifiedName_t176365656 * ___qualifiedName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaType_GetBuiltInSimpleType_m799232347_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
Dictionary_2_t190145395 * V_1 = NULL;
int32_t V_2 = 0;
{
XmlQualifiedName_t176365656 * L_0 = ___qualifiedName;
NullCheck(L_0);
String_t* L_1 = XmlQualifiedName_get_Namespace_m2987642414(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_2 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_1, _stringLiteral1977395786, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_00b0;
}
}
{
XmlQualifiedName_t176365656 * L_3 = ___qualifiedName;
NullCheck(L_3);
String_t* L_4 = XmlQualifiedName_get_Name_m607016698(L_3, /*hidden argument*/NULL);
V_0 = L_4;
String_t* L_5 = V_0;
if (!L_5)
{
goto IL_00ae;
}
}
{
Dictionary_2_t190145395 * L_6 = ((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2E_7();
if (L_6)
{
goto IL_0069;
}
}
{
Dictionary_2_t190145395 * L_7 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_7, 4, /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_7;
Dictionary_2_t190145395 * L_8 = V_1;
NullCheck(L_8);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_8, _stringLiteral935766780, 0);
Dictionary_2_t190145395 * L_9 = V_1;
NullCheck(L_9);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_9, _stringLiteral2368514833, 1);
Dictionary_2_t190145395 * L_10 = V_1;
NullCheck(L_10);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_10, _stringLiteral1201997559, 2);
Dictionary_2_t190145395 * L_11 = V_1;
NullCheck(L_11);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_11, _stringLiteral304624957, 3);
Dictionary_2_t190145395 * L_12 = V_1;
((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map2E_7(L_12);
}
IL_0069:
{
Dictionary_2_t190145395 * L_13 = ((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2E_7();
String_t* L_14 = V_0;
NullCheck(L_13);
bool L_15 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_13, L_14, (&V_2));
if (!L_15)
{
goto IL_00ae;
}
}
{
int32_t L_16 = V_2;
if (L_16 == 0)
{
goto IL_0096;
}
if (L_16 == 1)
{
goto IL_009c;
}
if (L_16 == 2)
{
goto IL_00a2;
}
if (L_16 == 3)
{
goto IL_00a8;
}
}
{
goto IL_00ae;
}
IL_0096:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_17 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XdtUntypedAtomic_58();
return L_17;
}
IL_009c:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_18 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XdtAnyAtomicType_59();
return L_18;
}
IL_00a2:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_19 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XdtYearMonthDuration_60();
return L_19;
}
IL_00a8:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_20 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XdtDayTimeDuration_61();
return L_20;
}
IL_00ae:
{
return (XmlSchemaSimpleType_t1500525009 *)NULL;
}
IL_00b0:
{
XmlQualifiedName_t176365656 * L_21 = ___qualifiedName;
NullCheck(L_21);
String_t* L_22 = XmlQualifiedName_get_Namespace_m2987642414(L_21, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_23 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_22, _stringLiteral1440052060, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00c7;
}
}
{
return (XmlSchemaSimpleType_t1500525009 *)NULL;
}
IL_00c7:
{
XmlQualifiedName_t176365656 * L_24 = ___qualifiedName;
NullCheck(L_24);
String_t* L_25 = XmlQualifiedName_get_Name_m607016698(L_24, /*hidden argument*/NULL);
V_0 = L_25;
String_t* L_26 = V_0;
if (!L_26)
{
goto IL_050b;
}
}
{
Dictionary_2_t190145395 * L_27 = ((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2F_8();
if (L_27)
{
goto IL_032c;
}
}
{
Dictionary_2_t190145395 * L_28 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_28, ((int32_t)45), /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_28;
Dictionary_2_t190145395 * L_29 = V_1;
NullCheck(L_29);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_29, _stringLiteral798026520, 0);
Dictionary_2_t190145395 * L_30 = V_1;
NullCheck(L_30);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_30, _stringLiteral3402981393, 1);
Dictionary_2_t190145395 * L_31 = V_1;
NullCheck(L_31);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_31, _stringLiteral64711720, 2);
Dictionary_2_t190145395 * L_32 = V_1;
NullCheck(L_32);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_32, _stringLiteral1542263633, 3);
Dictionary_2_t190145395 * L_33 = V_1;
NullCheck(L_33);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_33, _stringLiteral97526364, 4);
Dictionary_2_t190145395 * L_34 = V_1;
NullCheck(L_34);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_34, _stringLiteral2969009105, 5);
Dictionary_2_t190145395 * L_35 = V_1;
NullCheck(L_35);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_35, _stringLiteral2302954900, 6);
Dictionary_2_t190145395 * L_36 = V_1;
NullCheck(L_36);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_36, _stringLiteral1792749467, 7);
Dictionary_2_t190145395 * L_37 = V_1;
NullCheck(L_37);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_37, _stringLiteral3560141, 8);
Dictionary_2_t190145395 * L_38 = V_1;
NullCheck(L_38);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_38, _stringLiteral3076014, ((int32_t)9));
Dictionary_2_t190145395 * L_39 = V_1;
NullCheck(L_39);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_39, _stringLiteral2741234588, ((int32_t)10));
Dictionary_2_t190145395 * L_40 = V_1;
NullCheck(L_40);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_40, _stringLiteral97874244, ((int32_t)11));
Dictionary_2_t190145395 * L_41 = V_1;
NullCheck(L_41);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_41, _stringLiteral2556356227, ((int32_t)12));
Dictionary_2_t190145395 * L_42 = V_1;
NullCheck(L_42);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_42, _stringLiteral3136949, ((int32_t)13));
Dictionary_2_t190145395 * L_43 = V_1;
NullCheck(L_43);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_43, _stringLiteral3023329881, ((int32_t)14));
Dictionary_2_t190145395 * L_44 = V_1;
NullCheck(L_44);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_44, _stringLiteral2049608444, ((int32_t)15));
Dictionary_2_t190145395 * L_45 = V_1;
NullCheck(L_45);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_45, _stringLiteral3078954544, ((int32_t)16));
Dictionary_2_t190145395 * L_46 = V_1;
NullCheck(L_46);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_46, _stringLiteral2882303968, ((int32_t)17));
Dictionary_2_t190145395 * L_47 = V_1;
NullCheck(L_47);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_47, _stringLiteral77225596, ((int32_t)18));
Dictionary_2_t190145395 * L_48 = V_1;
NullCheck(L_48);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_48, _stringLiteral2361019394, ((int32_t)19));
Dictionary_2_t190145395 * L_49 = V_1;
NullCheck(L_49);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_49, _stringLiteral3571808744, ((int32_t)20));
Dictionary_2_t190145395 * L_50 = V_1;
NullCheck(L_50);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_50, _stringLiteral110541305, ((int32_t)21));
Dictionary_2_t190145395 * L_51 = V_1;
NullCheck(L_51);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_51, _stringLiteral2681377624, ((int32_t)22));
Dictionary_2_t190145395 * L_52 = V_1;
NullCheck(L_52);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_52, _stringLiteral2790258554, ((int32_t)23));
Dictionary_2_t190145395 * L_53 = V_1;
NullCheck(L_53);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_53, _stringLiteral598669337, ((int32_t)24));
Dictionary_2_t190145395 * L_54 = V_1;
NullCheck(L_54);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_54, _stringLiteral2420395, ((int32_t)25));
Dictionary_2_t190145395 * L_55 = V_1;
NullCheck(L_55);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_55, _stringLiteral2297370080, ((int32_t)26));
Dictionary_2_t190145395 * L_56 = V_1;
NullCheck(L_56);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_56, _stringLiteral2331, ((int32_t)27));
Dictionary_2_t190145395 * L_57 = V_1;
NullCheck(L_57);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_57, _stringLiteral69523832, ((int32_t)28));
Dictionary_2_t190145395 * L_58 = V_1;
NullCheck(L_58);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_58, _stringLiteral2155238875, ((int32_t)29));
Dictionary_2_t190145395 * L_59 = V_1;
NullCheck(L_59);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_59, _stringLiteral2050021347, ((int32_t)30));
Dictionary_2_t190145395 * L_60 = V_1;
NullCheck(L_60);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_60, _stringLiteral2975479745, ((int32_t)31));
Dictionary_2_t190145395 * L_61 = V_1;
NullCheck(L_61);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_61, _stringLiteral1958052158, ((int32_t)32));
Dictionary_2_t190145395 * L_62 = V_1;
NullCheck(L_62);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_62, _stringLiteral2189983352, ((int32_t)33));
Dictionary_2_t190145395 * L_63 = V_1;
NullCheck(L_63);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_63, _stringLiteral1860163401, ((int32_t)34));
Dictionary_2_t190145395 * L_64 = V_1;
NullCheck(L_64);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_64, _stringLiteral3327612, ((int32_t)35));
Dictionary_2_t190145395 * L_65 = V_1;
NullCheck(L_65);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_65, _stringLiteral104431, ((int32_t)36));
Dictionary_2_t190145395 * L_66 = V_1;
NullCheck(L_66);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_66, _stringLiteral109413500, ((int32_t)37));
Dictionary_2_t190145395 * L_67 = V_1;
NullCheck(L_67);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_67, _stringLiteral3039496, ((int32_t)38));
Dictionary_2_t190145395 * L_68 = V_1;
NullCheck(L_68);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_68, _stringLiteral2423673020, ((int32_t)39));
Dictionary_2_t190145395 * L_69 = V_1;
NullCheck(L_69);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_69, _stringLiteral1626473733, ((int32_t)40));
Dictionary_2_t190145395 * L_70 = V_1;
NullCheck(L_70);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_70, _stringLiteral1141514001, ((int32_t)41));
Dictionary_2_t190145395 * L_71 = V_1;
NullCheck(L_71);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_71, _stringLiteral1145198778, ((int32_t)42));
Dictionary_2_t190145395 * L_72 = V_1;
NullCheck(L_72);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_72, _stringLiteral1033453191, ((int32_t)43));
Dictionary_2_t190145395 * L_73 = V_1;
NullCheck(L_73);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_73, _stringLiteral1141225885, ((int32_t)44));
Dictionary_2_t190145395 * L_74 = V_1;
((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map2F_8(L_74);
}
IL_032c:
{
Dictionary_2_t190145395 * L_75 = ((XmlSchemaType_t3432810239_StaticFields*)XmlSchemaType_t3432810239_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map2F_8();
String_t* L_76 = V_0;
NullCheck(L_75);
bool L_77 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_75, L_76, (&V_2));
if (!L_77)
{
goto IL_050b;
}
}
{
int32_t L_78 = V_2;
if (L_78 == 0)
{
goto IL_03fd;
}
if (L_78 == 1)
{
goto IL_0403;
}
if (L_78 == 2)
{
goto IL_0409;
}
if (L_78 == 3)
{
goto IL_040f;
}
if (L_78 == 4)
{
goto IL_0415;
}
if (L_78 == 5)
{
goto IL_041b;
}
if (L_78 == 6)
{
goto IL_0421;
}
if (L_78 == 7)
{
goto IL_0427;
}
if (L_78 == 8)
{
goto IL_042d;
}
if (L_78 == 9)
{
goto IL_0433;
}
if (L_78 == 10)
{
goto IL_0439;
}
if (L_78 == 11)
{
goto IL_043f;
}
if (L_78 == 12)
{
goto IL_0445;
}
if (L_78 == 13)
{
goto IL_044b;
}
if (L_78 == 14)
{
goto IL_0451;
}
if (L_78 == 15)
{
goto IL_0457;
}
if (L_78 == 16)
{
goto IL_045d;
}
if (L_78 == 17)
{
goto IL_0463;
}
if (L_78 == 18)
{
goto IL_0469;
}
if (L_78 == 19)
{
goto IL_046f;
}
if (L_78 == 20)
{
goto IL_0475;
}
if (L_78 == 21)
{
goto IL_047b;
}
if (L_78 == 22)
{
goto IL_0481;
}
if (L_78 == 23)
{
goto IL_0487;
}
if (L_78 == 24)
{
goto IL_048d;
}
if (L_78 == 25)
{
goto IL_0493;
}
if (L_78 == 26)
{
goto IL_0499;
}
if (L_78 == 27)
{
goto IL_049f;
}
if (L_78 == 28)
{
goto IL_04a5;
}
if (L_78 == 29)
{
goto IL_04ab;
}
if (L_78 == 30)
{
goto IL_04b1;
}
if (L_78 == 31)
{
goto IL_04b7;
}
if (L_78 == 32)
{
goto IL_04bd;
}
if (L_78 == 33)
{
goto IL_04c3;
}
if (L_78 == 34)
{
goto IL_04c9;
}
if (L_78 == 35)
{
goto IL_04cf;
}
if (L_78 == 36)
{
goto IL_04d5;
}
if (L_78 == 37)
{
goto IL_04db;
}
if (L_78 == 38)
{
goto IL_04e1;
}
if (L_78 == 39)
{
goto IL_04e7;
}
if (L_78 == 40)
{
goto IL_04ed;
}
if (L_78 == 41)
{
goto IL_04f3;
}
if (L_78 == 42)
{
goto IL_04f9;
}
if (L_78 == 43)
{
goto IL_04ff;
}
if (L_78 == 44)
{
goto IL_0505;
}
}
{
goto IL_050b;
}
IL_03fd:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_79 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsAnySimpleType_13();
return L_79;
}
IL_0403:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_80 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsString_14();
return L_80;
}
IL_0409:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_81 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsBoolean_15();
return L_81;
}
IL_040f:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_82 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsDecimal_16();
return L_82;
}
IL_0415:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_83 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsFloat_17();
return L_83;
}
IL_041b:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_84 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsDouble_18();
return L_84;
}
IL_0421:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_85 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsDuration_19();
return L_85;
}
IL_0427:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_86 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsDateTime_20();
return L_86;
}
IL_042d:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_87 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsTime_21();
return L_87;
}
IL_0433:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_88 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsDate_22();
return L_88;
}
IL_0439:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_89 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsGYearMonth_23();
return L_89;
}
IL_043f:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_90 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsGYear_24();
return L_90;
}
IL_0445:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_91 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsGMonthDay_25();
return L_91;
}
IL_044b:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_92 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsGDay_26();
return L_92;
}
IL_0451:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_93 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsGMonth_27();
return L_93;
}
IL_0457:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_94 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsHexBinary_28();
return L_94;
}
IL_045d:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_95 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsBase64Binary_29();
return L_95;
}
IL_0463:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_96 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsAnyUri_30();
return L_96;
}
IL_0469:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_97 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsQName_31();
return L_97;
}
IL_046f:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_98 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNotation_32();
return L_98;
}
IL_0475:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_99 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNormalizedString_33();
return L_99;
}
IL_047b:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_100 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsToken_34();
return L_100;
}
IL_0481:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_101 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsLanguage_35();
return L_101;
}
IL_0487:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_102 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNMToken_36();
return L_102;
}
IL_048d:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_103 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNMTokens_37();
return L_103;
}
IL_0493:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_104 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsName_38();
return L_104;
}
IL_0499:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_105 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNCName_39();
return L_105;
}
IL_049f:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_106 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsID_40();
return L_106;
}
IL_04a5:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_107 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsIDRef_41();
return L_107;
}
IL_04ab:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_108 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsIDRefs_42();
return L_108;
}
IL_04b1:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_109 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsEntity_43();
return L_109;
}
IL_04b7:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_110 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsEntities_44();
return L_110;
}
IL_04bd:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_111 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsInteger_45();
return L_111;
}
IL_04c3:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_112 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNonPositiveInteger_46();
return L_112;
}
IL_04c9:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_113 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNegativeInteger_47();
return L_113;
}
IL_04cf:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_114 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsLong_48();
return L_114;
}
IL_04d5:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_115 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsInt_49();
return L_115;
}
IL_04db:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_116 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsShort_50();
return L_116;
}
IL_04e1:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_117 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsByte_51();
return L_117;
}
IL_04e7:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_118 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsNonNegativeInteger_52();
return L_118;
}
IL_04ed:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_119 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsPositiveInteger_57();
return L_119;
}
IL_04f3:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_120 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsUnsignedLong_53();
return L_120;
}
IL_04f9:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_121 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsUnsignedInt_54();
return L_121;
}
IL_04ff:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_122 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsUnsignedShort_55();
return L_122;
}
IL_0505:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var);
XmlSchemaSimpleType_t1500525009 * L_123 = ((XmlSchemaSimpleType_t1500525009_StaticFields*)XmlSchemaSimpleType_t1500525009_il2cpp_TypeInfo_var->static_fields)->get_XsUnsignedByte_56();
return L_123;
}
IL_050b:
{
return (XmlSchemaSimpleType_t1500525009 *)NULL;
}
}
// System.Void System.Xml.Schema.XmlSchemaUtil::.cctor()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2449953916;
extern Il2CppCodeGenString* _stringLiteral119527;
extern const uint32_t XmlSchemaUtil__cctor_m1976949167_MetadataUsageId;
extern "C" void XmlSchemaUtil__cctor_m1976949167 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSchemaUtil__cctor_m1976949167_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = Environment_GetEnvironmentVariable_m3419218304(NULL /*static, unused*/, _stringLiteral2449953916, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_1 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_0, _stringLiteral119527, /*hidden argument*/NULL);
((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->set_StrictMsCompliant_3(L_1);
((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->set_FinalAllowed_0(6);
int32_t L_2 = ((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->get_FinalAllowed_0();
((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->set_ComplexTypeBlockAllowed_2(L_2);
int32_t L_3 = ((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->get_FinalAllowed_0();
((XmlSchemaUtil_t3432835015_StaticFields*)XmlSchemaUtil_t3432835015_il2cpp_TypeInfo_var->static_fields)->set_ElementBlockAllowed_1(((int32_t)((int32_t)1|(int32_t)L_3)));
return;
}
}
// System.Void System.Xml.Serialization.ClassMap::.ctor()
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap__ctor_m3728665929_MetadataUsageId;
extern "C" void ClassMap__ctor_m3728665929 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap__ctor_m3728665929_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
__this->set__elements_0(L_0);
ArrayList_t2121638921 * L_1 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_1, /*hidden argument*/NULL);
__this->set__allMembers_6(L_1);
__this->set__canBeSimpleType_15((bool)1);
ObjectMap__ctor_m946545596(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.ClassMap::AddMember(System.Xml.Serialization.XmlTypeMapMember)
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var;
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyAttribute_t576758419_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberNamespaces_t1473492027_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4023459076;
extern Il2CppCodeGenString* _stringLiteral2375366149;
extern Il2CppCodeGenString* _stringLiteral1373508295;
extern Il2CppCodeGenString* _stringLiteral1306163001;
extern Il2CppCodeGenString* _stringLiteral1196749668;
extern Il2CppCodeGenString* _stringLiteral37360551;
extern const uint32_t ClassMap_AddMember_m1875253975_MetadataUsageId;
extern "C" void ClassMap_AddMember_m1875253975 (ClassMap_t912207490 * __this, XmlTypeMapMember_t757519331 * ___member, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_AddMember_m1875253975_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMemberAttribute_t2837866357 * V_0 = NULL;
String_t* V_1 = NULL;
XmlTypeMapMemberAnyElement_t2899433779 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_4 = NULL;
Il2CppObject * V_5 = NULL;
String_t* V_6 = NULL;
Il2CppObject * V_7 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapMember_t757519331 * L_0 = ___member;
ArrayList_t2121638921 * L_1 = __this->get__allMembers_6();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
NullCheck(L_0);
XmlTypeMapMember_set_GlobalIndex_m527115593(L_0, L_2, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_3 = __this->get__allMembers_6();
XmlTypeMapMember_t757519331 * L_4 = ___member;
NullCheck(L_3);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, L_4);
XmlTypeMapMember_t757519331 * L_5 = ___member;
NullCheck(L_5);
Il2CppObject * L_6 = XmlTypeMapMember_get_DefaultValue_m399150432(L_5, /*hidden argument*/NULL);
if (((DBNull_t491814586 *)IsInstSealed(L_6, DBNull_t491814586_il2cpp_TypeInfo_var)))
{
goto IL_005c;
}
}
{
XmlTypeMapMember_t757519331 * L_7 = ___member;
NullCheck(L_7);
Il2CppObject * L_8 = XmlTypeMapMember_get_DefaultValue_m399150432(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_005c;
}
}
{
ArrayList_t2121638921 * L_9 = __this->get__membersWithDefault_7();
if (L_9)
{
goto IL_004f;
}
}
{
ArrayList_t2121638921 * L_10 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_10, /*hidden argument*/NULL);
__this->set__membersWithDefault_7(L_10);
}
IL_004f:
{
ArrayList_t2121638921 * L_11 = __this->get__membersWithDefault_7();
XmlTypeMapMember_t757519331 * L_12 = ___member;
NullCheck(L_11);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12);
}
IL_005c:
{
XmlTypeMapMember_t757519331 * L_13 = ___member;
NullCheck(L_13);
bool L_14 = XmlTypeMapMember_get_IsReturnValue_m41810588(L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_006e;
}
}
{
XmlTypeMapMember_t757519331 * L_15 = ___member;
__this->set__returnMember_13(L_15);
}
IL_006e:
{
XmlTypeMapMember_t757519331 * L_16 = ___member;
if (!((XmlTypeMapMemberAttribute_t2837866357 *)IsInstClass(L_16, XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var)))
{
goto IL_0114;
}
}
{
XmlTypeMapMember_t757519331 * L_17 = ___member;
V_0 = ((XmlTypeMapMemberAttribute_t2837866357 *)CastclassClass(L_17, XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var));
Hashtable_t3875263730 * L_18 = __this->get__attributeMembers_2();
if (L_18)
{
goto IL_0096;
}
}
{
Hashtable_t3875263730 * L_19 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_19, /*hidden argument*/NULL);
__this->set__attributeMembers_2(L_19);
}
IL_0096:
{
XmlTypeMapMemberAttribute_t2837866357 * L_20 = V_0;
NullCheck(L_20);
String_t* L_21 = XmlTypeMapMemberAttribute_get_AttributeName_m2749329371(L_20, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_22 = V_0;
NullCheck(L_22);
String_t* L_23 = XmlTypeMapMemberAttribute_get_Namespace_m2347779695(L_22, /*hidden argument*/NULL);
String_t* L_24 = ClassMap_BuildKey_m733643573(__this, L_21, L_23, /*hidden argument*/NULL);
V_1 = L_24;
Hashtable_t3875263730 * L_25 = __this->get__attributeMembers_2();
String_t* L_26 = V_1;
NullCheck(L_25);
bool L_27 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_25, L_26);
if (!L_27)
{
goto IL_00f5;
}
}
{
StringU5BU5D_t2956870243* L_28 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)5));
NullCheck(L_28);
IL2CPP_ARRAY_BOUNDS_CHECK(L_28, 0);
ArrayElementTypeCheck (L_28, _stringLiteral4023459076);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4023459076);
StringU5BU5D_t2956870243* L_29 = L_28;
XmlTypeMapMemberAttribute_t2837866357 * L_30 = V_0;
NullCheck(L_30);
String_t* L_31 = XmlTypeMapMemberAttribute_get_AttributeName_m2749329371(L_30, /*hidden argument*/NULL);
NullCheck(L_29);
IL2CPP_ARRAY_BOUNDS_CHECK(L_29, 1);
ArrayElementTypeCheck (L_29, L_31);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_31);
StringU5BU5D_t2956870243* L_32 = L_29;
NullCheck(L_32);
IL2CPP_ARRAY_BOUNDS_CHECK(L_32, 2);
ArrayElementTypeCheck (L_32, _stringLiteral2375366149);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2375366149);
StringU5BU5D_t2956870243* L_33 = L_32;
XmlTypeMapMemberAttribute_t2837866357 * L_34 = V_0;
NullCheck(L_34);
String_t* L_35 = XmlTypeMapMemberAttribute_get_Namespace_m2347779695(L_34, /*hidden argument*/NULL);
NullCheck(L_33);
IL2CPP_ARRAY_BOUNDS_CHECK(L_33, 3);
ArrayElementTypeCheck (L_33, L_35);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_35);
StringU5BU5D_t2956870243* L_36 = L_33;
NullCheck(L_36);
IL2CPP_ARRAY_BOUNDS_CHECK(L_36, 4);
ArrayElementTypeCheck (L_36, _stringLiteral1373508295);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral1373508295);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_37 = String_Concat_m21867311(NULL /*static, unused*/, L_36, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_38 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_38, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38);
}
IL_00f5:
{
XmlTypeMapMember_t757519331 * L_39 = ___member;
Hashtable_t3875263730 * L_40 = __this->get__attributeMembers_2();
NullCheck(L_40);
int32_t L_41 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_40);
NullCheck(L_39);
XmlTypeMapMember_set_Index_m920860652(L_39, L_41, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_42 = __this->get__attributeMembers_2();
String_t* L_43 = V_1;
XmlTypeMapMember_t757519331 * L_44 = ___member;
NullCheck(L_42);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_42, L_43, L_44);
return;
}
IL_0114:
{
XmlTypeMapMember_t757519331 * L_45 = ___member;
if (!((XmlTypeMapMemberFlatList_t1312744122 *)IsInstClass(L_45, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var)))
{
goto IL_0130;
}
}
{
XmlTypeMapMember_t757519331 * L_46 = ___member;
ClassMap_RegisterFlatList_m688271440(__this, ((XmlTypeMapMemberFlatList_t1312744122 *)CastclassClass(L_46, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_01a0;
}
IL_0130:
{
XmlTypeMapMember_t757519331 * L_47 = ___member;
if (!((XmlTypeMapMemberAnyElement_t2899433779 *)IsInstClass(L_47, XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var)))
{
goto IL_0170;
}
}
{
XmlTypeMapMember_t757519331 * L_48 = ___member;
V_2 = ((XmlTypeMapMemberAnyElement_t2899433779 *)CastclassClass(L_48, XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var));
XmlTypeMapMemberAnyElement_t2899433779 * L_49 = V_2;
NullCheck(L_49);
bool L_50 = XmlTypeMapMemberAnyElement_get_IsDefaultAny_m1693850370(L_49, /*hidden argument*/NULL);
if (!L_50)
{
goto IL_0154;
}
}
{
XmlTypeMapMemberAnyElement_t2899433779 * L_51 = V_2;
__this->set__defaultAnyElement_9(L_51);
}
IL_0154:
{
XmlTypeMapMemberAnyElement_t2899433779 * L_52 = V_2;
NullCheck(L_52);
TypeData_t3837952962 * L_53 = XmlTypeMapMember_get_TypeData_m3428473262(L_52, /*hidden argument*/NULL);
NullCheck(L_53);
bool L_54 = TypeData_get_IsListType_m1977463454(L_53, /*hidden argument*/NULL);
if (!L_54)
{
goto IL_016b;
}
}
{
XmlTypeMapMemberAnyElement_t2899433779 * L_55 = V_2;
ClassMap_RegisterFlatList_m688271440(__this, L_55, /*hidden argument*/NULL);
}
IL_016b:
{
goto IL_01a0;
}
IL_0170:
{
XmlTypeMapMember_t757519331 * L_56 = ___member;
if (!((XmlTypeMapMemberAnyAttribute_t576758419 *)IsInstClass(L_56, XmlTypeMapMemberAnyAttribute_t576758419_il2cpp_TypeInfo_var)))
{
goto IL_0188;
}
}
{
XmlTypeMapMember_t757519331 * L_57 = ___member;
__this->set__defaultAnyAttribute_10(((XmlTypeMapMemberAnyAttribute_t576758419 *)CastclassClass(L_57, XmlTypeMapMemberAnyAttribute_t576758419_il2cpp_TypeInfo_var)));
return;
}
IL_0188:
{
XmlTypeMapMember_t757519331 * L_58 = ___member;
if (!((XmlTypeMapMemberNamespaces_t1473492027 *)IsInstClass(L_58, XmlTypeMapMemberNamespaces_t1473492027_il2cpp_TypeInfo_var)))
{
goto IL_01a0;
}
}
{
XmlTypeMapMember_t757519331 * L_59 = ___member;
__this->set__namespaceDeclarations_11(((XmlTypeMapMemberNamespaces_t1473492027 *)CastclassClass(L_59, XmlTypeMapMemberNamespaces_t1473492027_il2cpp_TypeInfo_var)));
return;
}
IL_01a0:
{
XmlTypeMapMember_t757519331 * L_60 = ___member;
if (!((XmlTypeMapMemberElement_t1386704533 *)IsInstClass(L_60, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)))
{
goto IL_01d8;
}
}
{
XmlTypeMapMember_t757519331 * L_61 = ___member;
NullCheck(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_61, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)));
bool L_62 = XmlTypeMapMemberElement_get_IsXmlTextCollector_m325470374(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_61, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (!L_62)
{
goto IL_01d8;
}
}
{
XmlTypeMapMember_t757519331 * L_63 = __this->get__xmlTextCollector_12();
if (!L_63)
{
goto IL_01d1;
}
}
{
InvalidOperationException_t2420574324 * L_64 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_64, _stringLiteral1306163001, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64);
}
IL_01d1:
{
XmlTypeMapMember_t757519331 * L_65 = ___member;
__this->set__xmlTextCollector_12(L_65);
}
IL_01d8:
{
ArrayList_t2121638921 * L_66 = __this->get__elementMembers_1();
if (L_66)
{
goto IL_01f9;
}
}
{
ArrayList_t2121638921 * L_67 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_67, /*hidden argument*/NULL);
__this->set__elementMembers_1(L_67);
Hashtable_t3875263730 * L_68 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_68, /*hidden argument*/NULL);
__this->set__elements_0(L_68);
}
IL_01f9:
{
XmlTypeMapMember_t757519331 * L_69 = ___member;
ArrayList_t2121638921 * L_70 = __this->get__elementMembers_1();
NullCheck(L_70);
int32_t L_71 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_70);
NullCheck(L_69);
XmlTypeMapMember_set_Index_m920860652(L_69, L_71, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_72 = __this->get__elementMembers_1();
XmlTypeMapMember_t757519331 * L_73 = ___member;
NullCheck(L_72);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_72, L_73);
XmlTypeMapMember_t757519331 * L_74 = ___member;
NullCheck(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_74, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)));
XmlTypeMapElementInfoList_t3690603483 * L_75 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_74, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_3 = L_75;
Il2CppObject * L_76 = V_3;
NullCheck(L_76);
Il2CppObject * L_77 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_76);
V_5 = L_77;
}
IL_022b:
try
{ // begin try (depth: 1)
{
goto IL_02b2;
}
IL_0230:
{
Il2CppObject * L_78 = V_5;
NullCheck(L_78);
Il2CppObject * L_79 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_78);
V_4 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_79, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_80 = V_4;
NullCheck(L_80);
String_t* L_81 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_80, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_82 = V_4;
NullCheck(L_82);
String_t* L_83 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_82, /*hidden argument*/NULL);
String_t* L_84 = ClassMap_BuildKey_m733643573(__this, L_81, L_83, /*hidden argument*/NULL);
V_6 = L_84;
Hashtable_t3875263730 * L_85 = __this->get__elements_0();
String_t* L_86 = V_6;
NullCheck(L_85);
bool L_87 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_85, L_86);
if (!L_87)
{
goto IL_02a3;
}
}
IL_0266:
{
StringU5BU5D_t2956870243* L_88 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)5));
NullCheck(L_88);
IL2CPP_ARRAY_BOUNDS_CHECK(L_88, 0);
ArrayElementTypeCheck (L_88, _stringLiteral1196749668);
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1196749668);
StringU5BU5D_t2956870243* L_89 = L_88;
XmlTypeMapElementInfo_t3184170653 * L_90 = V_4;
NullCheck(L_90);
String_t* L_91 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_90, /*hidden argument*/NULL);
NullCheck(L_89);
IL2CPP_ARRAY_BOUNDS_CHECK(L_89, 1);
ArrayElementTypeCheck (L_89, L_91);
(L_89)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_91);
StringU5BU5D_t2956870243* L_92 = L_89;
NullCheck(L_92);
IL2CPP_ARRAY_BOUNDS_CHECK(L_92, 2);
ArrayElementTypeCheck (L_92, _stringLiteral2375366149);
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2375366149);
StringU5BU5D_t2956870243* L_93 = L_92;
XmlTypeMapElementInfo_t3184170653 * L_94 = V_4;
NullCheck(L_94);
String_t* L_95 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_94, /*hidden argument*/NULL);
NullCheck(L_93);
IL2CPP_ARRAY_BOUNDS_CHECK(L_93, 3);
ArrayElementTypeCheck (L_93, L_95);
(L_93)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_95);
StringU5BU5D_t2956870243* L_96 = L_93;
NullCheck(L_96);
IL2CPP_ARRAY_BOUNDS_CHECK(L_96, 4);
ArrayElementTypeCheck (L_96, _stringLiteral37360551);
(L_96)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral37360551);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_97 = String_Concat_m21867311(NULL /*static, unused*/, L_96, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_98 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_98, L_97, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_98);
}
IL_02a3:
{
Hashtable_t3875263730 * L_99 = __this->get__elements_0();
String_t* L_100 = V_6;
XmlTypeMapElementInfo_t3184170653 * L_101 = V_4;
NullCheck(L_99);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_99, L_100, L_101);
}
IL_02b2:
{
Il2CppObject * L_102 = V_5;
NullCheck(L_102);
bool L_103 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_102);
if (L_103)
{
goto IL_0230;
}
}
IL_02be:
{
IL2CPP_LEAVE(0x2D9, FINALLY_02c3);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_02c3;
}
FINALLY_02c3:
{ // begin finally (depth: 1)
{
Il2CppObject * L_104 = V_5;
V_7 = ((Il2CppObject *)IsInst(L_104, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_105 = V_7;
if (L_105)
{
goto IL_02d1;
}
}
IL_02d0:
{
IL2CPP_END_FINALLY(707)
}
IL_02d1:
{
Il2CppObject * L_106 = V_7;
NullCheck(L_106);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_106);
IL2CPP_END_FINALLY(707)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(707)
{
IL2CPP_JUMP_TBL(0x2D9, IL_02d9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_02d9:
{
XmlTypeMapMember_t757519331 * L_107 = ___member;
NullCheck(L_107);
TypeData_t3837952962 * L_108 = XmlTypeMapMember_get_TypeData_m3428473262(L_107, /*hidden argument*/NULL);
NullCheck(L_108);
bool L_109 = TypeData_get_IsListType_m1977463454(L_108, /*hidden argument*/NULL);
if (!L_109)
{
goto IL_0331;
}
}
{
XmlTypeMapMember_t757519331 * L_110 = ___member;
NullCheck(L_110);
TypeData_t3837952962 * L_111 = XmlTypeMapMember_get_TypeData_m3428473262(L_110, /*hidden argument*/NULL);
NullCheck(L_111);
Type_t * L_112 = TypeData_get_Type_m2191724548(L_111, /*hidden argument*/NULL);
if (!L_112)
{
goto IL_0331;
}
}
{
XmlTypeMapMember_t757519331 * L_113 = ___member;
NullCheck(L_113);
TypeData_t3837952962 * L_114 = XmlTypeMapMember_get_TypeData_m3428473262(L_113, /*hidden argument*/NULL);
NullCheck(L_114);
Type_t * L_115 = TypeData_get_Type_m2191724548(L_114, /*hidden argument*/NULL);
NullCheck(L_115);
bool L_116 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_115);
if (L_116)
{
goto IL_0331;
}
}
{
ArrayList_t2121638921 * L_117 = __this->get__listMembers_8();
if (L_117)
{
goto IL_0324;
}
}
{
ArrayList_t2121638921 * L_118 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_118, /*hidden argument*/NULL);
__this->set__listMembers_8(L_118);
}
IL_0324:
{
ArrayList_t2121638921 * L_119 = __this->get__listMembers_8();
XmlTypeMapMember_t757519331 * L_120 = ___member;
NullCheck(L_119);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_119, L_120);
}
IL_0331:
{
return;
}
}
// System.Void System.Xml.Serialization.ClassMap::RegisterFlatList(System.Xml.Serialization.XmlTypeMapMemberExpandable)
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_RegisterFlatList_m688271440_MetadataUsageId;
extern "C" void ClassMap_RegisterFlatList_m688271440 (ClassMap_t912207490 * __this, XmlTypeMapMemberExpandable_t1849554103 * ___member, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_RegisterFlatList_m688271440_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
ArrayList_t2121638921 * L_0 = __this->get__flatLists_5();
if (L_0)
{
goto IL_0016;
}
}
{
ArrayList_t2121638921 * L_1 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_1, /*hidden argument*/NULL);
__this->set__flatLists_5(L_1);
}
IL_0016:
{
XmlTypeMapMemberExpandable_t1849554103 * L_2 = ___member;
ArrayList_t2121638921 * L_3 = __this->get__flatLists_5();
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
NullCheck(L_2);
XmlTypeMapMemberExpandable_set_FlatArrayIndex_m1028741936(L_2, L_4, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_5 = __this->get__flatLists_5();
XmlTypeMapMemberExpandable_t1849554103 * L_6 = ___member;
NullCheck(L_5);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6);
return;
}
}
// System.Xml.Serialization.XmlTypeMapMemberAttribute System.Xml.Serialization.ClassMap::GetAttribute(System.String,System.String)
extern TypeInfo* XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_GetAttribute_m3196217067_MetadataUsageId;
extern "C" XmlTypeMapMemberAttribute_t2837866357 * ClassMap_GetAttribute_m3196217067 (ClassMap_t912207490 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_GetAttribute_m3196217067_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = __this->get__attributeMembers_2();
if (L_0)
{
goto IL_000d;
}
}
{
return (XmlTypeMapMemberAttribute_t2837866357 *)NULL;
}
IL_000d:
{
Hashtable_t3875263730 * L_1 = __this->get__attributeMembers_2();
String_t* L_2 = ___name;
String_t* L_3 = ___ns;
String_t* L_4 = ClassMap_BuildKey_m733643573(__this, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_1);
Il2CppObject * L_5 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_4);
return ((XmlTypeMapMemberAttribute_t2837866357 *)CastclassClass(L_5, XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var));
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String)
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_GetElement_m3737748067_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * ClassMap_GetElement_m3737748067 (ClassMap_t912207490 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_GetElement_m3737748067_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = __this->get__elements_0();
if (L_0)
{
goto IL_000d;
}
}
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_000d:
{
Hashtable_t3875263730 * L_1 = __this->get__elements_0();
String_t* L_2 = ___name;
String_t* L_3 = ___ns;
String_t* L_4 = ClassMap_BuildKey_m733643573(__this, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_1);
Il2CppObject * L_5 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_4);
return ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_5, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.Int32)
extern TypeInfo* XmlTypeMapElementInfoU5BU5D_t3505402448_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral272948769;
extern const uint32_t ClassMap_GetElement_m4004624716_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * ClassMap_GetElement_m4004624716 (ClassMap_t912207490 * __this, int32_t ___index, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_GetElement_m4004624716_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMemberElement_t1386704533 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t3875263730 * L_0 = __this->get__elements_0();
if (L_0)
{
goto IL_000d;
}
}
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_000d:
{
XmlTypeMapElementInfoU5BU5D_t3505402448* L_1 = __this->get__elementsByIndex_4();
if (L_1)
{
goto IL_00a7;
}
}
{
ArrayList_t2121638921 * L_2 = __this->get__elementMembers_1();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
__this->set__elementsByIndex_4(((XmlTypeMapElementInfoU5BU5D_t3505402448*)SZArrayNew(XmlTypeMapElementInfoU5BU5D_t3505402448_il2cpp_TypeInfo_var, (uint32_t)L_3)));
ArrayList_t2121638921 * L_4 = __this->get__elementMembers_1();
NullCheck(L_4);
Il2CppObject * L_5 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_4);
V_1 = L_5;
}
IL_003a:
try
{ // begin try (depth: 1)
{
goto IL_0085;
}
IL_003f:
{
Il2CppObject * L_6 = V_1;
NullCheck(L_6);
Il2CppObject * L_7 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_6);
V_0 = ((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_7, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_8 = V_0;
NullCheck(L_8);
XmlTypeMapElementInfoList_t3690603483 * L_9 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_8, /*hidden argument*/NULL);
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_9);
if ((((int32_t)L_10) == ((int32_t)1)))
{
goto IL_0067;
}
}
IL_005c:
{
InvalidOperationException_t2420574324 * L_11 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_11, _stringLiteral272948769, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11);
}
IL_0067:
{
XmlTypeMapElementInfoU5BU5D_t3505402448* L_12 = __this->get__elementsByIndex_4();
XmlTypeMapMemberElement_t1386704533 * L_13 = V_0;
NullCheck(L_13);
int32_t L_14 = XmlTypeMapMember_get_Index_m1785150577(L_13, /*hidden argument*/NULL);
XmlTypeMapMemberElement_t1386704533 * L_15 = V_0;
NullCheck(L_15);
XmlTypeMapElementInfoList_t3690603483 * L_16 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
Il2CppObject * L_17 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_16, 0);
NullCheck(L_12);
IL2CPP_ARRAY_BOUNDS_CHECK(L_12, L_14);
ArrayElementTypeCheck (L_12, ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_17, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var)));
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (XmlTypeMapElementInfo_t3184170653 *)((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_17, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var)));
}
IL_0085:
{
Il2CppObject * L_18 = V_1;
NullCheck(L_18);
bool L_19 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_18);
if (L_19)
{
goto IL_003f;
}
}
IL_0090:
{
IL2CPP_LEAVE(0xA7, FINALLY_0095);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0095;
}
FINALLY_0095:
{ // begin finally (depth: 1)
{
Il2CppObject * L_20 = V_1;
V_2 = ((Il2CppObject *)IsInst(L_20, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_21 = V_2;
if (L_21)
{
goto IL_00a0;
}
}
IL_009f:
{
IL2CPP_END_FINALLY(149)
}
IL_00a0:
{
Il2CppObject * L_22 = V_2;
NullCheck(L_22);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_22);
IL2CPP_END_FINALLY(149)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(149)
{
IL2CPP_JUMP_TBL(0xA7, IL_00a7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00a7:
{
XmlTypeMapElementInfoU5BU5D_t3505402448* L_23 = __this->get__elementsByIndex_4();
int32_t L_24 = ___index;
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, L_24);
int32_t L_25 = L_24;
return ((L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)));
}
}
// System.String System.Xml.Serialization.ClassMap::BuildKey(System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral32241;
extern const uint32_t ClassMap_BuildKey_m733643573_MetadataUsageId;
extern "C" String_t* ClassMap_BuildKey_m733643573 (ClassMap_t912207490 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_BuildKey_m733643573_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = __this->get__ignoreMemberNamespace_14();
if (!L_0)
{
goto IL_000d;
}
}
{
String_t* L_1 = ___name;
return L_1;
}
IL_000d:
{
String_t* L_2 = ___name;
String_t* L_3 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = String_Concat_m1825781833(NULL /*static, unused*/, L_2, _stringLiteral32241, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::get_DefaultAnyElementMember()
extern "C" XmlTypeMapMemberAnyElement_t2899433779 * ClassMap_get_DefaultAnyElementMember_m3724699635 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberAnyElement_t2899433779 * L_0 = __this->get__defaultAnyElement_9();
return L_0;
}
}
// System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::get_DefaultAnyAttributeMember()
extern "C" XmlTypeMapMemberAnyAttribute_t576758419 * ClassMap_get_DefaultAnyAttributeMember_m2749385715 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberAnyAttribute_t576758419 * L_0 = __this->get__defaultAnyAttribute_10();
return L_0;
}
}
// System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::get_NamespaceDeclarations()
extern "C" XmlTypeMapMemberNamespaces_t1473492027 * ClassMap_get_NamespaceDeclarations_m3505324052 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberNamespaces_t1473492027 * L_0 = __this->get__namespaceDeclarations_11();
return L_0;
}
}
// System.Collections.ICollection System.Xml.Serialization.ClassMap::get_AttributeMembers()
extern TypeInfo* XmlTypeMapMemberAttributeU5BU5D_t3583281944_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_get_AttributeMembers_m3649534527_MetadataUsageId;
extern "C" Il2CppObject * ClassMap_get_AttributeMembers_m3649534527 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_get_AttributeMembers_m3649534527_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMemberAttribute_t2837866357 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t3875263730 * L_0 = __this->get__attributeMembers_2();
if (L_0)
{
goto IL_000d;
}
}
{
return (Il2CppObject *)NULL;
}
IL_000d:
{
XmlTypeMapMemberAttributeU5BU5D_t3583281944* L_1 = __this->get__attributeMembersArray_3();
if (!L_1)
{
goto IL_001f;
}
}
{
XmlTypeMapMemberAttributeU5BU5D_t3583281944* L_2 = __this->get__attributeMembersArray_3();
return (Il2CppObject *)L_2;
}
IL_001f:
{
Hashtable_t3875263730 * L_3 = __this->get__attributeMembers_2();
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_3);
__this->set__attributeMembersArray_3(((XmlTypeMapMemberAttributeU5BU5D_t3583281944*)SZArrayNew(XmlTypeMapMemberAttributeU5BU5D_t3583281944_il2cpp_TypeInfo_var, (uint32_t)L_4)));
Hashtable_t3875263730 * L_5 = __this->get__attributeMembers_2();
NullCheck(L_5);
Il2CppObject * L_6 = VirtFuncInvoker0< Il2CppObject * >::Invoke(22 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_5);
NullCheck(L_6);
Il2CppObject * L_7 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_6);
V_1 = L_7;
}
IL_0046:
try
{ // begin try (depth: 1)
{
goto IL_0065;
}
IL_004b:
{
Il2CppObject * L_8 = V_1;
NullCheck(L_8);
Il2CppObject * L_9 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_8);
V_0 = ((XmlTypeMapMemberAttribute_t2837866357 *)CastclassClass(L_9, XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var));
XmlTypeMapMemberAttributeU5BU5D_t3583281944* L_10 = __this->get__attributeMembersArray_3();
XmlTypeMapMemberAttribute_t2837866357 * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = XmlTypeMapMember_get_Index_m1785150577(L_11, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_13 = V_0;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, L_12);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (XmlTypeMapMemberAttribute_t2837866357 *)L_13);
}
IL_0065:
{
Il2CppObject * L_14 = V_1;
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_004b;
}
}
IL_0070:
{
IL2CPP_LEAVE(0x87, FINALLY_0075);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0075;
}
FINALLY_0075:
{ // begin finally (depth: 1)
{
Il2CppObject * L_16 = V_1;
V_2 = ((Il2CppObject *)IsInst(L_16, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_17 = V_2;
if (L_17)
{
goto IL_0080;
}
}
IL_007f:
{
IL2CPP_END_FINALLY(117)
}
IL_0080:
{
Il2CppObject * L_18 = V_2;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_18);
IL2CPP_END_FINALLY(117)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(117)
{
IL2CPP_JUMP_TBL(0x87, IL_0087)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0087:
{
XmlTypeMapMemberAttributeU5BU5D_t3583281944* L_19 = __this->get__attributeMembersArray_3();
return (Il2CppObject *)L_19;
}
}
// System.Collections.ICollection System.Xml.Serialization.ClassMap::get_ElementMembers()
extern "C" Il2CppObject * ClassMap_get_ElementMembers_m1176036895 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get__elementMembers_1();
return L_0;
}
}
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_AllMembers()
extern "C" ArrayList_t2121638921 * ClassMap_get_AllMembers_m2801991306 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get__allMembers_6();
return L_0;
}
}
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_FlatLists()
extern "C" ArrayList_t2121638921 * ClassMap_get_FlatLists_m836694060 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get__flatLists_5();
return L_0;
}
}
// System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_ListMembers()
extern "C" ArrayList_t2121638921 * ClassMap_get_ListMembers_m3321229227 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get__listMembers_8();
return L_0;
}
}
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_XmlTextCollector()
extern "C" XmlTypeMapMember_t757519331 * ClassMap_get_XmlTextCollector_m2750672627 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember_t757519331 * L_0 = __this->get__xmlTextCollector_12();
return L_0;
}
}
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_ReturnMember()
extern "C" XmlTypeMapMember_t757519331 * ClassMap_get_ReturnMember_m2751635476 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember_t757519331 * L_0 = __this->get__returnMember_13();
return L_0;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.ClassMap::get_SimpleContentBaseType()
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_get_SimpleContentBaseType_m4024408541_MetadataUsageId;
extern "C" XmlQualifiedName_t176365656 * ClassMap_get_SimpleContentBaseType_m4024408541 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_get_SimpleContentBaseType_m4024408541_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMemberElement_t1386704533 * V_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_1 = NULL;
{
bool L_0 = __this->get__canBeSimpleType_15();
if (!L_0)
{
goto IL_0027;
}
}
{
ArrayList_t2121638921 * L_1 = __this->get__elementMembers_1();
if (!L_1)
{
goto IL_0027;
}
}
{
ArrayList_t2121638921 * L_2 = __this->get__elementMembers_1();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0029;
}
}
IL_0027:
{
return (XmlQualifiedName_t176365656 *)NULL;
}
IL_0029:
{
ArrayList_t2121638921 * L_4 = __this->get__elementMembers_1();
NullCheck(L_4);
Il2CppObject * L_5 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, 0);
V_0 = ((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_5, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_6 = V_0;
NullCheck(L_6);
XmlTypeMapElementInfoList_t3690603483 * L_7 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7);
if ((((int32_t)L_8) == ((int32_t)1)))
{
goto IL_004e;
}
}
{
return (XmlQualifiedName_t176365656 *)NULL;
}
IL_004e:
{
XmlTypeMapMemberElement_t1386704533 * L_9 = V_0;
NullCheck(L_9);
XmlTypeMapElementInfoList_t3690603483 * L_10 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
Il2CppObject * L_11 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_10, 0);
V_1 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_11, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_12 = V_1;
NullCheck(L_12);
bool L_13 = XmlTypeMapElementInfo_get_IsTextElement_m554063468(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_006d;
}
}
{
return (XmlQualifiedName_t176365656 *)NULL;
}
IL_006d:
{
XmlTypeMapMemberElement_t1386704533 * L_14 = V_0;
NullCheck(L_14);
TypeData_t3837952962 * L_15 = XmlTypeMapMember_get_TypeData_m3428473262(L_14, /*hidden argument*/NULL);
NullCheck(L_15);
int32_t L_16 = TypeData_get_SchemaType_m1693934194(L_15, /*hidden argument*/NULL);
if ((((int32_t)L_16) == ((int32_t)1)))
{
goto IL_008f;
}
}
{
XmlTypeMapMemberElement_t1386704533 * L_17 = V_0;
NullCheck(L_17);
TypeData_t3837952962 * L_18 = XmlTypeMapMember_get_TypeData_m3428473262(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
int32_t L_19 = TypeData_get_SchemaType_m1693934194(L_18, /*hidden argument*/NULL);
if ((!(((uint32_t)L_19) == ((uint32_t)2))))
{
goto IL_00a6;
}
}
IL_008f:
{
XmlTypeMapElementInfo_t3184170653 * L_20 = V_1;
NullCheck(L_20);
TypeData_t3837952962 * L_21 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
String_t* L_22 = TypeData_get_XmlType_m3918246226(L_21, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_23 = V_1;
NullCheck(L_23);
String_t* L_24 = XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611(L_23, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_25 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_25, L_22, L_24, /*hidden argument*/NULL);
return L_25;
}
IL_00a6:
{
return (XmlQualifiedName_t176365656 *)NULL;
}
}
// System.Void System.Xml.Serialization.ClassMap::SetCanBeSimpleType(System.Boolean)
extern "C" void ClassMap_SetCanBeSimpleType_m4038087023 (ClassMap_t912207490 * __this, bool ___can, const MethodInfo* method)
{
{
bool L_0 = ___can;
__this->set__canBeSimpleType_15(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.ClassMap::get_HasSimpleContent()
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t ClassMap_get_HasSimpleContent_m3703916553_MetadataUsageId;
extern "C" bool ClassMap_get_HasSimpleContent_m3703916553 (ClassMap_t912207490 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ClassMap_get_HasSimpleContent_m3703916553_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = ClassMap_get_SimpleContentBaseType_m4024408541(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_1 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_0, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.CodeIdentifier::MakePascal(System.String)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* Char_t2778706699_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t CodeIdentifier_MakePascal_m2694599742_MetadataUsageId;
extern "C" String_t* CodeIdentifier_MakePascal_m2694599742 (Il2CppObject * __this /* static, unused */, String_t* ___identifier, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (CodeIdentifier_MakePascal_m2694599742_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___identifier;
String_t* L_1 = CodeIdentifier_MakeValid_m448101628(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = V_0;
NullCheck(L_2);
uint16_t L_3 = String_get_Chars_m3015341861(L_2, 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_4 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_t2778706699_il2cpp_TypeInfo_var);
uint16_t L_5 = Char_ToUpper_m2271917723(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
uint16_t L_6 = L_5;
Il2CppObject * L_7 = Box(Char_t2778706699_il2cpp_TypeInfo_var, &L_6);
String_t* L_8 = V_0;
NullCheck(L_8);
String_t* L_9 = String_Substring_m2809233063(L_8, 1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = String_Concat_m389863537(NULL /*static, unused*/, L_7, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.String System.Xml.Serialization.CodeIdentifier::MakeValid(System.String)
extern TypeInfo* NullReferenceException_t3216235232_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* Char_t2778706699_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2289459;
extern const uint32_t CodeIdentifier_MakeValid_m448101628_MetadataUsageId;
extern "C" String_t* CodeIdentifier_MakeValid_m448101628 (Il2CppObject * __this /* static, unused */, String_t* ___identifier, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (CodeIdentifier_MakeValid_m448101628_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
uint16_t V_1 = 0x0;
String_t* V_2 = NULL;
int32_t V_3 = 0;
{
String_t* L_0 = ___identifier;
if (L_0)
{
goto IL_000c;
}
}
{
NullReferenceException_t3216235232 * L_1 = (NullReferenceException_t3216235232 *)il2cpp_codegen_object_new(NullReferenceException_t3216235232_il2cpp_TypeInfo_var);
NullReferenceException__ctor_m622546858(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_000c:
{
String_t* L_2 = ___identifier;
NullCheck(L_2);
int32_t L_3 = String_get_Length_m2979997331(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001d;
}
}
{
return _stringLiteral2289459;
}
IL_001d:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
V_0 = L_4;
String_t* L_5 = ___identifier;
NullCheck(L_5);
uint16_t L_6 = String_get_Chars_m3015341861(L_5, 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_t2778706699_il2cpp_TypeInfo_var);
bool L_7 = Char_IsLetter_m1699036490(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0048;
}
}
{
String_t* L_8 = ___identifier;
NullCheck(L_8);
uint16_t L_9 = String_get_Chars_m3015341861(L_8, 0, /*hidden argument*/NULL);
if ((((int32_t)L_9) == ((int32_t)((int32_t)95))))
{
goto IL_0048;
}
}
{
V_0 = _stringLiteral2289459;
}
IL_0048:
{
String_t* L_10 = ___identifier;
V_2 = L_10;
V_3 = 0;
goto IL_007d;
}
IL_0051:
{
String_t* L_11 = V_2;
int32_t L_12 = V_3;
NullCheck(L_11);
uint16_t L_13 = String_get_Chars_m3015341861(L_11, L_12, /*hidden argument*/NULL);
V_1 = L_13;
uint16_t L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_t2778706699_il2cpp_TypeInfo_var);
bool L_15 = Char_IsLetterOrDigit_m2290383044(NULL /*static, unused*/, L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_006c;
}
}
{
uint16_t L_16 = V_1;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)95)))))
{
goto IL_0079;
}
}
IL_006c:
{
String_t* L_17 = V_0;
uint16_t L_18 = V_1;
uint16_t L_19 = L_18;
Il2CppObject * L_20 = Box(Char_t2778706699_il2cpp_TypeInfo_var, &L_19);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_21 = String_Concat_m389863537(NULL /*static, unused*/, L_17, L_20, /*hidden argument*/NULL);
V_0 = L_21;
}
IL_0079:
{
int32_t L_22 = V_3;
V_3 = ((int32_t)((int32_t)L_22+(int32_t)1));
}
IL_007d:
{
int32_t L_23 = V_3;
String_t* L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = String_get_Length_m2979997331(L_24, /*hidden argument*/NULL);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_0051;
}
}
{
String_t* L_26 = V_0;
NullCheck(L_26);
int32_t L_27 = String_get_Length_m2979997331(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_27) <= ((int32_t)((int32_t)400))))
{
goto IL_00a6;
}
}
{
String_t* L_28 = V_0;
NullCheck(L_28);
String_t* L_29 = String_Substring_m675079568(L_28, 0, ((int32_t)400), /*hidden argument*/NULL);
V_0 = L_29;
}
IL_00a6:
{
String_t* L_30 = V_0;
return L_30;
}
}
// System.Void System.Xml.Serialization.EnumMap::.ctor(System.Xml.Serialization.EnumMap/EnumMapMember[],System.Boolean)
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* Int64U5BU5D_t753178071_il2cpp_TypeInfo_var;
extern const uint32_t EnumMap__ctor_m1389877646_MetadataUsageId;
extern "C" void EnumMap__ctor_m1389877646 (EnumMap_t228974105 * __this, EnumMapMemberU5BU5D_t3911606680* ___members, bool ___isFlags, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (EnumMap__ctor_m1389877646_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
EnumMapMember_t1245278965 * V_1 = NULL;
{
ObjectMap__ctor_m946545596(__this, /*hidden argument*/NULL);
EnumMapMemberU5BU5D_t3911606680* L_0 = ___members;
__this->set__members_0(L_0);
bool L_1 = ___isFlags;
__this->set__isFlags_1(L_1);
EnumMapMemberU5BU5D_t3911606680* L_2 = __this->get__members_0();
NullCheck(L_2);
__this->set__enumNames_2(((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length)))))));
EnumMapMemberU5BU5D_t3911606680* L_3 = __this->get__members_0();
NullCheck(L_3);
__this->set__xmlNames_3(((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length)))))));
EnumMapMemberU5BU5D_t3911606680* L_4 = __this->get__members_0();
NullCheck(L_4);
__this->set__values_4(((Int64U5BU5D_t753178071*)SZArrayNew(Int64U5BU5D_t753178071_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))))));
V_0 = 0;
goto IL_008b;
}
IL_0054:
{
EnumMapMemberU5BU5D_t3911606680* L_5 = __this->get__members_0();
int32_t L_6 = V_0;
NullCheck(L_5);
IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6);
int32_t L_7 = L_6;
V_1 = ((L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)));
StringU5BU5D_t2956870243* L_8 = __this->get__enumNames_2();
int32_t L_9 = V_0;
EnumMapMember_t1245278965 * L_10 = V_1;
NullCheck(L_10);
String_t* L_11 = EnumMapMember_get_EnumName_m70696196(L_10, /*hidden argument*/NULL);
NullCheck(L_8);
IL2CPP_ARRAY_BOUNDS_CHECK(L_8, L_9);
ArrayElementTypeCheck (L_8, L_11);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (String_t*)L_11);
StringU5BU5D_t2956870243* L_12 = __this->get__xmlNames_3();
int32_t L_13 = V_0;
EnumMapMember_t1245278965 * L_14 = V_1;
NullCheck(L_14);
String_t* L_15 = EnumMapMember_get_XmlName_m2166786316(L_14, /*hidden argument*/NULL);
NullCheck(L_12);
IL2CPP_ARRAY_BOUNDS_CHECK(L_12, L_13);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (String_t*)L_15);
Int64U5BU5D_t753178071* L_16 = __this->get__values_4();
int32_t L_17 = V_0;
EnumMapMember_t1245278965 * L_18 = V_1;
NullCheck(L_18);
int64_t L_19 = EnumMapMember_get_Value_m1501173499(L_18, /*hidden argument*/NULL);
NullCheck(L_16);
IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (int64_t)L_19);
int32_t L_20 = V_0;
V_0 = ((int32_t)((int32_t)L_20+(int32_t)1));
}
IL_008b:
{
int32_t L_21 = V_0;
EnumMapMemberU5BU5D_t3911606680* L_22 = __this->get__members_0();
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_22)->max_length)))))))
{
goto IL_0054;
}
}
{
return;
}
}
// System.Boolean System.Xml.Serialization.EnumMap::get_IsFlags()
extern "C" bool EnumMap_get_IsFlags_m2407749736 (EnumMap_t228974105 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get__isFlags_1();
return L_0;
}
}
// System.String[] System.Xml.Serialization.EnumMap::get_EnumNames()
extern "C" StringU5BU5D_t2956870243* EnumMap_get_EnumNames_m2965856409 (EnumMap_t228974105 * __this, const MethodInfo* method)
{
{
StringU5BU5D_t2956870243* L_0 = __this->get__enumNames_2();
return L_0;
}
}
// System.String[] System.Xml.Serialization.EnumMap::get_XmlNames()
extern "C" StringU5BU5D_t2956870243* EnumMap_get_XmlNames_m554155393 (EnumMap_t228974105 * __this, const MethodInfo* method)
{
{
StringU5BU5D_t2956870243* L_0 = __this->get__xmlNames_3();
return L_0;
}
}
// System.Int64[] System.Xml.Serialization.EnumMap::get_Values()
extern "C" Int64U5BU5D_t753178071* EnumMap_get_Values_m2390395762 (EnumMap_t228974105 * __this, const MethodInfo* method)
{
{
Int64U5BU5D_t753178071* L_0 = __this->get__values_4();
return L_0;
}
}
// System.String System.Xml.Serialization.EnumMap::GetXmlName(System.String,System.Object)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidCastException_t922874574_il2cpp_TypeInfo_var;
extern TypeInfo* IConvertible_t4194222097_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* FormatException_t2404802957_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Int64_t2847414882_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2782897785;
extern const uint32_t EnumMap_GetXmlName_m407677947_MetadataUsageId;
extern "C" String_t* EnumMap_GetXmlName_m407677947 (EnumMap_t228974105 * __this, String_t* ___typeName, Il2CppObject * ___enumValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (EnumMap_GetXmlName_m407677947_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Il2CppObject * L_0 = ___enumValue;
if (!((String_t*)IsInstSealed(L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0011;
}
}
{
InvalidCastException_t922874574 * L_1 = (InvalidCastException_t922874574 *)il2cpp_codegen_object_new(InvalidCastException_t922874574_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1930928124(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
V_0 = (((int64_t)((int64_t)0)));
}
IL_0014:
try
{ // begin try (depth: 1)
Il2CppObject * L_2 = ___enumValue;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_3 = CultureInfo_get_CurrentCulture_m2905498779(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck(((Il2CppObject *)Castclass(L_2, IConvertible_t4194222097_il2cpp_TypeInfo_var)));
int64_t L_4 = InterfaceFuncInvoker1< int64_t, Il2CppObject * >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t4194222097_il2cpp_TypeInfo_var, ((Il2CppObject *)Castclass(L_2, IConvertible_t4194222097_il2cpp_TypeInfo_var)), L_3);
V_0 = L_4;
goto IL_0036;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (FormatException_t2404802957_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_002a;
throw e;
}
CATCH_002a:
{ // begin catch(System.FormatException)
{
InvalidCastException_t922874574 * L_5 = (InvalidCastException_t922874574 *)il2cpp_codegen_object_new(InvalidCastException_t922874574_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1930928124(L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5);
}
IL_0031:
{
goto IL_0036;
}
} // end catch (depth: 1)
IL_0036:
{
V_1 = 0;
goto IL_0058;
}
IL_003d:
{
Int64U5BU5D_t753178071* L_6 = EnumMap_get_Values_m2390395762(__this, /*hidden argument*/NULL);
int32_t L_7 = V_1;
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, L_7);
int32_t L_8 = L_7;
int64_t L_9 = V_0;
if ((!(((uint64_t)((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)))) == ((uint64_t)L_9))))
{
goto IL_0054;
}
}
{
StringU5BU5D_t2956870243* L_10 = EnumMap_get_XmlNames_m554155393(__this, /*hidden argument*/NULL);
int32_t L_11 = V_1;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, L_11);
int32_t L_12 = L_11;
return ((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)));
}
IL_0054:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)((int32_t)L_13+(int32_t)1));
}
IL_0058:
{
int32_t L_14 = V_1;
Int64U5BU5D_t753178071* L_15 = EnumMap_get_Values_m2390395762(__this, /*hidden argument*/NULL);
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length)))))))
{
goto IL_003d;
}
}
{
bool L_16 = EnumMap_get_IsFlags_m2407749736(__this, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_007d;
}
}
{
int64_t L_17 = V_0;
if (L_17)
{
goto IL_007d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_18 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_18;
}
IL_007d:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_19 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
V_2 = L_19;
bool L_20 = EnumMap_get_IsFlags_m2407749736(__this, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_00a2;
}
}
{
int64_t L_21 = V_0;
StringU5BU5D_t2956870243* L_22 = EnumMap_get_XmlNames_m554155393(__this, /*hidden argument*/NULL);
Int64U5BU5D_t753178071* L_23 = EnumMap_get_Values_m2390395762(__this, /*hidden argument*/NULL);
String_t* L_24 = ___typeName;
String_t* L_25 = XmlCustomFormatter_FromEnum_m2429903813(NULL /*static, unused*/, L_21, L_22, L_23, L_24, /*hidden argument*/NULL);
V_2 = L_25;
}
IL_00a2:
{
String_t* L_26 = V_2;
NullCheck(L_26);
int32_t L_27 = String_get_Length_m2979997331(L_26, /*hidden argument*/NULL);
if (L_27)
{
goto IL_00d5;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_28 = CultureInfo_get_CurrentCulture_m2905498779(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_29 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)2));
int64_t L_30 = V_0;
int64_t L_31 = L_30;
Il2CppObject * L_32 = Box(Int64_t2847414882_il2cpp_TypeInfo_var, &L_31);
NullCheck(L_29);
IL2CPP_ARRAY_BOUNDS_CHECK(L_29, 0);
ArrayElementTypeCheck (L_29, L_32);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_32);
ObjectU5BU5D_t11523773* L_33 = L_29;
String_t* L_34 = ___typeName;
NullCheck(L_33);
IL2CPP_ARRAY_BOUNDS_CHECK(L_33, 1);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_34);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_35 = String_Format_m3351777162(NULL /*static, unused*/, L_28, _stringLiteral2782897785, L_33, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_36 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_36, L_35, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36);
}
IL_00d5:
{
String_t* L_37 = V_2;
return L_37;
}
}
// System.String System.Xml.Serialization.EnumMap::GetEnumName(System.String,System.String)
extern TypeInfo* StringBuilder_t3822575854_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral48;
extern Il2CppCodeGenString* _stringLiteral2782897785;
extern const uint32_t EnumMap_GetEnumName_m2804311267_MetadataUsageId;
extern "C" String_t* EnumMap_GetEnumName_m2804311267 (EnumMap_t228974105 * __this, String_t* ___typeName, String_t* ___xmlName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (EnumMap_GetEnumName_m2804311267_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
StringBuilder_t3822575854 * V_0 = NULL;
StringU5BU5D_t2956870243* V_1 = NULL;
String_t* V_2 = NULL;
StringU5BU5D_t2956870243* V_3 = NULL;
int32_t V_4 = 0;
String_t* V_5 = NULL;
int32_t V_6 = 0;
EnumMapMember_t1245278965 * V_7 = NULL;
EnumMapMemberU5BU5D_t3911606680* V_8 = NULL;
int32_t V_9 = 0;
{
bool L_0 = __this->get__isFlags_1();
if (!L_0)
{
goto IL_00fe;
}
}
{
String_t* L_1 = ___xmlName;
NullCheck(L_1);
String_t* L_2 = String_Trim_m1030489823(L_1, /*hidden argument*/NULL);
___xmlName = L_2;
String_t* L_3 = ___xmlName;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m2979997331(L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0024;
}
}
{
return _stringLiteral48;
}
IL_0024:
{
StringBuilder_t3822575854 * L_5 = (StringBuilder_t3822575854 *)il2cpp_codegen_object_new(StringBuilder_t3822575854_il2cpp_TypeInfo_var);
StringBuilder__ctor_m135953004(L_5, /*hidden argument*/NULL);
V_0 = L_5;
String_t* L_6 = ___xmlName;
NullCheck(L_6);
StringU5BU5D_t2956870243* L_7 = String_Split_m290179486(L_6, (CharU5BU5D_t3416858730*)(CharU5BU5D_t3416858730*)NULL, /*hidden argument*/NULL);
V_1 = L_7;
StringU5BU5D_t2956870243* L_8 = V_1;
V_3 = L_8;
V_4 = 0;
goto IL_00ed;
}
IL_003c:
{
StringU5BU5D_t2956870243* L_9 = V_3;
int32_t L_10 = V_4;
NullCheck(L_9);
IL2CPP_ARRAY_BOUNDS_CHECK(L_9, L_10);
int32_t L_11 = L_10;
V_2 = ((L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)));
String_t* L_12 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_13 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_14 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_12, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0056;
}
}
{
goto IL_00e7;
}
IL_0056:
{
V_5 = (String_t*)NULL;
V_6 = 0;
goto IL_008b;
}
IL_0061:
{
StringU5BU5D_t2956870243* L_15 = EnumMap_get_XmlNames_m554155393(__this, /*hidden argument*/NULL);
int32_t L_16 = V_6;
NullCheck(L_15);
IL2CPP_ARRAY_BOUNDS_CHECK(L_15, L_16);
int32_t L_17 = L_16;
String_t* L_18 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_19 = String_op_Equality_m1260523650(NULL /*static, unused*/, ((L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17))), L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0085;
}
}
{
StringU5BU5D_t2956870243* L_20 = EnumMap_get_EnumNames_m2965856409(__this, /*hidden argument*/NULL);
int32_t L_21 = V_6;
NullCheck(L_20);
IL2CPP_ARRAY_BOUNDS_CHECK(L_20, L_21);
int32_t L_22 = L_21;
V_5 = ((L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)));
goto IL_009a;
}
IL_0085:
{
int32_t L_23 = V_6;
V_6 = ((int32_t)((int32_t)L_23+(int32_t)1));
}
IL_008b:
{
int32_t L_24 = V_6;
StringU5BU5D_t2956870243* L_25 = EnumMap_get_XmlNames_m554155393(__this, /*hidden argument*/NULL);
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_25)->max_length)))))))
{
goto IL_0061;
}
}
IL_009a:
{
String_t* L_26 = V_5;
if (!L_26)
{
goto IL_00c4;
}
}
{
StringBuilder_t3822575854 * L_27 = V_0;
NullCheck(L_27);
int32_t L_28 = StringBuilder_get_Length_m2443133099(L_27, /*hidden argument*/NULL);
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_00b6;
}
}
{
StringBuilder_t3822575854 * L_29 = V_0;
NullCheck(L_29);
StringBuilder_Append_m2143093878(L_29, ((int32_t)44), /*hidden argument*/NULL);
}
IL_00b6:
{
StringBuilder_t3822575854 * L_30 = V_0;
String_t* L_31 = V_5;
NullCheck(L_30);
StringBuilder_Append_m3898090075(L_30, L_31, /*hidden argument*/NULL);
goto IL_00e7;
}
IL_00c4:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_32 = CultureInfo_get_CurrentCulture_m2905498779(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_33 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)2));
String_t* L_34 = V_2;
NullCheck(L_33);
IL2CPP_ARRAY_BOUNDS_CHECK(L_33, 0);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_34);
ObjectU5BU5D_t11523773* L_35 = L_33;
String_t* L_36 = ___typeName;
NullCheck(L_35);
IL2CPP_ARRAY_BOUNDS_CHECK(L_35, 1);
ArrayElementTypeCheck (L_35, L_36);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_36);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_37 = String_Format_m3351777162(NULL /*static, unused*/, L_32, _stringLiteral2782897785, L_35, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_38 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_38, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38);
}
IL_00e7:
{
int32_t L_39 = V_4;
V_4 = ((int32_t)((int32_t)L_39+(int32_t)1));
}
IL_00ed:
{
int32_t L_40 = V_4;
StringU5BU5D_t2956870243* L_41 = V_3;
NullCheck(L_41);
if ((((int32_t)L_40) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_41)->max_length)))))))
{
goto IL_003c;
}
}
{
StringBuilder_t3822575854 * L_42 = V_0;
NullCheck(L_42);
String_t* L_43 = StringBuilder_ToString_m350379841(L_42, /*hidden argument*/NULL);
return L_43;
}
IL_00fe:
{
EnumMapMemberU5BU5D_t3911606680* L_44 = __this->get__members_0();
V_8 = L_44;
V_9 = 0;
goto IL_0135;
}
IL_010e:
{
EnumMapMemberU5BU5D_t3911606680* L_45 = V_8;
int32_t L_46 = V_9;
NullCheck(L_45);
IL2CPP_ARRAY_BOUNDS_CHECK(L_45, L_46);
int32_t L_47 = L_46;
V_7 = ((L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_47)));
EnumMapMember_t1245278965 * L_48 = V_7;
NullCheck(L_48);
String_t* L_49 = EnumMapMember_get_XmlName_m2166786316(L_48, /*hidden argument*/NULL);
String_t* L_50 = ___xmlName;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_51 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_49, L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_012f;
}
}
{
EnumMapMember_t1245278965 * L_52 = V_7;
NullCheck(L_52);
String_t* L_53 = EnumMapMember_get_EnumName_m70696196(L_52, /*hidden argument*/NULL);
return L_53;
}
IL_012f:
{
int32_t L_54 = V_9;
V_9 = ((int32_t)((int32_t)L_54+(int32_t)1));
}
IL_0135:
{
int32_t L_55 = V_9;
EnumMapMemberU5BU5D_t3911606680* L_56 = V_8;
NullCheck(L_56);
if ((((int32_t)L_55) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_56)->max_length)))))))
{
goto IL_010e;
}
}
{
return (String_t*)NULL;
}
}
// System.Void System.Xml.Serialization.EnumMap/EnumMapMember::.ctor(System.String,System.String,System.Int64)
extern "C" void EnumMapMember__ctor_m2758750642 (EnumMapMember_t1245278965 * __this, String_t* ___xmlName, String_t* ___enumName, int64_t ___value, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
String_t* L_0 = ___xmlName;
__this->set__xmlName_0(L_0);
String_t* L_1 = ___enumName;
__this->set__enumName_1(L_1);
int64_t L_2 = ___value;
__this->set__value_2(L_2);
return;
}
}
// System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_XmlName()
extern "C" String_t* EnumMapMember_get_XmlName_m2166786316 (EnumMapMember_t1245278965 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__xmlName_0();
return L_0;
}
}
// System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_EnumName()
extern "C" String_t* EnumMapMember_get_EnumName_m70696196 (EnumMapMember_t1245278965 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__enumName_1();
return L_0;
}
}
// System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::get_Value()
extern "C" int64_t EnumMapMember_get_Value_m1501173499 (EnumMapMember_t1245278965 * __this, const MethodInfo* method)
{
{
int64_t L_0 = __this->get__value_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.String)
extern "C" void KeyHelper_AddField_m853061274 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, String_t* ___val, const MethodInfo* method)
{
{
StringBuilder_t3822575854 * L_0 = ___sb;
int32_t L_1 = ___n;
String_t* L_2 = ___val;
KeyHelper_AddField_m2575778134(NULL /*static, unused*/, L_0, L_1, L_2, (String_t*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern const uint32_t KeyHelper_AddField_m2575778134_MetadataUsageId;
extern "C" void KeyHelper_AddField_m2575778134 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, String_t* ___val, String_t* ___def, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (KeyHelper_AddField_m2575778134_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___val;
String_t* L_1 = ___def;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_2 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_003c;
}
}
{
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = Int32_ToString_m1286526384((&___n), /*hidden argument*/NULL);
NullCheck(L_3);
StringBuilder_Append_m3898090075(L_3, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
String_t* L_6 = ___val;
NullCheck(L_6);
int32_t L_7 = String_get_Length_m2979997331(L_6, /*hidden argument*/NULL);
V_0 = L_7;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_8 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_9 = Int32_ToString_m881186462((&V_0), L_8, /*hidden argument*/NULL);
NullCheck(L_5);
StringBuilder_Append_m3898090075(L_5, L_9, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_10 = ___sb;
String_t* L_11 = ___val;
NullCheck(L_10);
StringBuilder_Append_m3898090075(L_10, L_11, /*hidden argument*/NULL);
}
IL_003c:
{
return;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Boolean)
extern "C" void KeyHelper_AddField_m886151391 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, bool ___val, const MethodInfo* method)
{
{
StringBuilder_t3822575854 * L_0 = ___sb;
int32_t L_1 = ___n;
bool L_2 = ___val;
KeyHelper_AddField_m2484863166(NULL /*static, unused*/, L_0, L_1, L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Boolean,System.Boolean)
extern "C" void KeyHelper_AddField_m2484863166 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, bool ___val, bool ___def, const MethodInfo* method)
{
{
bool L_0 = ___val;
bool L_1 = ___def;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0015;
}
}
{
StringBuilder_t3822575854 * L_2 = ___sb;
String_t* L_3 = Int32_ToString_m1286526384((&___n), /*hidden argument*/NULL);
NullCheck(L_2);
StringBuilder_Append_m3898090075(L_2, L_3, /*hidden argument*/NULL);
}
IL_0015:
{
return;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Int32,System.Int32)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern const uint32_t KeyHelper_AddField_m2576662206_MetadataUsageId;
extern "C" void KeyHelper_AddField_m2576662206 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, int32_t ___val, int32_t ___def, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (KeyHelper_AddField_m2576662206_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = ___val;
int32_t L_1 = ___def;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0028;
}
}
{
StringBuilder_t3822575854 * L_2 = ___sb;
String_t* L_3 = Int32_ToString_m1286526384((&___n), /*hidden argument*/NULL);
NullCheck(L_2);
StringBuilder_Append_m3898090075(L_2, L_3, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_4 = ___sb;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_5 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_6 = Int32_ToString_m881186462((&___val), L_5, /*hidden argument*/NULL);
NullCheck(L_4);
StringBuilder_Append_m3898090075(L_4, L_6, /*hidden argument*/NULL);
}
IL_0028:
{
return;
}
}
// System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Type)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern const uint32_t KeyHelper_AddField_m2451117329_MetadataUsageId;
extern "C" void KeyHelper_AddField_m2451117329 (Il2CppObject * __this /* static, unused */, StringBuilder_t3822575854 * ___sb, int32_t ___n, Type_t * ___val, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (KeyHelper_AddField_m2451117329_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___val;
if (!L_0)
{
goto IL_0026;
}
}
{
StringBuilder_t3822575854 * L_1 = ___sb;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_2 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_3 = Int32_ToString_m881186462((&___n), L_2, /*hidden argument*/NULL);
NullCheck(L_1);
StringBuilder_Append_m3898090075(L_1, L_3, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_4 = ___sb;
Type_t * L_5 = ___val;
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_5);
NullCheck(L_4);
StringBuilder_Append_m3898090075(L_4, L_6, /*hidden argument*/NULL);
}
IL_0026:
{
return;
}
}
// System.Void System.Xml.Serialization.ListMap::.ctor()
extern "C" void ListMap__ctor_m3996758043 (ListMap_t2001748316 * __this, const MethodInfo* method)
{
{
ObjectMap__ctor_m946545596(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.ListMap::set_ChoiceMember(System.String)
extern "C" void ListMap_set_ChoiceMember_m1475177601 (ListMap_t2001748316 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__choiceMember_1(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::get_ItemInfo()
extern "C" XmlTypeMapElementInfoList_t3690603483 * ListMap_get_ItemInfo_m2242411739 (ListMap_t2001748316 * __this, const MethodInfo* method)
{
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__itemInfo_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.ListMap::set_ItemInfo(System.Xml.Serialization.XmlTypeMapElementInfoList)
extern "C" void ListMap_set_ItemInfo_m1163337726 (ListMap_t2001748316 * __this, XmlTypeMapElementInfoList_t3690603483 * ___value, const MethodInfo* method)
{
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = ___value;
__this->set__itemInfo_0(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.Object,System.Int32,System.Object)
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2349886207;
extern Il2CppCodeGenString* _stringLiteral1255;
extern const uint32_t ListMap_FindElement_m2886457511_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * ListMap_FindElement_m2886457511 (ListMap_t2001748316 * __this, Il2CppObject * ___ob, int32_t ___index, Il2CppObject * ___memberValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ListMap_FindElement_m2886457511_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppArray * V_0 = NULL;
Il2CppObject * V_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Type_t * V_4 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_7 = NULL;
Il2CppObject * V_8 = NULL;
Il2CppObject * V_9 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__itemInfo_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_0023;
}
}
{
XmlTypeMapElementInfoList_t3690603483 * L_2 = __this->get__itemInfo_0();
NullCheck(L_2);
Il2CppObject * L_3 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0);
return ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
}
IL_0023:
{
String_t* L_4 = __this->get__choiceMember_1();
if (!L_4)
{
goto IL_00e7;
}
}
{
int32_t L_5 = ___index;
if ((((int32_t)L_5) == ((int32_t)(-1))))
{
goto IL_00e7;
}
}
{
Il2CppObject * L_6 = ___ob;
String_t* L_7 = __this->get__choiceMember_1();
Il2CppObject * L_8 = XmlTypeMapMember_GetValue_m1922396398(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL);
V_0 = ((Il2CppArray *)CastclassClass(L_8, Il2CppArray_il2cpp_TypeInfo_var));
Il2CppArray * L_9 = V_0;
if (!L_9)
{
goto IL_0059;
}
}
{
int32_t L_10 = ___index;
Il2CppArray * L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = Array_get_Length_m1203127607(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_0074;
}
}
IL_0059:
{
String_t* L_13 = __this->get__choiceMember_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_14 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral2349886207, L_13, _stringLiteral1255, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_15 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15);
}
IL_0074:
{
Il2CppArray * L_16 = V_0;
int32_t L_17 = ___index;
NullCheck(L_16);
Il2CppObject * L_18 = Array_GetValue_m244209261(L_16, L_17, /*hidden argument*/NULL);
V_1 = L_18;
XmlTypeMapElementInfoList_t3690603483 * L_19 = __this->get__itemInfo_0();
NullCheck(L_19);
Il2CppObject * L_20 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_19);
V_3 = L_20;
}
IL_0088:
try
{ // begin try (depth: 1)
{
goto IL_00bd;
}
IL_008d:
{
Il2CppObject * L_21 = V_3;
NullCheck(L_21);
Il2CppObject * L_22 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_21);
V_2 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_22, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_23 = V_2;
NullCheck(L_23);
Il2CppObject * L_24 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_23, /*hidden argument*/NULL);
if (!L_24)
{
goto IL_00bd;
}
}
IL_00a4:
{
XmlTypeMapElementInfo_t3184170653 * L_25 = V_2;
NullCheck(L_25);
Il2CppObject * L_26 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_25, /*hidden argument*/NULL);
Il2CppObject * L_27 = V_1;
NullCheck(L_26);
bool L_28 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_27);
if (!L_28)
{
goto IL_00bd;
}
}
IL_00b5:
{
XmlTypeMapElementInfo_t3184170653 * L_29 = V_2;
V_7 = L_29;
IL2CPP_LEAVE(0x15C, FINALLY_00cd);
}
IL_00bd:
{
Il2CppObject * L_30 = V_3;
NullCheck(L_30);
bool L_31 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_30);
if (L_31)
{
goto IL_008d;
}
}
IL_00c8:
{
IL2CPP_LEAVE(0xE2, FINALLY_00cd);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00cd;
}
FINALLY_00cd:
{ // begin finally (depth: 1)
{
Il2CppObject * L_32 = V_3;
V_8 = ((Il2CppObject *)IsInst(L_32, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_33 = V_8;
if (L_33)
{
goto IL_00da;
}
}
IL_00d9:
{
IL2CPP_END_FINALLY(205)
}
IL_00da:
{
Il2CppObject * L_34 = V_8;
NullCheck(L_34);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_34);
IL2CPP_END_FINALLY(205)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(205)
{
IL2CPP_JUMP_TBL(0x15C, IL_015c)
IL2CPP_JUMP_TBL(0xE2, IL_00e2)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00e2:
{
goto IL_015a;
}
IL_00e7:
{
Il2CppObject * L_35 = ___memberValue;
if (L_35)
{
goto IL_00ef;
}
}
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_00ef:
{
Il2CppObject * L_36 = ___memberValue;
NullCheck(L_36);
Type_t * L_37 = Object_GetType_m2022236990(L_36, /*hidden argument*/NULL);
V_4 = L_37;
XmlTypeMapElementInfoList_t3690603483 * L_38 = __this->get__itemInfo_0();
NullCheck(L_38);
Il2CppObject * L_39 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_38);
V_6 = L_39;
}
IL_0104:
try
{ // begin try (depth: 1)
{
goto IL_0133;
}
IL_0109:
{
Il2CppObject * L_40 = V_6;
NullCheck(L_40);
Il2CppObject * L_41 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_40);
V_5 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_41, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_42 = V_5;
NullCheck(L_42);
TypeData_t3837952962 * L_43 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_42, /*hidden argument*/NULL);
NullCheck(L_43);
Type_t * L_44 = TypeData_get_Type_m2191724548(L_43, /*hidden argument*/NULL);
Type_t * L_45 = V_4;
if ((!(((Il2CppObject*)(Type_t *)L_44) == ((Il2CppObject*)(Type_t *)L_45))))
{
goto IL_0133;
}
}
IL_012a:
{
XmlTypeMapElementInfo_t3184170653 * L_46 = V_5;
V_7 = L_46;
IL2CPP_LEAVE(0x15C, FINALLY_0144);
}
IL_0133:
{
Il2CppObject * L_47 = V_6;
NullCheck(L_47);
bool L_48 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_47);
if (L_48)
{
goto IL_0109;
}
}
IL_013f:
{
IL2CPP_LEAVE(0x15A, FINALLY_0144);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0144;
}
FINALLY_0144:
{ // begin finally (depth: 1)
{
Il2CppObject * L_49 = V_6;
V_9 = ((Il2CppObject *)IsInst(L_49, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_50 = V_9;
if (L_50)
{
goto IL_0152;
}
}
IL_0151:
{
IL2CPP_END_FINALLY(324)
}
IL_0152:
{
Il2CppObject * L_51 = V_9;
NullCheck(L_51);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_51);
IL2CPP_END_FINALLY(324)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(324)
{
IL2CPP_JUMP_TBL(0x15C, IL_015c)
IL2CPP_JUMP_TBL(0x15A, IL_015a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_015a:
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_015c:
{
XmlTypeMapElementInfo_t3184170653 * L_52 = V_7;
return L_52;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.String,System.String)
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t ListMap_FindElement_m1213748392_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * ListMap_FindElement_m1213748392 (ListMap_t2001748316 * __this, String_t* ___elementName, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ListMap_FindElement_m1213748392_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfo_t3184170653 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__itemInfo_0();
NullCheck(L_0);
Il2CppObject * L_1 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_1 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_0046;
}
IL_0011:
{
Il2CppObject * L_2 = V_1;
NullCheck(L_2);
Il2CppObject * L_3 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_2);
V_0 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_4 = V_0;
NullCheck(L_4);
String_t* L_5 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_4, /*hidden argument*/NULL);
String_t* L_6 = ___elementName;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_7 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0046;
}
}
IL_002e:
{
XmlTypeMapElementInfo_t3184170653 * L_8 = V_0;
NullCheck(L_8);
String_t* L_9 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_8, /*hidden argument*/NULL);
String_t* L_10 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_11 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0046;
}
}
IL_003f:
{
XmlTypeMapElementInfo_t3184170653 * L_12 = V_0;
V_2 = L_12;
IL2CPP_LEAVE(0x6A, FINALLY_0056);
}
IL_0046:
{
Il2CppObject * L_13 = V_1;
NullCheck(L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_0011;
}
}
IL_0051:
{
IL2CPP_LEAVE(0x68, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
{
Il2CppObject * L_15 = V_1;
V_3 = ((Il2CppObject *)IsInst(L_15, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_16 = V_3;
if (L_16)
{
goto IL_0061;
}
}
IL_0060:
{
IL2CPP_END_FINALLY(86)
}
IL_0061:
{
Il2CppObject * L_17 = V_3;
NullCheck(L_17);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_17);
IL2CPP_END_FINALLY(86)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x6A, IL_006a)
IL2CPP_JUMP_TBL(0x68, IL_0068)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0068:
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_006a:
{
XmlTypeMapElementInfo_t3184170653 * L_18 = V_2;
return L_18;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindTextElement()
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t ListMap_FindTextElement_m1603103273_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * ListMap_FindTextElement_m1603103273 (ListMap_t2001748316 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ListMap_FindTextElement_m1603103273_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfo_t3184170653 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__itemInfo_0();
NullCheck(L_0);
Il2CppObject * L_1 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_1 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_002f;
}
IL_0011:
{
Il2CppObject * L_2 = V_1;
NullCheck(L_2);
Il2CppObject * L_3 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_2);
V_0 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = XmlTypeMapElementInfo_get_IsTextElement_m554063468(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002f;
}
}
IL_0028:
{
XmlTypeMapElementInfo_t3184170653 * L_6 = V_0;
V_2 = L_6;
IL2CPP_LEAVE(0x53, FINALLY_003f);
}
IL_002f:
{
Il2CppObject * L_7 = V_1;
NullCheck(L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0011;
}
}
IL_003a:
{
IL2CPP_LEAVE(0x51, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
Il2CppObject * L_9 = V_1;
V_3 = ((Il2CppObject *)IsInst(L_9, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_10 = V_3;
if (L_10)
{
goto IL_004a;
}
}
IL_0049:
{
IL2CPP_END_FINALLY(63)
}
IL_004a:
{
Il2CppObject * L_11 = V_3;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_11);
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x53, IL_0053)
IL2CPP_JUMP_TBL(0x51, IL_0051)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0051:
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_0053:
{
XmlTypeMapElementInfo_t3184170653 * L_12 = V_2;
return L_12;
}
}
// System.Void System.Xml.Serialization.ListMap::GetArrayType(System.Int32,System.String&,System.String&)
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral91;
extern Il2CppCodeGenString* _stringLiteral93;
extern Il2CppCodeGenString* _stringLiteral2914;
extern const uint32_t ListMap_GetArrayType_m2889209111_MetadataUsageId;
extern "C" void ListMap_GetArrayType_m2889209111 (ListMap_t2001748316 * __this, int32_t ___itemCount, String_t** ___localName, String_t** ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ListMap_GetArrayType_m2889209111_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_1 = NULL;
String_t* V_2 = NULL;
{
int32_t L_0 = ___itemCount;
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_0022;
}
}
{
int32_t L_1 = ___itemCount;
int32_t L_2 = L_1;
Il2CppObject * L_3 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_2);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = String_Concat_m2809334143(NULL /*static, unused*/, _stringLiteral91, L_3, _stringLiteral93, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0028;
}
IL_0022:
{
V_0 = _stringLiteral2914;
}
IL_0028:
{
XmlTypeMapElementInfoList_t3690603483 * L_5 = __this->get__itemInfo_0();
NullCheck(L_5);
Il2CppObject * L_6 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, 0);
V_1 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_6, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_7 = V_1;
NullCheck(L_7);
TypeData_t3837952962 * L_8 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
int32_t L_9 = TypeData_get_SchemaType_m1693934194(L_8, /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_0072;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_10 = V_1;
NullCheck(L_10);
XmlTypeMapping_t988104027 * L_11 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
ObjectMap_t669501211 * L_12 = XmlMapping_get_ObjectMap_m3032707184(L_11, /*hidden argument*/NULL);
String_t** L_13 = ___ns;
NullCheck(((ListMap_t2001748316 *)CastclassClass(L_12, ListMap_t2001748316_il2cpp_TypeInfo_var)));
ListMap_GetArrayType_m2889209111(((ListMap_t2001748316 *)CastclassClass(L_12, ListMap_t2001748316_il2cpp_TypeInfo_var)), (-1), (&V_2), L_13, /*hidden argument*/NULL);
String_t** L_14 = ___localName;
String_t* L_15 = V_2;
String_t* L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_17 = String_Concat_m138640077(NULL /*static, unused*/, L_15, L_16, /*hidden argument*/NULL);
*((Il2CppObject **)(L_14)) = (Il2CppObject *)L_17;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_14), (Il2CppObject *)L_17);
goto IL_00bd;
}
IL_0072:
{
XmlTypeMapElementInfo_t3184170653 * L_18 = V_1;
NullCheck(L_18);
XmlTypeMapping_t988104027 * L_19 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00a2;
}
}
{
String_t** L_20 = ___localName;
XmlTypeMapElementInfo_t3184170653 * L_21 = V_1;
NullCheck(L_21);
XmlTypeMapping_t988104027 * L_22 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_21, /*hidden argument*/NULL);
NullCheck(L_22);
String_t* L_23 = XmlTypeMapping_get_XmlType_m1769290969(L_22, /*hidden argument*/NULL);
String_t* L_24 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_25 = String_Concat_m138640077(NULL /*static, unused*/, L_23, L_24, /*hidden argument*/NULL);
*((Il2CppObject **)(L_20)) = (Il2CppObject *)L_25;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_20), (Il2CppObject *)L_25);
String_t** L_26 = ___ns;
XmlTypeMapElementInfo_t3184170653 * L_27 = V_1;
NullCheck(L_27);
XmlTypeMapping_t988104027 * L_28 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_27, /*hidden argument*/NULL);
NullCheck(L_28);
String_t* L_29 = XmlMapping_get_Namespace_m4151275177(L_28, /*hidden argument*/NULL);
*((Il2CppObject **)(L_26)) = (Il2CppObject *)L_29;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_26), (Il2CppObject *)L_29);
goto IL_00bd;
}
IL_00a2:
{
String_t** L_30 = ___localName;
XmlTypeMapElementInfo_t3184170653 * L_31 = V_1;
NullCheck(L_31);
TypeData_t3837952962 * L_32 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
String_t* L_33 = TypeData_get_XmlType_m3918246226(L_32, /*hidden argument*/NULL);
String_t* L_34 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_35 = String_Concat_m138640077(NULL /*static, unused*/, L_33, L_34, /*hidden argument*/NULL);
*((Il2CppObject **)(L_30)) = (Il2CppObject *)L_35;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_30), (Il2CppObject *)L_35);
String_t** L_36 = ___ns;
XmlTypeMapElementInfo_t3184170653 * L_37 = V_1;
NullCheck(L_37);
String_t* L_38 = XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611(L_37, /*hidden argument*/NULL);
*((Il2CppObject **)(L_36)) = (Il2CppObject *)L_38;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_36), (Il2CppObject *)L_38);
}
IL_00bd:
{
return;
}
}
// System.Boolean System.Xml.Serialization.ListMap::Equals(System.Object)
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern const uint32_t ListMap_Equals_m2333461444_MetadataUsageId;
extern "C" bool ListMap_Equals_m2333461444 (ListMap_t2001748316 * __this, Il2CppObject * ___other, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ListMap_Equals_m2333461444_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ListMap_t2001748316 * V_0 = NULL;
int32_t V_1 = 0;
{
Il2CppObject * L_0 = ___other;
V_0 = ((ListMap_t2001748316 *)IsInstClass(L_0, ListMap_t2001748316_il2cpp_TypeInfo_var));
ListMap_t2001748316 * L_1 = V_0;
if (L_1)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
XmlTypeMapElementInfoList_t3690603483 * L_2 = __this->get__itemInfo_0();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
ListMap_t2001748316 * L_4 = V_0;
NullCheck(L_4);
XmlTypeMapElementInfoList_t3690603483 * L_5 = L_4->get__itemInfo_0();
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_5);
if ((((int32_t)L_3) == ((int32_t)L_6)))
{
goto IL_002c;
}
}
{
return (bool)0;
}
IL_002c:
{
V_1 = 0;
goto IL_005b;
}
IL_0033:
{
XmlTypeMapElementInfoList_t3690603483 * L_7 = __this->get__itemInfo_0();
int32_t L_8 = V_1;
NullCheck(L_7);
Il2CppObject * L_9 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_7, L_8);
ListMap_t2001748316 * L_10 = V_0;
NullCheck(L_10);
XmlTypeMapElementInfoList_t3690603483 * L_11 = L_10->get__itemInfo_0();
int32_t L_12 = V_1;
NullCheck(L_11);
Il2CppObject * L_13 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_11, L_12);
NullCheck(L_9);
bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_13);
if (L_14)
{
goto IL_0057;
}
}
{
return (bool)0;
}
IL_0057:
{
int32_t L_15 = V_1;
V_1 = ((int32_t)((int32_t)L_15+(int32_t)1));
}
IL_005b:
{
int32_t L_16 = V_1;
XmlTypeMapElementInfoList_t3690603483 * L_17 = __this->get__itemInfo_0();
NullCheck(L_17);
int32_t L_18 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_0033;
}
}
{
return (bool)1;
}
}
// System.Int32 System.Xml.Serialization.ListMap::GetHashCode()
extern "C" int32_t ListMap_GetHashCode_m70947944 (ListMap_t2001748316 * __this, const MethodInfo* method)
{
{
int32_t L_0 = Object_GetHashCode_m500842593(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Xml.Serialization.ObjectMap::.ctor()
extern "C" void ObjectMap__ctor_m946545596 (ObjectMap_t669501211 * __this, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.ReflectionHelper::.ctor()
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t ReflectionHelper__ctor_m3125697524_MetadataUsageId;
extern "C" void ReflectionHelper__ctor_m3125697524 (ReflectionHelper_t3225254263 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper__ctor_m3125697524_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
__this->set__clrTypes_0(L_0);
Hashtable_t3875263730 * L_1 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_1, /*hidden argument*/NULL);
__this->set__schemaTypes_1(L_1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.ReflectionHelper::.cctor()
extern TypeInfo* ParameterModifierU5BU5D_t3379147067_il2cpp_TypeInfo_var;
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern const uint32_t ReflectionHelper__cctor_m1925246521_MetadataUsageId;
extern "C" void ReflectionHelper__cctor_m1925246521 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper__cctor_m1925246521_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
((ReflectionHelper_t3225254263_StaticFields*)ReflectionHelper_t3225254263_il2cpp_TypeInfo_var->static_fields)->set_empty_modifiers_2(((ParameterModifierU5BU5D_t3379147067*)SZArrayNew(ParameterModifierU5BU5D_t3379147067_il2cpp_TypeInfo_var, (uint32_t)0)));
return;
}
}
// System.Void System.Xml.Serialization.ReflectionHelper::RegisterSchemaType(System.Xml.Serialization.XmlTypeMapping,System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral47;
extern const uint32_t ReflectionHelper_RegisterSchemaType_m2450491211_MetadataUsageId;
extern "C" void ReflectionHelper_RegisterSchemaType_m2450491211 (ReflectionHelper_t3225254263 * __this, XmlTypeMapping_t988104027 * ___map, String_t* ___xmlType, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper_RegisterSchemaType_m2450491211_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___xmlType;
String_t* L_1 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = String_Concat_m1825781833(NULL /*static, unused*/, L_0, _stringLiteral47, L_1, /*hidden argument*/NULL);
V_0 = L_2;
Hashtable_t3875263730 * L_3 = __this->get__schemaTypes_1();
String_t* L_4 = V_0;
NullCheck(L_3);
bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_3, L_4);
if (L_5)
{
goto IL_002b;
}
}
{
Hashtable_t3875263730 * L_6 = __this->get__schemaTypes_1();
String_t* L_7 = V_0;
XmlTypeMapping_t988104027 * L_8 = ___map;
NullCheck(L_6);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8);
}
IL_002b:
{
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredSchemaType(System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral47;
extern const uint32_t ReflectionHelper_GetRegisteredSchemaType_m1200109303_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * ReflectionHelper_GetRegisteredSchemaType_m1200109303 (ReflectionHelper_t3225254263 * __this, String_t* ___xmlType, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper_GetRegisteredSchemaType_m1200109303_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___xmlType;
String_t* L_1 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = String_Concat_m1825781833(NULL /*static, unused*/, L_0, _stringLiteral47, L_1, /*hidden argument*/NULL);
V_0 = L_2;
Hashtable_t3875263730 * L_3 = __this->get__schemaTypes_1();
String_t* L_4 = V_0;
NullCheck(L_3);
Il2CppObject * L_5 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4);
return ((XmlTypeMapping_t988104027 *)IsInstClass(L_5, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
}
}
// System.Void System.Xml.Serialization.ReflectionHelper::RegisterClrType(System.Xml.Serialization.XmlTypeMapping,System.Type,System.String)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral47;
extern const uint32_t ReflectionHelper_RegisterClrType_m131744798_MetadataUsageId;
extern "C" void ReflectionHelper_RegisterClrType_m131744798 (ReflectionHelper_t3225254263 * __this, XmlTypeMapping_t988104027 * ___map, Type_t * ___type, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper_RegisterClrType_m131744798_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1))))
{
goto IL_0017;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
___ns = L_2;
}
IL_0017:
{
Type_t * L_3 = ___type;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_3);
String_t* L_5 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_6 = String_Concat_m1825781833(NULL /*static, unused*/, L_4, _stringLiteral47, L_5, /*hidden argument*/NULL);
V_0 = L_6;
Hashtable_t3875263730 * L_7 = __this->get__clrTypes_0();
String_t* L_8 = V_0;
NullCheck(L_7);
bool L_9 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_8);
if (L_9)
{
goto IL_0047;
}
}
{
Hashtable_t3875263730 * L_10 = __this->get__clrTypes_0();
String_t* L_11 = V_0;
XmlTypeMapping_t988104027 * L_12 = ___map;
NullCheck(L_10);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_10, L_11, L_12);
}
IL_0047:
{
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.ReflectionHelper::GetRegisteredClrType(System.Type,System.String)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral47;
extern const uint32_t ReflectionHelper_GetRegisteredClrType_m3155313564_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * ReflectionHelper_GetRegisteredClrType_m3155313564 (ReflectionHelper_t3225254263 * __this, Type_t * ___type, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper_GetRegisteredClrType_m3155313564_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1))))
{
goto IL_0017;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
___ns = L_2;
}
IL_0017:
{
Type_t * L_3 = ___type;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_3);
String_t* L_5 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_6 = String_Concat_m1825781833(NULL /*static, unused*/, L_4, _stringLiteral47, L_5, /*hidden argument*/NULL);
V_0 = L_6;
Hashtable_t3875263730 * L_7 = __this->get__clrTypes_0();
String_t* L_8 = V_0;
NullCheck(L_7);
Il2CppObject * L_9 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
return ((XmlTypeMapping_t988104027 *)IsInstClass(L_9, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
}
}
// System.Void System.Xml.Serialization.ReflectionHelper::CheckSerializableType(System.Type,System.Boolean)
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1081891076;
extern Il2CppCodeGenString* _stringLiteral509779965;
extern Il2CppCodeGenString* _stringLiteral929041180;
extern const uint32_t ReflectionHelper_CheckSerializableType_m1100022263_MetadataUsageId;
extern "C" void ReflectionHelper_CheckSerializableType_m1100022263 (Il2CppObject * __this /* static, unused */, Type_t * ___type, bool ___allowPrivateConstructors, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (ReflectionHelper_CheckSerializableType_m1100022263_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
Type_t * V_1 = NULL;
{
Type_t * L_0 = ___type;
NullCheck(L_0);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_0);
if (!L_1)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
bool L_2 = ___allowPrivateConstructors;
if (L_2)
{
goto IL_0056;
}
}
{
Type_t * L_3 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3431720054* L_4 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3();
IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ParameterModifierU5BU5D_t3379147067* L_5 = ((ReflectionHelper_t3225254263_StaticFields*)ReflectionHelper_t3225254263_il2cpp_TypeInfo_var->static_fields)->get_empty_modifiers_2();
NullCheck(L_3);
ConstructorInfo_t3542137334 * L_6 = VirtFuncInvoker4< ConstructorInfo_t3542137334 *, int32_t, Binder_t4180926488 *, TypeU5BU5D_t3431720054*, ParameterModifierU5BU5D_t3379147067* >::Invoke(79 /* System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) */, L_3, ((int32_t)52), (Binder_t4180926488 *)NULL, L_4, L_5);
if (L_6)
{
goto IL_0056;
}
}
{
Type_t * L_7 = ___type;
NullCheck(L_7);
bool L_8 = VirtFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Type::get_IsAbstract() */, L_7);
if (L_8)
{
goto IL_0056;
}
}
{
Type_t * L_9 = ___type;
NullCheck(L_9);
bool L_10 = VirtFuncInvoker0< bool >::Invoke(36 /* System.Boolean System.Type::get_IsValueType() */, L_9);
if (L_10)
{
goto IL_0056;
}
}
{
Type_t * L_11 = ___type;
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_11);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_13 = String_Concat_m138640077(NULL /*static, unused*/, L_12, _stringLiteral1081891076, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_14 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14);
}
IL_0056:
{
Type_t * L_15 = ___type;
NullCheck(L_15);
bool L_16 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Type::get_IsInterface() */, L_15);
if (!L_16)
{
goto IL_0087;
}
}
{
Type_t * L_17 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_18 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_17, /*hidden argument*/NULL);
NullCheck(L_18);
bool L_19 = TypeData_get_IsListType_m1977463454(L_18, /*hidden argument*/NULL);
if (L_19)
{
goto IL_0087;
}
}
{
Type_t * L_20 = ___type;
NullCheck(L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_20);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_22 = String_Concat_m138640077(NULL /*static, unused*/, L_21, _stringLiteral509779965, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_23 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_23, L_22, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23);
}
IL_0087:
{
Type_t * L_24 = ___type;
V_0 = L_24;
V_1 = (Type_t *)NULL;
}
IL_008b:
{
Type_t * L_25 = V_0;
NullCheck(L_25);
bool L_26 = VirtFuncInvoker0< bool >::Invoke(33 /* System.Boolean System.Type::get_IsPublic() */, L_25);
if (L_26)
{
goto IL_00b7;
}
}
{
Type_t * L_27 = V_0;
NullCheck(L_27);
bool L_28 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Type::get_IsNestedPublic() */, L_27);
if (L_28)
{
goto IL_00b7;
}
}
{
Type_t * L_29 = ___type;
NullCheck(L_29);
String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_29);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_31 = String_Concat_m138640077(NULL /*static, unused*/, L_30, _stringLiteral929041180, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_32 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_32, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32);
}
IL_00b7:
{
Type_t * L_33 = V_0;
V_1 = L_33;
Type_t * L_34 = V_0;
NullCheck(L_34);
Type_t * L_35 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Type::get_DeclaringType() */, L_34);
V_0 = L_35;
Type_t * L_36 = V_0;
if (!L_36)
{
goto IL_00cd;
}
}
{
Type_t * L_37 = V_0;
Type_t * L_38 = V_1;
if ((!(((Il2CppObject*)(Type_t *)L_37) == ((Il2CppObject*)(Type_t *)L_38))))
{
goto IL_008b;
}
}
IL_00cd:
{
return;
}
}
// System.Void System.Xml.Serialization.SerializationSource::.ctor(System.String,System.Type[])
extern "C" void SerializationSource__ctor_m3069901541 (SerializationSource_t3475287465 * __this, String_t* ___namspace, TypeU5BU5D_t3431720054* ___includedTypes, const MethodInfo* method)
{
{
__this->set_canBeGenerated_2((bool)1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
String_t* L_0 = ___namspace;
__this->set_namspace_1(L_0);
TypeU5BU5D_t3431720054* L_1 = ___includedTypes;
__this->set_includedTypes_0(L_1);
return;
}
}
// System.Boolean System.Xml.Serialization.SerializationSource::BaseEquals(System.Xml.Serialization.SerializationSource)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t SerializationSource_BaseEquals_m2493678423_MetadataUsageId;
extern "C" bool SerializationSource_BaseEquals_m2493678423 (SerializationSource_t3475287465 * __this, SerializationSource_t3475287465 * ___other, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (SerializationSource_BaseEquals_m2493678423_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = __this->get_namspace_1();
SerializationSource_t3475287465 * L_1 = ___other;
NullCheck(L_1);
String_t* L_2 = L_1->get_namspace_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_3 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0018;
}
}
{
return (bool)0;
}
IL_0018:
{
bool L_4 = __this->get_canBeGenerated_2();
SerializationSource_t3475287465 * L_5 = ___other;
NullCheck(L_5);
bool L_6 = L_5->get_canBeGenerated_2();
if ((((int32_t)L_4) == ((int32_t)L_6)))
{
goto IL_002b;
}
}
{
return (bool)0;
}
IL_002b:
{
TypeU5BU5D_t3431720054* L_7 = __this->get_includedTypes_0();
if (L_7)
{
goto IL_0040;
}
}
{
SerializationSource_t3475287465 * L_8 = ___other;
NullCheck(L_8);
TypeU5BU5D_t3431720054* L_9 = L_8->get_includedTypes_0();
return (bool)((((Il2CppObject*)(TypeU5BU5D_t3431720054*)L_9) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0);
}
IL_0040:
{
SerializationSource_t3475287465 * L_10 = ___other;
NullCheck(L_10);
TypeU5BU5D_t3431720054* L_11 = L_10->get_includedTypes_0();
if (!L_11)
{
goto IL_0060;
}
}
{
TypeU5BU5D_t3431720054* L_12 = __this->get_includedTypes_0();
NullCheck(L_12);
SerializationSource_t3475287465 * L_13 = ___other;
NullCheck(L_13);
TypeU5BU5D_t3431720054* L_14 = L_13->get_includedTypes_0();
NullCheck(L_14);
if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_12)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_14)->max_length)))))))
{
goto IL_0062;
}
}
IL_0060:
{
return (bool)0;
}
IL_0062:
{
V_0 = 0;
goto IL_0089;
}
IL_0069:
{
TypeU5BU5D_t3431720054* L_15 = __this->get_includedTypes_0();
int32_t L_16 = V_0;
NullCheck(L_15);
IL2CPP_ARRAY_BOUNDS_CHECK(L_15, L_16);
int32_t L_17 = L_16;
SerializationSource_t3475287465 * L_18 = ___other;
NullCheck(L_18);
TypeU5BU5D_t3431720054* L_19 = L_18->get_includedTypes_0();
int32_t L_20 = V_0;
NullCheck(L_19);
IL2CPP_ARRAY_BOUNDS_CHECK(L_19, L_20);
int32_t L_21 = L_20;
NullCheck(((L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17))));
bool L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::Equals(System.Type) */, ((L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17))), ((L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21))));
if (L_22)
{
goto IL_0085;
}
}
{
return (bool)0;
}
IL_0085:
{
int32_t L_23 = V_0;
V_0 = ((int32_t)((int32_t)L_23+(int32_t)1));
}
IL_0089:
{
int32_t L_24 = V_0;
TypeU5BU5D_t3431720054* L_25 = __this->get_includedTypes_0();
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_25)->max_length)))))))
{
goto IL_0069;
}
}
{
return (bool)1;
}
}
// System.Boolean System.Xml.Serialization.SerializationSource::get_CanBeGenerated()
extern "C" bool SerializationSource_get_CanBeGenerated_m3613728451 (SerializationSource_t3475287465 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_canBeGenerated_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.SerializationSource::set_CanBeGenerated(System.Boolean)
extern "C" void SerializationSource_set_CanBeGenerated_m3398900326 (SerializationSource_t3475287465 * __this, bool ___value, const MethodInfo* method)
{
{
bool L_0 = ___value;
__this->set_canBeGenerated_2(L_0);
return;
}
}
// System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean)
extern "C" void TypeData__ctor_m338275825 (TypeData_t3837952962 * __this, Type_t * ___type, String_t* ___elementName, bool ___isPrimitive, const MethodInfo* method)
{
{
Type_t * L_0 = ___type;
String_t* L_1 = ___elementName;
bool L_2 = ___isPrimitive;
TypeData__ctor_m420493673(__this, L_0, L_1, L_2, (TypeData_t3837952962 *)NULL, (XmlSchemaPatternFacet_t2687480780 *)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean,System.Xml.Serialization.TypeData,System.Xml.Schema.XmlSchemaPatternFacet)
extern const Il2CppType* IXmlSerializable_t1192716491_0_0_0_var;
extern const Il2CppType* XmlNode_t3592213601_0_0_0_var;
extern const Il2CppType* IEnumerable_t287189635_0_0_0_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral335047816;
extern const uint32_t TypeData__ctor_m420493673_MetadataUsageId;
extern "C" void TypeData__ctor_m420493673 (TypeData_t3837952962 * __this, Type_t * ___type, String_t* ___elementName, bool ___isPrimitive, TypeData_t3837952962 * ___mappedType, XmlSchemaPatternFacet_t2687480780 * ___facet, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData__ctor_m420493673_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * G_B26_0 = NULL;
TypeData_t3837952962 * G_B20_0 = NULL;
TypeData_t3837952962 * G_B24_0 = NULL;
TypeData_t3837952962 * G_B21_0 = NULL;
TypeData_t3837952962 * G_B22_0 = NULL;
TypeData_t3837952962 * G_B23_0 = NULL;
int32_t G_B25_0 = 0;
TypeData_t3837952962 * G_B25_1 = NULL;
int32_t G_B27_0 = 0;
TypeData_t3837952962 * G_B27_1 = NULL;
{
__this->set_hasPublicConstructor_9((bool)1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type;
NullCheck(L_0);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(86 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_0);
if (!L_1)
{
goto IL_0023;
}
}
{
InvalidOperationException_t2420574324 * L_2 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_2, _stringLiteral335047816, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2);
}
IL_0023:
{
TypeData_t3837952962 * L_3 = ___mappedType;
__this->set_mappedType_7(L_3);
XmlSchemaPatternFacet_t2687480780 * L_4 = ___facet;
__this->set_facet_8(L_4);
Type_t * L_5 = ___type;
__this->set_type_0(L_5);
Type_t * L_6 = ___type;
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6);
__this->set_typeName_4(L_7);
Type_t * L_8 = ___type;
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_8);
NullCheck(L_9);
String_t* L_10 = String_Replace_m3369701083(L_9, ((int32_t)43), ((int32_t)46), /*hidden argument*/NULL);
__this->set_fullTypeName_5(L_10);
bool L_11 = ___isPrimitive;
if (!L_11)
{
goto IL_006d;
}
}
{
__this->set_sType_2(1);
goto IL_00f9;
}
IL_006d:
{
Type_t * L_12 = ___type;
NullCheck(L_12);
bool L_13 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Type::get_IsEnum() */, L_12);
if (!L_13)
{
goto IL_0084;
}
}
{
__this->set_sType_2(2);
goto IL_00f9;
}
IL_0084:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(IXmlSerializable_t1192716491_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_15 = ___type;
NullCheck(L_14);
bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_14, L_15);
if (!L_16)
{
goto IL_00a5;
}
}
{
__this->set_sType_2(5);
goto IL_00f9;
}
IL_00a5:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNode_t3592213601_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_18 = ___type;
NullCheck(L_17);
bool L_19 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_17, L_18);
if (!L_19)
{
goto IL_00c6;
}
}
{
__this->set_sType_2(6);
goto IL_00f9;
}
IL_00c6:
{
Type_t * L_20 = ___type;
NullCheck(L_20);
bool L_21 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_20);
if (L_21)
{
goto IL_00e6;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(IEnumerable_t287189635_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_23 = ___type;
NullCheck(L_22);
bool L_24 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_22, L_23);
if (!L_24)
{
goto IL_00f2;
}
}
IL_00e6:
{
__this->set_sType_2(3);
goto IL_00f9;
}
IL_00f2:
{
__this->set_sType_2(4);
}
IL_00f9:
{
bool L_25 = TypeData_get_IsListType_m1977463454(__this, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_011f;
}
}
{
TypeData_t3837952962 * L_26 = TypeData_get_ListItemTypeData_m3943692862(__this, /*hidden argument*/NULL);
NullCheck(L_26);
String_t* L_27 = TypeData_get_XmlType_m3918246226(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
String_t* L_28 = TypeTranslator_GetArrayName_m359787500(NULL /*static, unused*/, L_27, /*hidden argument*/NULL);
__this->set_elementName_1(L_28);
goto IL_0126;
}
IL_011f:
{
String_t* L_29 = ___elementName;
__this->set_elementName_1(L_29);
}
IL_0126:
{
int32_t L_30 = __this->get_sType_2();
if ((((int32_t)L_30) == ((int32_t)3)))
{
goto IL_013e;
}
}
{
int32_t L_31 = __this->get_sType_2();
if ((!(((uint32_t)L_31) == ((uint32_t)4))))
{
goto IL_0181;
}
}
IL_013e:
{
Type_t * L_32 = ___type;
NullCheck(L_32);
bool L_33 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Type::get_IsInterface() */, L_32);
G_B20_0 = __this;
if (L_33)
{
G_B26_0 = __this;
goto IL_017b;
}
}
{
Type_t * L_34 = ___type;
NullCheck(L_34);
bool L_35 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_34);
G_B21_0 = G_B20_0;
if (L_35)
{
G_B24_0 = G_B20_0;
goto IL_0178;
}
}
{
Type_t * L_36 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3431720054* L_37 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3();
NullCheck(L_36);
ConstructorInfo_t3542137334 * L_38 = VirtFuncInvoker1< ConstructorInfo_t3542137334 *, TypeU5BU5D_t3431720054* >::Invoke(78 /* System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) */, L_36, L_37);
G_B22_0 = G_B21_0;
if (L_38)
{
G_B24_0 = G_B21_0;
goto IL_0178;
}
}
{
Type_t * L_39 = ___type;
NullCheck(L_39);
bool L_40 = VirtFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Type::get_IsAbstract() */, L_39);
G_B23_0 = G_B22_0;
if (L_40)
{
G_B24_0 = G_B22_0;
goto IL_0178;
}
}
{
Type_t * L_41 = ___type;
NullCheck(L_41);
bool L_42 = VirtFuncInvoker0< bool >::Invoke(36 /* System.Boolean System.Type::get_IsValueType() */, L_41);
G_B25_0 = ((int32_t)(L_42));
G_B25_1 = G_B23_0;
goto IL_0179;
}
IL_0178:
{
G_B25_0 = 1;
G_B25_1 = G_B24_0;
}
IL_0179:
{
G_B27_0 = G_B25_0;
G_B27_1 = G_B25_1;
goto IL_017c;
}
IL_017b:
{
G_B27_0 = 0;
G_B27_1 = G_B26_0;
}
IL_017c:
{
NullCheck(G_B27_1);
G_B27_1->set_hasPublicConstructor_9((bool)G_B27_0);
}
IL_0181:
{
return;
}
}
// System.Void System.Xml.Serialization.TypeData::.cctor()
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1732898850;
extern Il2CppCodeGenString* _stringLiteral96891546;
extern Il2CppCodeGenString* _stringLiteral108960;
extern Il2CppCodeGenString* _stringLiteral3402992597;
extern Il2CppCodeGenString* _stringLiteral3122;
extern Il2CppCodeGenString* _stringLiteral2365875764;
extern Il2CppCodeGenString* _stringLiteral3392903;
extern Il2CppCodeGenString* _stringLiteral3405494068;
extern Il2CppCodeGenString* _stringLiteral3016401;
extern Il2CppCodeGenString* _stringLiteral3005923232;
extern Il2CppCodeGenString* _stringLiteral3559070;
extern Il2CppCodeGenString* _stringLiteral97196323;
extern Il2CppCodeGenString* _stringLiteral3794413732;
extern Il2CppCodeGenString* _stringLiteral110339814;
extern Il2CppCodeGenString* _stringLiteral94001407;
extern Il2CppCodeGenString* _stringLiteral3441707395;
extern Il2CppCodeGenString* _stringLiteral110414;
extern Il2CppCodeGenString* _stringLiteral3569038;
extern Il2CppCodeGenString* _stringLiteral97445748;
extern Il2CppCodeGenString* _stringLiteral529996748;
extern Il2CppCodeGenString* _stringLiteral115131;
extern Il2CppCodeGenString* _stringLiteral3046192;
extern Il2CppCodeGenString* _stringLiteral3299539334;
extern Il2CppCodeGenString* _stringLiteral3436164753;
extern Il2CppCodeGenString* _stringLiteral94432955;
extern Il2CppCodeGenString* _stringLiteral101577;
extern Il2CppCodeGenString* _stringLiteral3980469635;
extern Il2CppCodeGenString* _stringLiteral3617284682;
extern Il2CppCodeGenString* _stringLiteral3686427566;
extern Il2CppCodeGenString* _stringLiteral742313895;
extern Il2CppCodeGenString* _stringLiteral3178851;
extern Il2CppCodeGenString* _stringLiteral3317543529;
extern Il2CppCodeGenString* _stringLiteral2454115054;
extern Il2CppCodeGenString* _stringLiteral94742904;
extern Il2CppCodeGenString* _stringLiteral3357;
extern Il2CppCodeGenString* _stringLiteral3428236866;
extern Il2CppCodeGenString* _stringLiteral3454720422;
extern Il2CppCodeGenString* _stringLiteral94844771;
extern Il2CppCodeGenString* _stringLiteral3869543909;
extern Il2CppCodeGenString* _stringLiteral112787;
extern Il2CppCodeGenString* _stringLiteral3727764647;
extern Il2CppCodeGenString* _stringLiteral3365;
extern Il2CppCodeGenString* _stringLiteral3360570672;
extern Il2CppCodeGenString* _stringLiteral111582340;
extern Il2CppCodeGenString* _stringLiteral466165515;
extern Il2CppCodeGenString* _stringLiteral1544803905;
extern Il2CppCodeGenString* _stringLiteral502623545;
extern Il2CppCodeGenString* _stringLiteral3388624732;
extern Il2CppCodeGenString* _stringLiteral2406940060;
extern Il2CppCodeGenString* _stringLiteral819322245;
extern Il2CppCodeGenString* _stringLiteral570410685;
extern Il2CppCodeGenString* _stringLiteral3211;
extern Il2CppCodeGenString* _stringLiteral3370;
extern Il2CppCodeGenString* _stringLiteral3393057176;
extern Il2CppCodeGenString* _stringLiteral113101617;
extern Il2CppCodeGenString* _stringLiteral3327275;
extern Il2CppCodeGenString* _stringLiteral2038117805;
extern Il2CppCodeGenString* _stringLiteral3116345;
extern Il2CppCodeGenString* _stringLiteral3402485358;
extern Il2CppCodeGenString* _stringLiteral3118337;
extern Il2CppCodeGenString* _stringLiteral1252218203;
extern Il2CppCodeGenString* _stringLiteral3271598911;
extern Il2CppCodeGenString* _stringLiteral3029738;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral3589978;
extern Il2CppCodeGenString* _stringLiteral3052374;
extern Il2CppCodeGenString* _stringLiteral111379569;
extern Il2CppCodeGenString* _stringLiteral3459024167;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral109244411;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral3402981393;
extern Il2CppCodeGenString* _stringLiteral3625364;
extern Il2CppCodeGenString* _stringLiteral3502033281;
extern Il2CppCodeGenString* _stringLiteral114974605;
extern Il2CppCodeGenString* _stringLiteral113097959;
extern const uint32_t TypeData__cctor_m1141656772_MetadataUsageId;
extern "C" void TypeData__cctor_m1141656772 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData__cctor_m1141656772_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringU5BU5D_t2956870243* L_0 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)((int32_t)80)));
NullCheck(L_0);
IL2CPP_ARRAY_BOUNDS_CHECK(L_0, 0);
ArrayElementTypeCheck (L_0, _stringLiteral1732898850);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1732898850);
StringU5BU5D_t2956870243* L_1 = L_0;
NullCheck(L_1);
IL2CPP_ARRAY_BOUNDS_CHECK(L_1, 1);
ArrayElementTypeCheck (L_1, _stringLiteral96891546);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral96891546);
StringU5BU5D_t2956870243* L_2 = L_1;
NullCheck(L_2);
IL2CPP_ARRAY_BOUNDS_CHECK(L_2, 2);
ArrayElementTypeCheck (L_2, _stringLiteral108960);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral108960);
StringU5BU5D_t2956870243* L_3 = L_2;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, 3);
ArrayElementTypeCheck (L_3, _stringLiteral3402992597);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral3402992597);
StringU5BU5D_t2956870243* L_4 = L_3;
NullCheck(L_4);
IL2CPP_ARRAY_BOUNDS_CHECK(L_4, 4);
ArrayElementTypeCheck (L_4, _stringLiteral3122);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3122);
StringU5BU5D_t2956870243* L_5 = L_4;
NullCheck(L_5);
IL2CPP_ARRAY_BOUNDS_CHECK(L_5, 5);
ArrayElementTypeCheck (L_5, _stringLiteral2365875764);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral2365875764);
StringU5BU5D_t2956870243* L_6 = L_5;
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 6);
ArrayElementTypeCheck (L_6, _stringLiteral3392903);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral3392903);
StringU5BU5D_t2956870243* L_7 = L_6;
NullCheck(L_7);
IL2CPP_ARRAY_BOUNDS_CHECK(L_7, 7);
ArrayElementTypeCheck (L_7, _stringLiteral3405494068);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral3405494068);
StringU5BU5D_t2956870243* L_8 = L_7;
NullCheck(L_8);
IL2CPP_ARRAY_BOUNDS_CHECK(L_8, 8);
ArrayElementTypeCheck (L_8, _stringLiteral3016401);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral3016401);
StringU5BU5D_t2956870243* L_9 = L_8;
NullCheck(L_9);
IL2CPP_ARRAY_BOUNDS_CHECK(L_9, ((int32_t)9));
ArrayElementTypeCheck (L_9, _stringLiteral3005923232);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral3005923232);
StringU5BU5D_t2956870243* L_10 = L_9;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, ((int32_t)10));
ArrayElementTypeCheck (L_10, _stringLiteral3559070);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral3559070);
StringU5BU5D_t2956870243* L_11 = L_10;
NullCheck(L_11);
IL2CPP_ARRAY_BOUNDS_CHECK(L_11, ((int32_t)11));
ArrayElementTypeCheck (L_11, _stringLiteral97196323);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral97196323);
StringU5BU5D_t2956870243* L_12 = L_11;
NullCheck(L_12);
IL2CPP_ARRAY_BOUNDS_CHECK(L_12, ((int32_t)12));
ArrayElementTypeCheck (L_12, _stringLiteral3794413732);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral3794413732);
StringU5BU5D_t2956870243* L_13 = L_12;
NullCheck(L_13);
IL2CPP_ARRAY_BOUNDS_CHECK(L_13, ((int32_t)13));
ArrayElementTypeCheck (L_13, _stringLiteral110339814);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral110339814);
StringU5BU5D_t2956870243* L_14 = L_13;
NullCheck(L_14);
IL2CPP_ARRAY_BOUNDS_CHECK(L_14, ((int32_t)14));
ArrayElementTypeCheck (L_14, _stringLiteral94001407);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral94001407);
StringU5BU5D_t2956870243* L_15 = L_14;
NullCheck(L_15);
IL2CPP_ARRAY_BOUNDS_CHECK(L_15, ((int32_t)15));
ArrayElementTypeCheck (L_15, _stringLiteral3441707395);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteral3441707395);
StringU5BU5D_t2956870243* L_16 = L_15;
NullCheck(L_16);
IL2CPP_ARRAY_BOUNDS_CHECK(L_16, ((int32_t)16));
ArrayElementTypeCheck (L_16, _stringLiteral110414);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral110414);
StringU5BU5D_t2956870243* L_17 = L_16;
NullCheck(L_17);
IL2CPP_ARRAY_BOUNDS_CHECK(L_17, ((int32_t)17));
ArrayElementTypeCheck (L_17, _stringLiteral3569038);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)_stringLiteral3569038);
StringU5BU5D_t2956870243* L_18 = L_17;
NullCheck(L_18);
IL2CPP_ARRAY_BOUNDS_CHECK(L_18, ((int32_t)18));
ArrayElementTypeCheck (L_18, _stringLiteral97445748);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteral97445748);
StringU5BU5D_t2956870243* L_19 = L_18;
NullCheck(L_19);
IL2CPP_ARRAY_BOUNDS_CHECK(L_19, ((int32_t)19));
ArrayElementTypeCheck (L_19, _stringLiteral529996748);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (String_t*)_stringLiteral529996748);
StringU5BU5D_t2956870243* L_20 = L_19;
NullCheck(L_20);
IL2CPP_ARRAY_BOUNDS_CHECK(L_20, ((int32_t)20));
ArrayElementTypeCheck (L_20, _stringLiteral115131);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (String_t*)_stringLiteral115131);
StringU5BU5D_t2956870243* L_21 = L_20;
NullCheck(L_21);
IL2CPP_ARRAY_BOUNDS_CHECK(L_21, ((int32_t)21));
ArrayElementTypeCheck (L_21, _stringLiteral3046192);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (String_t*)_stringLiteral3046192);
StringU5BU5D_t2956870243* L_22 = L_21;
NullCheck(L_22);
IL2CPP_ARRAY_BOUNDS_CHECK(L_22, ((int32_t)22));
ArrayElementTypeCheck (L_22, _stringLiteral3299539334);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (String_t*)_stringLiteral3299539334);
StringU5BU5D_t2956870243* L_23 = L_22;
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, ((int32_t)23));
ArrayElementTypeCheck (L_23, _stringLiteral3436164753);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (String_t*)_stringLiteral3436164753);
StringU5BU5D_t2956870243* L_24 = L_23;
NullCheck(L_24);
IL2CPP_ARRAY_BOUNDS_CHECK(L_24, ((int32_t)24));
ArrayElementTypeCheck (L_24, _stringLiteral94432955);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (String_t*)_stringLiteral94432955);
StringU5BU5D_t2956870243* L_25 = L_24;
NullCheck(L_25);
IL2CPP_ARRAY_BOUNDS_CHECK(L_25, ((int32_t)25));
ArrayElementTypeCheck (L_25, _stringLiteral101577);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (String_t*)_stringLiteral101577);
StringU5BU5D_t2956870243* L_26 = L_25;
NullCheck(L_26);
IL2CPP_ARRAY_BOUNDS_CHECK(L_26, ((int32_t)26));
ArrayElementTypeCheck (L_26, _stringLiteral3980469635);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (String_t*)_stringLiteral3980469635);
StringU5BU5D_t2956870243* L_27 = L_26;
NullCheck(L_27);
IL2CPP_ARRAY_BOUNDS_CHECK(L_27, ((int32_t)27));
ArrayElementTypeCheck (L_27, _stringLiteral3617284682);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (String_t*)_stringLiteral3617284682);
StringU5BU5D_t2956870243* L_28 = L_27;
NullCheck(L_28);
IL2CPP_ARRAY_BOUNDS_CHECK(L_28, ((int32_t)28));
ArrayElementTypeCheck (L_28, _stringLiteral3686427566);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (String_t*)_stringLiteral3686427566);
StringU5BU5D_t2956870243* L_29 = L_28;
NullCheck(L_29);
IL2CPP_ARRAY_BOUNDS_CHECK(L_29, ((int32_t)29));
ArrayElementTypeCheck (L_29, _stringLiteral742313895);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (String_t*)_stringLiteral742313895);
StringU5BU5D_t2956870243* L_30 = L_29;
NullCheck(L_30);
IL2CPP_ARRAY_BOUNDS_CHECK(L_30, ((int32_t)30));
ArrayElementTypeCheck (L_30, _stringLiteral3178851);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (String_t*)_stringLiteral3178851);
StringU5BU5D_t2956870243* L_31 = L_30;
NullCheck(L_31);
IL2CPP_ARRAY_BOUNDS_CHECK(L_31, ((int32_t)31));
ArrayElementTypeCheck (L_31, _stringLiteral3317543529);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (String_t*)_stringLiteral3317543529);
StringU5BU5D_t2956870243* L_32 = L_31;
NullCheck(L_32);
IL2CPP_ARRAY_BOUNDS_CHECK(L_32, ((int32_t)32));
ArrayElementTypeCheck (L_32, _stringLiteral2454115054);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (String_t*)_stringLiteral2454115054);
StringU5BU5D_t2956870243* L_33 = L_32;
NullCheck(L_33);
IL2CPP_ARRAY_BOUNDS_CHECK(L_33, ((int32_t)33));
ArrayElementTypeCheck (L_33, _stringLiteral94742904);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (String_t*)_stringLiteral94742904);
StringU5BU5D_t2956870243* L_34 = L_33;
NullCheck(L_34);
IL2CPP_ARRAY_BOUNDS_CHECK(L_34, ((int32_t)34));
ArrayElementTypeCheck (L_34, _stringLiteral3357);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (String_t*)_stringLiteral3357);
StringU5BU5D_t2956870243* L_35 = L_34;
NullCheck(L_35);
IL2CPP_ARRAY_BOUNDS_CHECK(L_35, ((int32_t)35));
ArrayElementTypeCheck (L_35, _stringLiteral3428236866);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (String_t*)_stringLiteral3428236866);
StringU5BU5D_t2956870243* L_36 = L_35;
NullCheck(L_36);
IL2CPP_ARRAY_BOUNDS_CHECK(L_36, ((int32_t)36));
ArrayElementTypeCheck (L_36, _stringLiteral3454720422);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (String_t*)_stringLiteral3454720422);
StringU5BU5D_t2956870243* L_37 = L_36;
NullCheck(L_37);
IL2CPP_ARRAY_BOUNDS_CHECK(L_37, ((int32_t)37));
ArrayElementTypeCheck (L_37, _stringLiteral94844771);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (String_t*)_stringLiteral94844771);
StringU5BU5D_t2956870243* L_38 = L_37;
NullCheck(L_38);
IL2CPP_ARRAY_BOUNDS_CHECK(L_38, ((int32_t)38));
ArrayElementTypeCheck (L_38, _stringLiteral3869543909);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (String_t*)_stringLiteral3869543909);
StringU5BU5D_t2956870243* L_39 = L_38;
NullCheck(L_39);
IL2CPP_ARRAY_BOUNDS_CHECK(L_39, ((int32_t)39));
ArrayElementTypeCheck (L_39, _stringLiteral112787);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (String_t*)_stringLiteral112787);
StringU5BU5D_t2956870243* L_40 = L_39;
NullCheck(L_40);
IL2CPP_ARRAY_BOUNDS_CHECK(L_40, ((int32_t)40));
ArrayElementTypeCheck (L_40, _stringLiteral3727764647);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (String_t*)_stringLiteral3727764647);
StringU5BU5D_t2956870243* L_41 = L_40;
NullCheck(L_41);
IL2CPP_ARRAY_BOUNDS_CHECK(L_41, ((int32_t)41));
ArrayElementTypeCheck (L_41, _stringLiteral3365);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (String_t*)_stringLiteral3365);
StringU5BU5D_t2956870243* L_42 = L_41;
NullCheck(L_42);
IL2CPP_ARRAY_BOUNDS_CHECK(L_42, ((int32_t)42));
ArrayElementTypeCheck (L_42, _stringLiteral3360570672);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (String_t*)_stringLiteral3360570672);
StringU5BU5D_t2956870243* L_43 = L_42;
NullCheck(L_43);
IL2CPP_ARRAY_BOUNDS_CHECK(L_43, ((int32_t)43));
ArrayElementTypeCheck (L_43, _stringLiteral111582340);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (String_t*)_stringLiteral111582340);
StringU5BU5D_t2956870243* L_44 = L_43;
NullCheck(L_44);
IL2CPP_ARRAY_BOUNDS_CHECK(L_44, ((int32_t)44));
ArrayElementTypeCheck (L_44, _stringLiteral466165515);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (String_t*)_stringLiteral466165515);
StringU5BU5D_t2956870243* L_45 = L_44;
NullCheck(L_45);
IL2CPP_ARRAY_BOUNDS_CHECK(L_45, ((int32_t)45));
ArrayElementTypeCheck (L_45, _stringLiteral1544803905);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (String_t*)_stringLiteral1544803905);
StringU5BU5D_t2956870243* L_46 = L_45;
NullCheck(L_46);
IL2CPP_ARRAY_BOUNDS_CHECK(L_46, ((int32_t)46));
ArrayElementTypeCheck (L_46, _stringLiteral502623545);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (String_t*)_stringLiteral502623545);
StringU5BU5D_t2956870243* L_47 = L_46;
NullCheck(L_47);
IL2CPP_ARRAY_BOUNDS_CHECK(L_47, ((int32_t)47));
ArrayElementTypeCheck (L_47, _stringLiteral3388624732);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (String_t*)_stringLiteral3388624732);
StringU5BU5D_t2956870243* L_48 = L_47;
NullCheck(L_48);
IL2CPP_ARRAY_BOUNDS_CHECK(L_48, ((int32_t)48));
ArrayElementTypeCheck (L_48, _stringLiteral2406940060);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (String_t*)_stringLiteral2406940060);
StringU5BU5D_t2956870243* L_49 = L_48;
NullCheck(L_49);
IL2CPP_ARRAY_BOUNDS_CHECK(L_49, ((int32_t)49));
ArrayElementTypeCheck (L_49, _stringLiteral819322245);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (String_t*)_stringLiteral819322245);
StringU5BU5D_t2956870243* L_50 = L_49;
NullCheck(L_50);
IL2CPP_ARRAY_BOUNDS_CHECK(L_50, ((int32_t)50));
ArrayElementTypeCheck (L_50, _stringLiteral570410685);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (String_t*)_stringLiteral570410685);
StringU5BU5D_t2956870243* L_51 = L_50;
NullCheck(L_51);
IL2CPP_ARRAY_BOUNDS_CHECK(L_51, ((int32_t)51));
ArrayElementTypeCheck (L_51, _stringLiteral3211);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (String_t*)_stringLiteral3211);
StringU5BU5D_t2956870243* L_52 = L_51;
NullCheck(L_52);
IL2CPP_ARRAY_BOUNDS_CHECK(L_52, ((int32_t)52));
ArrayElementTypeCheck (L_52, _stringLiteral3370);
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)52)), (String_t*)_stringLiteral3370);
StringU5BU5D_t2956870243* L_53 = L_52;
NullCheck(L_53);
IL2CPP_ARRAY_BOUNDS_CHECK(L_53, ((int32_t)53));
ArrayElementTypeCheck (L_53, _stringLiteral3393057176);
(L_53)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)53)), (String_t*)_stringLiteral3393057176);
StringU5BU5D_t2956870243* L_54 = L_53;
NullCheck(L_54);
IL2CPP_ARRAY_BOUNDS_CHECK(L_54, ((int32_t)54));
ArrayElementTypeCheck (L_54, _stringLiteral113101617);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)54)), (String_t*)_stringLiteral113101617);
StringU5BU5D_t2956870243* L_55 = L_54;
NullCheck(L_55);
IL2CPP_ARRAY_BOUNDS_CHECK(L_55, ((int32_t)55));
ArrayElementTypeCheck (L_55, _stringLiteral3327275);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)55)), (String_t*)_stringLiteral3327275);
StringU5BU5D_t2956870243* L_56 = L_55;
NullCheck(L_56);
IL2CPP_ARRAY_BOUNDS_CHECK(L_56, ((int32_t)56));
ArrayElementTypeCheck (L_56, _stringLiteral2038117805);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (String_t*)_stringLiteral2038117805);
StringU5BU5D_t2956870243* L_57 = L_56;
NullCheck(L_57);
IL2CPP_ARRAY_BOUNDS_CHECK(L_57, ((int32_t)57));
ArrayElementTypeCheck (L_57, _stringLiteral3116345);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (String_t*)_stringLiteral3116345);
StringU5BU5D_t2956870243* L_58 = L_57;
NullCheck(L_58);
IL2CPP_ARRAY_BOUNDS_CHECK(L_58, ((int32_t)58));
ArrayElementTypeCheck (L_58, _stringLiteral3402485358);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)58)), (String_t*)_stringLiteral3402485358);
StringU5BU5D_t2956870243* L_59 = L_58;
NullCheck(L_59);
IL2CPP_ARRAY_BOUNDS_CHECK(L_59, ((int32_t)59));
ArrayElementTypeCheck (L_59, _stringLiteral3118337);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)59)), (String_t*)_stringLiteral3118337);
StringU5BU5D_t2956870243* L_60 = L_59;
NullCheck(L_60);
IL2CPP_ARRAY_BOUNDS_CHECK(L_60, ((int32_t)60));
ArrayElementTypeCheck (L_60, _stringLiteral1252218203);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (String_t*)_stringLiteral1252218203);
StringU5BU5D_t2956870243* L_61 = L_60;
NullCheck(L_61);
IL2CPP_ARRAY_BOUNDS_CHECK(L_61, ((int32_t)61));
ArrayElementTypeCheck (L_61, _stringLiteral3271598911);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (String_t*)_stringLiteral3271598911);
StringU5BU5D_t2956870243* L_62 = L_61;
NullCheck(L_62);
IL2CPP_ARRAY_BOUNDS_CHECK(L_62, ((int32_t)62));
ArrayElementTypeCheck (L_62, _stringLiteral3029738);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (String_t*)_stringLiteral3029738);
StringU5BU5D_t2956870243* L_63 = L_62;
NullCheck(L_63);
IL2CPP_ARRAY_BOUNDS_CHECK(L_63, ((int32_t)63));
ArrayElementTypeCheck (L_63, _stringLiteral3039496);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (String_t*)_stringLiteral3039496);
StringU5BU5D_t2956870243* L_64 = L_63;
NullCheck(L_64);
IL2CPP_ARRAY_BOUNDS_CHECK(L_64, ((int32_t)64));
ArrayElementTypeCheck (L_64, _stringLiteral97526364);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)64)), (String_t*)_stringLiteral97526364);
StringU5BU5D_t2956870243* L_65 = L_64;
NullCheck(L_65);
IL2CPP_ARRAY_BOUNDS_CHECK(L_65, ((int32_t)65));
ArrayElementTypeCheck (L_65, _stringLiteral3589978);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)65)), (String_t*)_stringLiteral3589978);
StringU5BU5D_t2956870243* L_66 = L_65;
NullCheck(L_66);
IL2CPP_ARRAY_BOUNDS_CHECK(L_66, ((int32_t)66));
ArrayElementTypeCheck (L_66, _stringLiteral3052374);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)66)), (String_t*)_stringLiteral3052374);
StringU5BU5D_t2956870243* L_67 = L_66;
NullCheck(L_67);
IL2CPP_ARRAY_BOUNDS_CHECK(L_67, ((int32_t)67));
ArrayElementTypeCheck (L_67, _stringLiteral111379569);
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)67)), (String_t*)_stringLiteral111379569);
StringU5BU5D_t2956870243* L_68 = L_67;
NullCheck(L_68);
IL2CPP_ARRAY_BOUNDS_CHECK(L_68, ((int32_t)68));
ArrayElementTypeCheck (L_68, _stringLiteral3459024167);
(L_68)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)68)), (String_t*)_stringLiteral3459024167);
StringU5BU5D_t2956870243* L_69 = L_68;
NullCheck(L_69);
IL2CPP_ARRAY_BOUNDS_CHECK(L_69, ((int32_t)69));
ArrayElementTypeCheck (L_69, _stringLiteral1542263633);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)69)), (String_t*)_stringLiteral1542263633);
StringU5BU5D_t2956870243* L_70 = L_69;
NullCheck(L_70);
IL2CPP_ARRAY_BOUNDS_CHECK(L_70, ((int32_t)70));
ArrayElementTypeCheck (L_70, _stringLiteral104431);
(L_70)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)70)), (String_t*)_stringLiteral104431);
StringU5BU5D_t2956870243* L_71 = L_70;
NullCheck(L_71);
IL2CPP_ARRAY_BOUNDS_CHECK(L_71, ((int32_t)71));
ArrayElementTypeCheck (L_71, _stringLiteral109244411);
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)71)), (String_t*)_stringLiteral109244411);
StringU5BU5D_t2956870243* L_72 = L_71;
NullCheck(L_72);
IL2CPP_ARRAY_BOUNDS_CHECK(L_72, ((int32_t)72));
ArrayElementTypeCheck (L_72, _stringLiteral109413500);
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)72)), (String_t*)_stringLiteral109413500);
StringU5BU5D_t2956870243* L_73 = L_72;
NullCheck(L_73);
IL2CPP_ARRAY_BOUNDS_CHECK(L_73, ((int32_t)73));
ArrayElementTypeCheck (L_73, _stringLiteral2969009105);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)73)), (String_t*)_stringLiteral2969009105);
StringU5BU5D_t2956870243* L_74 = L_73;
NullCheck(L_74);
IL2CPP_ARRAY_BOUNDS_CHECK(L_74, ((int32_t)74));
ArrayElementTypeCheck (L_74, _stringLiteral3327612);
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)74)), (String_t*)_stringLiteral3327612);
StringU5BU5D_t2956870243* L_75 = L_74;
NullCheck(L_75);
IL2CPP_ARRAY_BOUNDS_CHECK(L_75, ((int32_t)75));
ArrayElementTypeCheck (L_75, _stringLiteral3402981393);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)75)), (String_t*)_stringLiteral3402981393);
StringU5BU5D_t2956870243* L_76 = L_75;
NullCheck(L_76);
IL2CPP_ARRAY_BOUNDS_CHECK(L_76, ((int32_t)76));
ArrayElementTypeCheck (L_76, _stringLiteral3625364);
(L_76)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)76)), (String_t*)_stringLiteral3625364);
StringU5BU5D_t2956870243* L_77 = L_76;
NullCheck(L_77);
IL2CPP_ARRAY_BOUNDS_CHECK(L_77, ((int32_t)77));
ArrayElementTypeCheck (L_77, _stringLiteral3502033281);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)77)), (String_t*)_stringLiteral3502033281);
StringU5BU5D_t2956870243* L_78 = L_77;
NullCheck(L_78);
IL2CPP_ARRAY_BOUNDS_CHECK(L_78, ((int32_t)78));
ArrayElementTypeCheck (L_78, _stringLiteral114974605);
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)78)), (String_t*)_stringLiteral114974605);
StringU5BU5D_t2956870243* L_79 = L_78;
NullCheck(L_79);
IL2CPP_ARRAY_BOUNDS_CHECK(L_79, ((int32_t)79));
ArrayElementTypeCheck (L_79, _stringLiteral113097959);
(L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)79)), (String_t*)_stringLiteral113097959);
((TypeData_t3837952962_StaticFields*)TypeData_t3837952962_il2cpp_TypeInfo_var->static_fields)->set_keywords_11(L_79);
return;
}
}
// System.String System.Xml.Serialization.TypeData::get_TypeName()
extern "C" String_t* TypeData_get_TypeName_m1117343750 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_typeName_4();
return L_0;
}
}
// System.String System.Xml.Serialization.TypeData::get_XmlType()
extern "C" String_t* TypeData_get_XmlType_m3918246226 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_elementName_1();
return L_0;
}
}
// System.Type System.Xml.Serialization.TypeData::get_Type()
extern "C" Type_t * TypeData_get_Type_m2191724548 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_0();
return L_0;
}
}
// System.String System.Xml.Serialization.TypeData::get_FullTypeName()
extern "C" String_t* TypeData_get_FullTypeName_m2969171957 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_fullTypeName_5();
return L_0;
}
}
// System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType()
extern "C" int32_t TypeData_get_SchemaType_m1693934194 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_sType_2();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_IsListType()
extern "C" bool TypeData_get_IsListType_m1977463454 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
int32_t L_0 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
return (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0);
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_IsComplexType()
extern "C" bool TypeData_get_IsComplexType_m115025350 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
int32_t G_B7_0 = 0;
{
int32_t L_0 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)4)))
{
goto IL_0047;
}
}
{
int32_t L_1 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)3)))
{
goto IL_0047;
}
}
{
int32_t L_2 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0047;
}
}
{
int32_t L_3 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)6)))
{
goto IL_0047;
}
}
{
int32_t L_4 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)5)))
{
goto IL_0047;
}
}
{
bool L_5 = TypeData_get_IsXsdType_m3775213727(__this, /*hidden argument*/NULL);
G_B7_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
goto IL_0048;
}
IL_0047:
{
G_B7_0 = 1;
}
IL_0048:
{
return (bool)G_B7_0;
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_IsValueType()
extern "C" bool TypeData_get_IsValueType_m321491079 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
int32_t G_B5_0 = 0;
{
Type_t * L_0 = __this->get_type_0();
if (!L_0)
{
goto IL_0017;
}
}
{
Type_t * L_1 = __this->get_type_0();
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(36 /* System.Boolean System.Type::get_IsValueType() */, L_1);
return L_2;
}
IL_0017:
{
int32_t L_3 = __this->get_sType_2();
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_002e;
}
}
{
int32_t L_4 = __this->get_sType_2();
G_B5_0 = ((((int32_t)L_4) == ((int32_t)2))? 1 : 0);
goto IL_002f;
}
IL_002e:
{
G_B5_0 = 1;
}
IL_002f:
{
return (bool)G_B5_0;
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_IsNullable()
extern const Il2CppType* Nullable_1_t2791603879_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t TypeData_get_IsNullable_m3895772871_MetadataUsageId;
extern "C" bool TypeData_get_IsNullable_m3895772871 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_get_IsNullable_m3895772871_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t G_B7_0 = 0;
int32_t G_B9_0 = 0;
{
bool L_0 = __this->get_nullableOverride_10();
if (!L_0)
{
goto IL_000d;
}
}
{
return (bool)1;
}
IL_000d:
{
bool L_1 = TypeData_get_IsValueType_m321491079(__this, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_004f;
}
}
{
Type_t * L_2 = __this->get_type_0();
if (!L_2)
{
goto IL_004c;
}
}
{
Type_t * L_3 = __this->get_type_0();
NullCheck(L_3);
bool L_4 = VirtFuncInvoker0< bool >::Invoke(88 /* System.Boolean System.Type::get_IsGenericType() */, L_3);
if (!L_4)
{
goto IL_004c;
}
}
{
Type_t * L_5 = __this->get_type_0();
NullCheck(L_5);
Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(87 /* System.Type System.Type::GetGenericTypeDefinition() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Nullable_1_t2791603879_0_0_0_var), /*hidden argument*/NULL);
G_B7_0 = ((((Il2CppObject*)(Type_t *)L_6) == ((Il2CppObject*)(Type_t *)L_7))? 1 : 0);
goto IL_004d;
}
IL_004c:
{
G_B7_0 = 0;
}
IL_004d:
{
G_B9_0 = G_B7_0;
goto IL_0050;
}
IL_004f:
{
G_B9_0 = 1;
}
IL_0050:
{
return (bool)G_B9_0;
}
}
// System.Void System.Xml.Serialization.TypeData::set_IsNullable(System.Boolean)
extern "C" void TypeData_set_IsNullable_m1764739194 (TypeData_t3837952962 * __this, bool ___value, const MethodInfo* method)
{
{
bool L_0 = ___value;
__this->set_nullableOverride_10(L_0);
return;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData()
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern const uint32_t TypeData_get_ListItemTypeData_m3943692862_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeData_get_ListItemTypeData_m3943692862 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_get_ListItemTypeData_m3943692862_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeData_t3837952962 * L_0 = __this->get_listItemTypeData_6();
if (L_0)
{
goto IL_0027;
}
}
{
Type_t * L_1 = __this->get_type_0();
if (!L_1)
{
goto IL_0027;
}
}
{
Type_t * L_2 = TypeData_get_ListItemType_m2794988341(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_3 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
__this->set_listItemTypeData_6(L_3);
}
IL_0027:
{
TypeData_t3837952962 * L_4 = __this->get_listItemTypeData_6();
return L_4;
}
}
// System.Type System.Xml.Serialization.TypeData::get_ListItemType()
extern const Il2CppType* ICollection_t3761522009_0_0_0_var;
extern const Il2CppType* IDictionary_t1654916945_0_0_0_var;
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern TypeInfo* TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2743791564;
extern Il2CppCodeGenString* _stringLiteral3702356992;
extern Il2CppCodeGenString* _stringLiteral3931377322;
extern Il2CppCodeGenString* _stringLiteral2489063961;
extern Il2CppCodeGenString* _stringLiteral2838233566;
extern Il2CppCodeGenString* _stringLiteral65665;
extern Il2CppCodeGenString* _stringLiteral2218689479;
extern Il2CppCodeGenString* _stringLiteral3875520410;
extern Il2CppCodeGenString* _stringLiteral328719813;
extern Il2CppCodeGenString* _stringLiteral2791593305;
extern Il2CppCodeGenString* _stringLiteral3039324401;
extern const uint32_t TypeData_get_ListItemType_m2794988341_MetadataUsageId;
extern "C" Type_t * TypeData_get_ListItemType_m2794988341 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_get_ListItemType_m2794988341_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
PropertyInfo_t * V_1 = NULL;
MethodInfo_t * V_2 = NULL;
MethodInfo_t * V_3 = NULL;
PropertyInfo_t * V_4 = NULL;
MethodInfo_t * V_5 = NULL;
{
Type_t * L_0 = __this->get_type_0();
if (L_0)
{
goto IL_0016;
}
}
{
InvalidOperationException_t2420574324 * L_1 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_1, _stringLiteral2743791564, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0016:
{
Type_t * L_2 = __this->get_listItemType_3();
if (!L_2)
{
goto IL_0028;
}
}
{
Type_t * L_3 = __this->get_listItemType_3();
return L_3;
}
IL_0028:
{
V_0 = (Type_t *)NULL;
int32_t L_4 = TypeData_get_SchemaType_m1693934194(__this, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)3)))
{
goto IL_0051;
}
}
{
Type_t * L_5 = TypeData_get_Type_m2191724548(__this, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Concat_m138640077(NULL /*static, unused*/, L_6, _stringLiteral3702356992, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_8 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8);
}
IL_0051:
{
Type_t * L_9 = __this->get_type_0();
NullCheck(L_9);
bool L_10 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_9);
if (!L_10)
{
goto IL_0077;
}
}
{
Type_t * L_11 = __this->get_type_0();
NullCheck(L_11);
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_11);
__this->set_listItemType_3(L_12);
goto IL_0229;
}
IL_0077:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ICollection_t3761522009_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_14 = __this->get_type_0();
NullCheck(L_13);
bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_13, L_14);
if (L_15)
{
goto IL_00a4;
}
}
{
Type_t * L_16 = __this->get_type_0();
Type_t * L_17 = TypeData_GetGenericListItemType_m510784044(__this, L_16, /*hidden argument*/NULL);
Type_t * L_18 = L_17;
V_0 = L_18;
if (!L_18)
{
goto IL_0179;
}
}
IL_00a4:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(IDictionary_t1654916945_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_20 = __this->get_type_0();
NullCheck(L_19);
bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_19, L_20);
if (!L_21)
{
goto IL_00e7;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_22 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_23 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_24 = __this->get_type_0();
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_24);
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, 0);
ArrayElementTypeCheck (L_23, L_25);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_25);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_26 = String_Format_m3351777162(NULL /*static, unused*/, L_22, _stringLiteral3931377322, L_23, /*hidden argument*/NULL);
NotSupportedException_t1374155497 * L_27 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27);
}
IL_00e7:
{
Type_t * L_28 = V_0;
if (!L_28)
{
goto IL_00f9;
}
}
{
Type_t * L_29 = V_0;
__this->set_listItemType_3(L_29);
goto IL_0137;
}
IL_00f9:
{
Type_t * L_30 = __this->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(TypeData_t3837952962_il2cpp_TypeInfo_var);
PropertyInfo_t * L_31 = TypeData_GetIndexerProperty_m3778817866(NULL /*static, unused*/, L_30, /*hidden argument*/NULL);
V_1 = L_31;
PropertyInfo_t * L_32 = V_1;
if (L_32)
{
goto IL_012b;
}
}
{
Type_t * L_33 = __this->get_type_0();
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_33);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_35 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral2489063961, L_34, _stringLiteral2838233566, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_36 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_36, L_35, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36);
}
IL_012b:
{
PropertyInfo_t * L_37 = V_1;
NullCheck(L_37);
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_37);
__this->set_listItemType_3(L_38);
}
IL_0137:
{
Type_t * L_39 = __this->get_type_0();
TypeU5BU5D_t3431720054* L_40 = ((TypeU5BU5D_t3431720054*)SZArrayNew(TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_41 = __this->get_listItemType_3();
NullCheck(L_40);
IL2CPP_ARRAY_BOUNDS_CHECK(L_40, 0);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_41);
NullCheck(L_39);
MethodInfo_t * L_42 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_39, _stringLiteral65665, L_40);
V_2 = L_42;
MethodInfo_t * L_43 = V_2;
if (L_43)
{
goto IL_0174;
}
}
{
Type_t * L_44 = __this->get_type_0();
Type_t * L_45 = __this->get_listItemType_3();
IL2CPP_RUNTIME_CLASS_INIT(TypeData_t3837952962_il2cpp_TypeInfo_var);
InvalidOperationException_t2420574324 * L_46 = TypeData_CreateMissingAddMethodException_m1061219609(NULL /*static, unused*/, L_44, _stringLiteral2218689479, L_45, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46);
}
IL_0174:
{
goto IL_0229;
}
IL_0179:
{
Type_t * L_47 = __this->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3431720054* L_48 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3();
NullCheck(L_47);
MethodInfo_t * L_49 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_47, _stringLiteral3875520410, L_48);
V_3 = L_49;
MethodInfo_t * L_50 = V_3;
if (L_50)
{
goto IL_01af;
}
}
{
Type_t * L_51 = __this->get_type_0();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3431720054* L_52 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3();
NullCheck(L_51);
MethodInfo_t * L_53 = VirtFuncInvoker5< MethodInfo_t *, String_t*, int32_t, Binder_t4180926488 *, TypeU5BU5D_t3431720054*, ParameterModifierU5BU5D_t3379147067* >::Invoke(56 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) */, L_51, _stringLiteral328719813, ((int32_t)52), (Binder_t4180926488 *)NULL, L_52, (ParameterModifierU5BU5D_t3379147067*)(ParameterModifierU5BU5D_t3379147067*)NULL);
V_3 = L_53;
}
IL_01af:
{
MethodInfo_t * L_54 = V_3;
NullCheck(L_54);
Type_t * L_55 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_54);
NullCheck(L_55);
PropertyInfo_t * L_56 = VirtFuncInvoker1< PropertyInfo_t *, String_t* >::Invoke(62 /* System.Reflection.PropertyInfo System.Type::GetProperty(System.String) */, L_55, _stringLiteral2791593305);
V_4 = L_56;
PropertyInfo_t * L_57 = V_4;
if (L_57)
{
goto IL_01dd;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_58 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
__this->set_listItemType_3(L_58);
goto IL_01ea;
}
IL_01dd:
{
PropertyInfo_t * L_59 = V_4;
NullCheck(L_59);
Type_t * L_60 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_59);
__this->set_listItemType_3(L_60);
}
IL_01ea:
{
Type_t * L_61 = __this->get_type_0();
TypeU5BU5D_t3431720054* L_62 = ((TypeU5BU5D_t3431720054*)SZArrayNew(TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_63 = __this->get_listItemType_3();
NullCheck(L_62);
IL2CPP_ARRAY_BOUNDS_CHECK(L_62, 0);
ArrayElementTypeCheck (L_62, L_63);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_63);
NullCheck(L_61);
MethodInfo_t * L_64 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_61, _stringLiteral65665, L_62);
V_5 = L_64;
MethodInfo_t * L_65 = V_5;
if (L_65)
{
goto IL_0229;
}
}
{
Type_t * L_66 = __this->get_type_0();
Type_t * L_67 = __this->get_listItemType_3();
IL2CPP_RUNTIME_CLASS_INIT(TypeData_t3837952962_il2cpp_TypeInfo_var);
InvalidOperationException_t2420574324 * L_68 = TypeData_CreateMissingAddMethodException_m1061219609(NULL /*static, unused*/, L_66, _stringLiteral3039324401, L_67, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_68);
}
IL_0229:
{
Type_t * L_69 = __this->get_listItemType_3();
return L_69;
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_IsXsdType()
extern "C" bool TypeData_get_IsXsdType_m3775213727 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = __this->get_mappedType_7();
return (bool)((((Il2CppObject*)(TypeData_t3837952962 *)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0);
}
}
// System.Boolean System.Xml.Serialization.TypeData::get_HasPublicConstructor()
extern "C" bool TypeData_get_HasPublicConstructor_m3359090099 (TypeData_t3837952962 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_hasPublicConstructor_9();
return L_0;
}
}
// System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type)
extern const Il2CppType* Int32_t2847414787_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t TypeData_GetIndexerProperty_m3778817866_MetadataUsageId;
extern "C" PropertyInfo_t * TypeData_GetIndexerProperty_m3778817866 (Il2CppObject * __this /* static, unused */, Type_t * ___collectionType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_GetIndexerProperty_m3778817866_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
PropertyInfoU5BU5D_t1348579340* V_0 = NULL;
PropertyInfo_t * V_1 = NULL;
PropertyInfoU5BU5D_t1348579340* V_2 = NULL;
int32_t V_3 = 0;
ParameterInfoU5BU5D_t1127461800* V_4 = NULL;
{
Type_t * L_0 = ___collectionType;
NullCheck(L_0);
PropertyInfoU5BU5D_t1348579340* L_1 = VirtFuncInvoker1< PropertyInfoU5BU5D_t1348579340*, int32_t >::Invoke(61 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_0, ((int32_t)20));
V_0 = L_1;
PropertyInfoU5BU5D_t1348579340* L_2 = V_0;
V_2 = L_2;
V_3 = 0;
goto IL_004d;
}
IL_0012:
{
PropertyInfoU5BU5D_t1348579340* L_3 = V_2;
int32_t L_4 = V_3;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, L_4);
int32_t L_5 = L_4;
V_1 = ((L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)));
PropertyInfo_t * L_6 = V_1;
NullCheck(L_6);
ParameterInfoU5BU5D_t1127461800* L_7 = VirtFuncInvoker0< ParameterInfoU5BU5D_t1127461800* >::Invoke(21 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_6);
V_4 = L_7;
ParameterInfoU5BU5D_t1127461800* L_8 = V_4;
if (!L_8)
{
goto IL_0049;
}
}
{
ParameterInfoU5BU5D_t1127461800* L_9 = V_4;
NullCheck(L_9);
if ((!(((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))) == ((uint32_t)1))))
{
goto IL_0049;
}
}
{
ParameterInfoU5BU5D_t1127461800* L_10 = V_4;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, 0);
int32_t L_11 = 0;
NullCheck(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))));
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, ((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))));
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int32_t2847414787_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_12) == ((Il2CppObject*)(Type_t *)L_13))))
{
goto IL_0049;
}
}
{
PropertyInfo_t * L_14 = V_1;
return L_14;
}
IL_0049:
{
int32_t L_15 = V_3;
V_3 = ((int32_t)((int32_t)L_15+(int32_t)1));
}
IL_004d:
{
int32_t L_16 = V_3;
PropertyInfoU5BU5D_t1348579340* L_17 = V_2;
NullCheck(L_17);
if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_17)->max_length)))))))
{
goto IL_0012;
}
}
{
return (PropertyInfo_t *)NULL;
}
}
// System.InvalidOperationException System.Xml.Serialization.TypeData::CreateMissingAddMethodException(System.Type,System.String,System.Type)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4198008362;
extern const uint32_t TypeData_CreateMissingAddMethodException_m1061219609_MetadataUsageId;
extern "C" InvalidOperationException_t2420574324 * TypeData_CreateMissingAddMethodException_m1061219609 (Il2CppObject * __this /* static, unused */, Type_t * ___type, String_t* ___inheritFrom, Type_t * ___argumentType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_CreateMissingAddMethodException_m1061219609_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_0 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_1 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)3));
String_t* L_2 = ___inheritFrom;
NullCheck(L_1);
IL2CPP_ARRAY_BOUNDS_CHECK(L_1, 0);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_2);
ObjectU5BU5D_t11523773* L_3 = L_1;
Type_t * L_4 = ___argumentType;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_4);
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, 1);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_5);
ObjectU5BU5D_t11523773* L_6 = L_3;
Type_t * L_7 = ___type;
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_7);
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 2);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)L_8);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_9 = String_Format_m3351777162(NULL /*static, unused*/, L_0, _stringLiteral4198008362, L_6, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_10 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_10, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type)
extern const Il2CppType* ICollection_1_t56169053_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t TypeData_GetGenericListItemType_m510784044_MetadataUsageId;
extern "C" Type_t * TypeData_GetGenericListItemType_m510784044 (TypeData_t3837952962 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeData_GetGenericListItemType_m510784044_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
Type_t * V_1 = NULL;
TypeU5BU5D_t3431720054* V_2 = NULL;
int32_t V_3 = 0;
{
Type_t * L_0 = ___type;
NullCheck(L_0);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(88 /* System.Boolean System.Type::get_IsGenericType() */, L_0);
if (!L_1)
{
goto IL_0029;
}
}
{
Type_t * L_2 = ___type;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(87 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ICollection_1_t56169053_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_3) == ((Il2CppObject*)(Type_t *)L_4))))
{
goto IL_0029;
}
}
{
Type_t * L_5 = ___type;
NullCheck(L_5);
TypeU5BU5D_t3431720054* L_6 = VirtFuncInvoker0< TypeU5BU5D_t3431720054* >::Invoke(84 /* System.Type[] System.Type::GetGenericArguments() */, L_5);
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 0);
int32_t L_7 = 0;
return ((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7)));
}
IL_0029:
{
V_0 = (Type_t *)NULL;
Type_t * L_8 = ___type;
NullCheck(L_8);
TypeU5BU5D_t3431720054* L_9 = VirtFuncInvoker0< TypeU5BU5D_t3431720054* >::Invoke(42 /* System.Type[] System.Type::GetInterfaces() */, L_8);
V_2 = L_9;
V_3 = 0;
goto IL_0051;
}
IL_0039:
{
TypeU5BU5D_t3431720054* L_10 = V_2;
int32_t L_11 = V_3;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, L_11);
int32_t L_12 = L_11;
V_1 = ((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)));
Type_t * L_13 = V_1;
Type_t * L_14 = TypeData_GetGenericListItemType_m510784044(__this, L_13, /*hidden argument*/NULL);
Type_t * L_15 = L_14;
V_0 = L_15;
if (!L_15)
{
goto IL_004d;
}
}
{
Type_t * L_16 = V_0;
return L_16;
}
IL_004d:
{
int32_t L_17 = V_3;
V_3 = ((int32_t)((int32_t)L_17+(int32_t)1));
}
IL_0051:
{
int32_t L_18 = V_3;
TypeU5BU5D_t3431720054* L_19 = V_2;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_19)->max_length)))))))
{
goto IL_0039;
}
}
{
return (Type_t *)NULL;
}
}
// System.Void System.Xml.Serialization.TypeMember::.ctor(System.Type,System.String)
extern "C" void TypeMember__ctor_m3361941244 (TypeMember_t540108850 * __this, Type_t * ___type, String_t* ___member, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type;
__this->set_type_0(L_0);
String_t* L_1 = ___member;
__this->set_member_1(L_1);
return;
}
}
// System.Int32 System.Xml.Serialization.TypeMember::GetHashCode()
extern "C" int32_t TypeMember_GetHashCode_m797651050 (TypeMember_t540108850 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Type::GetHashCode() */, L_0);
String_t* L_2 = __this->get_member_1();
NullCheck(L_2);
int32_t L_3 = String_GetHashCode_m471729487(L_2, /*hidden argument*/NULL);
return ((int32_t)((int32_t)L_1+(int32_t)L_3));
}
}
// System.Boolean System.Xml.Serialization.TypeMember::Equals(System.Object)
extern TypeInfo* TypeMember_t540108850_il2cpp_TypeInfo_var;
extern const uint32_t TypeMember_Equals_m1066000722_MetadataUsageId;
extern "C" bool TypeMember_Equals_m1066000722 (TypeMember_t540108850 * __this, Il2CppObject * ___obj, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeMember_Equals_m1066000722_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = ___obj;
if (!((TypeMember_t540108850 *)IsInstSealed(L_0, TypeMember_t540108850_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
Il2CppObject * L_1 = ___obj;
bool L_2 = TypeMember_Equals_m4247592268(NULL /*static, unused*/, __this, ((TypeMember_t540108850 *)CastclassSealed(L_1, TypeMember_t540108850_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
IL_0018:
{
return (bool)0;
}
}
// System.Boolean System.Xml.Serialization.TypeMember::Equals(System.Xml.Serialization.TypeMember,System.Xml.Serialization.TypeMember)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t TypeMember_Equals_m4247592268_MetadataUsageId;
extern "C" bool TypeMember_Equals_m4247592268 (Il2CppObject * __this /* static, unused */, TypeMember_t540108850 * ___tm1, TypeMember_t540108850 * ___tm2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeMember_Equals_m4247592268_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeMember_t540108850 * L_0 = ___tm1;
TypeMember_t540108850 * L_1 = ___tm2;
bool L_2 = Object_ReferenceEquals_m3695130242(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000e;
}
}
{
return (bool)1;
}
IL_000e:
{
TypeMember_t540108850 * L_3 = ___tm1;
bool L_4 = Object_ReferenceEquals_m3695130242(NULL /*static, unused*/, L_3, NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0026;
}
}
{
TypeMember_t540108850 * L_5 = ___tm2;
bool L_6 = Object_ReferenceEquals_m3695130242(NULL /*static, unused*/, L_5, NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0028;
}
}
IL_0026:
{
return (bool)0;
}
IL_0028:
{
TypeMember_t540108850 * L_7 = ___tm1;
NullCheck(L_7);
Type_t * L_8 = L_7->get_type_0();
TypeMember_t540108850 * L_9 = ___tm2;
NullCheck(L_9);
Type_t * L_10 = L_9->get_type_0();
if ((!(((Il2CppObject*)(Type_t *)L_8) == ((Il2CppObject*)(Type_t *)L_10))))
{
goto IL_0051;
}
}
{
TypeMember_t540108850 * L_11 = ___tm1;
NullCheck(L_11);
String_t* L_12 = L_11->get_member_1();
TypeMember_t540108850 * L_13 = ___tm2;
NullCheck(L_13);
String_t* L_14 = L_13->get_member_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_15 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0051;
}
}
{
return (bool)1;
}
IL_0051:
{
return (bool)0;
}
}
// System.String System.Xml.Serialization.TypeMember::ToString()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral32;
extern const uint32_t TypeMember_ToString_m2237685364_MetadataUsageId;
extern "C" String_t* TypeMember_ToString_m2237685364 (TypeMember_t540108850 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeMember_ToString_m2237685364_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = __this->get_type_0();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_0);
String_t* L_2 = __this->get_member_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_3 = String_Concat_m1825781833(NULL /*static, unused*/, L_1, _stringLiteral32, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Xml.Serialization.TypeTranslator::.cctor()
extern const Il2CppType* Boolean_t211005341_0_0_0_var;
extern const Il2CppType* Int16_t2847414729_0_0_0_var;
extern const Il2CppType* UInt16_t985925268_0_0_0_var;
extern const Il2CppType* Int32_t2847414787_0_0_0_var;
extern const Il2CppType* UInt32_t985925326_0_0_0_var;
extern const Il2CppType* Int64_t2847414882_0_0_0_var;
extern const Il2CppType* UInt64_t985925421_0_0_0_var;
extern const Il2CppType* Single_t958209021_0_0_0_var;
extern const Il2CppType* Double_t534516614_0_0_0_var;
extern const Il2CppType* DateTime_t339033936_0_0_0_var;
extern const Il2CppType* Decimal_t1688557254_0_0_0_var;
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern const Il2CppType* String_t_0_0_0_var;
extern const Il2CppType* Guid_t2778838590_0_0_0_var;
extern const Il2CppType* Byte_t2778693821_0_0_0_var;
extern const Il2CppType* SByte_t2855346064_0_0_0_var;
extern const Il2CppType* Char_t2778706699_0_0_0_var;
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern const Il2CppType* ByteU5BU5D_t58506160_0_0_0_var;
extern const Il2CppType* XmlNode_t3592213601_0_0_0_var;
extern const Il2CppType* XmlElement_t3562928333_0_0_0_var;
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaPatternFacet_t2687480780_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* DictionaryEntry_t130027246_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral77225596;
extern Il2CppCodeGenString* _stringLiteral3402981393;
extern Il2CppCodeGenString* _stringLiteral3887948929;
extern Il2CppCodeGenString* _stringLiteral3184265;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral3052374;
extern Il2CppCodeGenString* _stringLiteral3452086086;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral4013663897;
extern Il2CppCodeGenString* _stringLiteral3984378629;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral693544686;
extern Il2CppCodeGenString* _stringLiteral3136949;
extern Il2CppCodeGenString* _stringLiteral2556356227;
extern Il2CppCodeGenString* _stringLiteral97874244;
extern Il2CppCodeGenString* _stringLiteral2741234588;
extern Il2CppCodeGenString* _stringLiteral104080000;
extern Il2CppCodeGenString* _stringLiteral2790258554;
extern Il2CppCodeGenString* _stringLiteral598669337;
extern Il2CppCodeGenString* _stringLiteral2420395;
extern Il2CppCodeGenString* _stringLiteral2297370080;
extern Il2CppCodeGenString* _stringLiteral2681377624;
extern Il2CppCodeGenString* _stringLiteral1958052158;
extern Il2CppCodeGenString* _stringLiteral1626473733;
extern Il2CppCodeGenString* _stringLiteral2189983352;
extern Il2CppCodeGenString* _stringLiteral1860163401;
extern Il2CppCodeGenString* _stringLiteral2423673020;
extern Il2CppCodeGenString* _stringLiteral2975479745;
extern Il2CppCodeGenString* _stringLiteral2050021347;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral2331;
extern Il2CppCodeGenString* _stringLiteral69523832;
extern Il2CppCodeGenString* _stringLiteral2155238875;
extern Il2CppCodeGenString* _stringLiteral2361019394;
extern Il2CppCodeGenString* _stringLiteral110541305;
extern Il2CppCodeGenString* _stringLiteral3571808744;
extern Il2CppCodeGenString* _stringLiteral2882303968;
extern Il2CppCodeGenString* _stringLiteral2898763087;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern const uint32_t TypeTranslator__cctor_m1890549556_MetadataUsageId;
extern "C" void TypeTranslator__cctor_m1890549556 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator__cctor_m1890549556_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSchemaPatternFacet_t2687480780 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
TypeData_t3837952962 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
DictionaryEntry_t130027246 V_4;
memset(&V_4, 0, sizeof(V_4));
Il2CppObject * V_5 = NULL;
TypeData_t3837952962 * V_6 = NULL;
TypeData_t3837952962 * V_7 = NULL;
Il2CppObject * V_8 = NULL;
Il2CppObject * V_9 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->set_nameCache_0(L_0);
Hashtable_t3875263730 * L_1 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_2 = Hashtable_Synchronized_m4005846889(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->set_primitiveArrayTypes_2(L_2);
Hashtable_t3875263730 * L_3 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Hashtable_t3875263730 * L_4 = Hashtable_Synchronized_m4005846889(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->set_nameCache_0(L_4);
Hashtable_t3875263730 * L_5 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Boolean_t211005341_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Boolean_t211005341_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_8 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_8, L_7, _stringLiteral64711720, (bool)1, /*hidden argument*/NULL);
NullCheck(L_5);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_5, L_6, L_8);
Hashtable_t3875263730 * L_9 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int16_t2847414729_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_11 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int16_t2847414729_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_12 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_12, L_11, _stringLiteral109413500, (bool)1, /*hidden argument*/NULL);
NullCheck(L_9);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_9, L_10, L_12);
Hashtable_t3875263730 * L_13 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_14 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt16_t985925268_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_15 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt16_t985925268_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_16 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_16, L_15, _stringLiteral1033453191, (bool)1, /*hidden argument*/NULL);
NullCheck(L_13);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_13, L_14, L_16);
Hashtable_t3875263730 * L_17 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_18 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int32_t2847414787_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int32_t2847414787_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_20 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_20, L_19, _stringLiteral104431, (bool)1, /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_17, L_18, L_20);
Hashtable_t3875263730 * L_21 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_22 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt32_t985925326_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_23 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt32_t985925326_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_24 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_24, L_23, _stringLiteral1145198778, (bool)1, /*hidden argument*/NULL);
NullCheck(L_21);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_21, L_22, L_24);
Hashtable_t3875263730 * L_25 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_26 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int64_t2847414882_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_27 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Int64_t2847414882_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_28 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_28, L_27, _stringLiteral3327612, (bool)1, /*hidden argument*/NULL);
NullCheck(L_25);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_25, L_26, L_28);
Hashtable_t3875263730 * L_29 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_30 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt64_t985925421_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_31 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt64_t985925421_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_32 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_32, L_31, _stringLiteral1141514001, (bool)1, /*hidden argument*/NULL);
NullCheck(L_29);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_29, L_30, L_32);
Hashtable_t3875263730 * L_33 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Single_t958209021_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_35 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Single_t958209021_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_36 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_36, L_35, _stringLiteral97526364, (bool)1, /*hidden argument*/NULL);
NullCheck(L_33);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_33, L_34, L_36);
Hashtable_t3875263730 * L_37 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_38 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Double_t534516614_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Double_t534516614_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_40 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_40, L_39, _stringLiteral2969009105, (bool)1, /*hidden argument*/NULL);
NullCheck(L_37);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_37, L_38, L_40);
Hashtable_t3875263730 * L_41 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_42 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_43 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_44 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_44, L_43, _stringLiteral1792749467, (bool)1, /*hidden argument*/NULL);
NullCheck(L_41);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_41, L_42, L_44);
Hashtable_t3875263730 * L_45 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_46 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Decimal_t1688557254_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_47 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Decimal_t1688557254_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_48 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_48, L_47, _stringLiteral1542263633, (bool)1, /*hidden argument*/NULL);
NullCheck(L_45);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_45, L_46, L_48);
Hashtable_t3875263730 * L_49 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_50 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_51 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_52 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_52, L_51, _stringLiteral77225596, (bool)1, /*hidden argument*/NULL);
NullCheck(L_49);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_49, L_50, L_52);
Hashtable_t3875263730 * L_53 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_55 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_56 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_56, L_55, _stringLiteral3402981393, (bool)1, /*hidden argument*/NULL);
NullCheck(L_53);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_53, L_54, L_56);
XmlSchemaPatternFacet_t2687480780 * L_57 = (XmlSchemaPatternFacet_t2687480780 *)il2cpp_codegen_object_new(XmlSchemaPatternFacet_t2687480780_il2cpp_TypeInfo_var);
XmlSchemaPatternFacet__ctor_m2919870041(L_57, /*hidden argument*/NULL);
V_0 = L_57;
XmlSchemaPatternFacet_t2687480780 * L_58 = V_0;
NullCheck(L_58);
XmlSchemaFacet_set_Value_m226297313(L_58, _stringLiteral3887948929, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_59 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_60 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Guid_t2778838590_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_61 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Guid_t2778838590_0_0_0_var), /*hidden argument*/NULL);
Hashtable_t3875263730 * L_62 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_63 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_62);
Il2CppObject * L_64 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_62, L_63);
XmlSchemaPatternFacet_t2687480780 * L_65 = V_0;
TypeData_t3837952962 * L_66 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m420493673(L_66, L_61, _stringLiteral3184265, (bool)1, ((TypeData_t3837952962 *)CastclassClass(L_64, TypeData_t3837952962_il2cpp_TypeInfo_var)), L_65, /*hidden argument*/NULL);
NullCheck(L_59);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_59, L_60, L_66);
Hashtable_t3875263730 * L_67 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_68 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Byte_t2778693821_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Byte_t2778693821_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_70 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_70, L_69, _stringLiteral1141225885, (bool)1, /*hidden argument*/NULL);
NullCheck(L_67);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_67, L_68, L_70);
Hashtable_t3875263730 * L_71 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_72 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(SByte_t2855346064_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_73 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(SByte_t2855346064_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_74 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_74, L_73, _stringLiteral3039496, (bool)1, /*hidden argument*/NULL);
NullCheck(L_71);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_71, L_72, L_74);
Hashtable_t3875263730 * L_75 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_76 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Char_t2778706699_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_77 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Char_t2778706699_0_0_0_var), /*hidden argument*/NULL);
Hashtable_t3875263730 * L_78 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(UInt16_t985925268_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_78);
Il2CppObject * L_80 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_78, L_79);
TypeData_t3837952962 * L_81 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m420493673(L_81, L_77, _stringLiteral3052374, (bool)1, ((TypeData_t3837952962 *)CastclassClass(L_80, TypeData_t3837952962_il2cpp_TypeInfo_var)), (XmlSchemaPatternFacet_t2687480780 *)NULL, /*hidden argument*/NULL);
NullCheck(L_75);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_75, L_76, L_81);
Hashtable_t3875263730 * L_82 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_83 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_85 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_85, L_84, _stringLiteral3452086086, (bool)0, /*hidden argument*/NULL);
NullCheck(L_82);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_82, L_83, L_85);
Hashtable_t3875263730 * L_86 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_87 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t58506160_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_88 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t58506160_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_89 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_89, L_88, _stringLiteral3078954544, (bool)1, /*hidden argument*/NULL);
NullCheck(L_86);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_86, L_87, L_89);
Hashtable_t3875263730 * L_90 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_91 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNode_t3592213601_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_92 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNode_t3592213601_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_93 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_93, L_92, _stringLiteral4013663897, (bool)0, /*hidden argument*/NULL);
NullCheck(L_90);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_90, L_91, L_93);
Hashtable_t3875263730 * L_94 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_95 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlElement_t3562928333_0_0_0_var), /*hidden argument*/NULL);
Type_t * L_96 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlElement_t3562928333_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_97 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_97, L_96, _stringLiteral3984378629, (bool)0, /*hidden argument*/NULL);
NullCheck(L_94);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_94, L_95, L_97);
Hashtable_t3875263730 * L_98 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_98, /*hidden argument*/NULL);
((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->set_primitiveTypes_1(L_98);
Hashtable_t3875263730 * L_99 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
NullCheck(L_99);
Il2CppObject * L_100 = VirtFuncInvoker0< Il2CppObject * >::Invoke(22 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_99);
V_1 = L_100;
Il2CppObject * L_101 = V_1;
NullCheck(L_101);
Il2CppObject * L_102 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_101);
V_3 = L_102;
}
IL_03e6:
try
{ // begin try (depth: 1)
{
goto IL_0408;
}
IL_03eb:
{
Il2CppObject * L_103 = V_3;
NullCheck(L_103);
Il2CppObject * L_104 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_103);
V_2 = ((TypeData_t3837952962 *)CastclassClass(L_104, TypeData_t3837952962_il2cpp_TypeInfo_var));
Hashtable_t3875263730 * L_105 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
TypeData_t3837952962 * L_106 = V_2;
NullCheck(L_106);
String_t* L_107 = TypeData_get_XmlType_m3918246226(L_106, /*hidden argument*/NULL);
TypeData_t3837952962 * L_108 = V_2;
NullCheck(L_105);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_105, L_107, L_108);
}
IL_0408:
{
Il2CppObject * L_109 = V_3;
NullCheck(L_109);
bool L_110 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_109);
if (L_110)
{
goto IL_03eb;
}
}
IL_0413:
{
IL2CPP_LEAVE(0x42D, FINALLY_0418);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0418;
}
FINALLY_0418:
{ // begin finally (depth: 1)
{
Il2CppObject * L_111 = V_3;
V_8 = ((Il2CppObject *)IsInst(L_111, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_112 = V_8;
if (L_112)
{
goto IL_0425;
}
}
IL_0424:
{
IL2CPP_END_FINALLY(1048)
}
IL_0425:
{
Il2CppObject * L_113 = V_8;
NullCheck(L_113);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_113);
IL2CPP_END_FINALLY(1048)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(1048)
{
IL2CPP_JUMP_TBL(0x42D, IL_042d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_042d:
{
Hashtable_t3875263730 * L_114 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_115 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_116 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_116, L_115, _stringLiteral3076014, (bool)1, /*hidden argument*/NULL);
NullCheck(L_114);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_114, _stringLiteral3076014, L_116);
Hashtable_t3875263730 * L_117 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_118 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_119 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_119, L_118, _stringLiteral3560141, (bool)1, /*hidden argument*/NULL);
NullCheck(L_117);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_117, _stringLiteral3560141, L_119);
Hashtable_t3875263730 * L_120 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_121 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_122 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_122, L_121, _stringLiteral693544686, (bool)1, /*hidden argument*/NULL);
NullCheck(L_120);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_120, _stringLiteral693544686, L_122);
Hashtable_t3875263730 * L_123 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_124 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_125 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_125, L_124, _stringLiteral3136949, (bool)1, /*hidden argument*/NULL);
NullCheck(L_123);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_123, _stringLiteral3136949, L_125);
Hashtable_t3875263730 * L_126 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_127 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_128 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_128, L_127, _stringLiteral2556356227, (bool)1, /*hidden argument*/NULL);
NullCheck(L_126);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_126, _stringLiteral2556356227, L_128);
Hashtable_t3875263730 * L_129 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_130 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_131 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_131, L_130, _stringLiteral97874244, (bool)1, /*hidden argument*/NULL);
NullCheck(L_129);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_129, _stringLiteral97874244, L_131);
Hashtable_t3875263730 * L_132 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_133 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_134 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_134, L_133, _stringLiteral2741234588, (bool)1, /*hidden argument*/NULL);
NullCheck(L_132);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_132, _stringLiteral2741234588, L_134);
Hashtable_t3875263730 * L_135 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_136 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(DateTime_t339033936_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_137 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_137, L_136, _stringLiteral104080000, (bool)1, /*hidden argument*/NULL);
NullCheck(L_135);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_135, _stringLiteral104080000, L_137);
Hashtable_t3875263730 * L_138 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_139 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_140 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_140, L_139, _stringLiteral2790258554, (bool)1, /*hidden argument*/NULL);
NullCheck(L_138);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_138, _stringLiteral2790258554, L_140);
Hashtable_t3875263730 * L_141 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_142 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_143 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_143, L_142, _stringLiteral598669337, (bool)1, /*hidden argument*/NULL);
NullCheck(L_141);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_141, _stringLiteral598669337, L_143);
Hashtable_t3875263730 * L_144 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_145 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_146 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_146, L_145, _stringLiteral2420395, (bool)1, /*hidden argument*/NULL);
NullCheck(L_144);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_144, _stringLiteral2420395, L_146);
Hashtable_t3875263730 * L_147 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_148 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_149 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_149, L_148, _stringLiteral2297370080, (bool)1, /*hidden argument*/NULL);
NullCheck(L_147);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_147, _stringLiteral2297370080, L_149);
Hashtable_t3875263730 * L_150 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_151 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_152 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_152, L_151, _stringLiteral2681377624, (bool)1, /*hidden argument*/NULL);
NullCheck(L_150);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_150, _stringLiteral2681377624, L_152);
Hashtable_t3875263730 * L_153 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_154 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_155 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_155, L_154, _stringLiteral1958052158, (bool)1, /*hidden argument*/NULL);
NullCheck(L_153);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_153, _stringLiteral1958052158, L_155);
Hashtable_t3875263730 * L_156 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_157 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_158 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_158, L_157, _stringLiteral1626473733, (bool)1, /*hidden argument*/NULL);
NullCheck(L_156);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_156, _stringLiteral1626473733, L_158);
Hashtable_t3875263730 * L_159 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_160 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_161 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_161, L_160, _stringLiteral2189983352, (bool)1, /*hidden argument*/NULL);
NullCheck(L_159);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_159, _stringLiteral2189983352, L_161);
Hashtable_t3875263730 * L_162 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_163 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_164 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_164, L_163, _stringLiteral1860163401, (bool)1, /*hidden argument*/NULL);
NullCheck(L_162);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_162, _stringLiteral1860163401, L_164);
Hashtable_t3875263730 * L_165 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_166 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_167 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_167, L_166, _stringLiteral2423673020, (bool)1, /*hidden argument*/NULL);
NullCheck(L_165);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_165, _stringLiteral2423673020, L_167);
Hashtable_t3875263730 * L_168 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_169 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_170 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_170, L_169, _stringLiteral2975479745, (bool)1, /*hidden argument*/NULL);
NullCheck(L_168);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_168, _stringLiteral2975479745, L_170);
Hashtable_t3875263730 * L_171 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_172 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_173 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_173, L_172, _stringLiteral2050021347, (bool)1, /*hidden argument*/NULL);
NullCheck(L_171);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_171, _stringLiteral2050021347, L_173);
Hashtable_t3875263730 * L_174 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_175 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t58506160_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_176 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_176, L_175, _stringLiteral2049608444, (bool)1, /*hidden argument*/NULL);
NullCheck(L_174);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_174, _stringLiteral2049608444, L_176);
Hashtable_t3875263730 * L_177 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_178 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_179 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_179, L_178, _stringLiteral2331, (bool)1, /*hidden argument*/NULL);
NullCheck(L_177);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_177, _stringLiteral2331, L_179);
Hashtable_t3875263730 * L_180 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_181 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_182 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_182, L_181, _stringLiteral69523832, (bool)1, /*hidden argument*/NULL);
NullCheck(L_180);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_180, _stringLiteral69523832, L_182);
Hashtable_t3875263730 * L_183 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_184 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_185 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_185, L_184, _stringLiteral2155238875, (bool)1, /*hidden argument*/NULL);
NullCheck(L_183);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_183, _stringLiteral2155238875, L_185);
Hashtable_t3875263730 * L_186 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_187 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_188 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_188, L_187, _stringLiteral2361019394, (bool)1, /*hidden argument*/NULL);
NullCheck(L_186);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_186, _stringLiteral2361019394, L_188);
Hashtable_t3875263730 * L_189 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_190 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_191 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_191, L_190, _stringLiteral110541305, (bool)1, /*hidden argument*/NULL);
NullCheck(L_189);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_189, _stringLiteral110541305, L_191);
Hashtable_t3875263730 * L_192 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_193 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_194 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_194, L_193, _stringLiteral3571808744, (bool)1, /*hidden argument*/NULL);
NullCheck(L_192);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_192, _stringLiteral3571808744, L_194);
Hashtable_t3875263730 * L_195 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_196 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_197 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_197, L_196, _stringLiteral2882303968, (bool)1, /*hidden argument*/NULL);
NullCheck(L_195);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_195, _stringLiteral2882303968, L_197);
Hashtable_t3875263730 * L_198 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_199 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t58506160_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_200 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_200, L_199, _stringLiteral2898763087, (bool)1, /*hidden argument*/NULL);
NullCheck(L_198);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_198, _stringLiteral2898763087, L_200);
Hashtable_t3875263730 * L_201 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
Type_t * L_202 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
TypeData_t3837952962 * L_203 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_203, L_202, _stringLiteral2302954900, (bool)1, /*hidden argument*/NULL);
NullCheck(L_201);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_201, _stringLiteral2302954900, L_203);
Hashtable_t3875263730 * L_204 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_204, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_205 = Hashtable_Synchronized_m4005846889(NULL /*static, unused*/, L_204, /*hidden argument*/NULL);
((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->set_nullableTypes_3(L_205);
Hashtable_t3875263730 * L_206 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
NullCheck(L_206);
Il2CppObject * L_207 = VirtFuncInvoker0< Il2CppObject * >::Invoke(29 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_206);
V_5 = L_207;
}
IL_0880:
try
{ // begin try (depth: 1)
{
goto IL_08d2;
}
IL_0885:
{
Il2CppObject * L_208 = V_5;
NullCheck(L_208);
Il2CppObject * L_209 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_208);
V_4 = ((*(DictionaryEntry_t130027246 *)((DictionaryEntry_t130027246 *)UnBox (L_209, DictionaryEntry_t130027246_il2cpp_TypeInfo_var))));
Il2CppObject * L_210 = DictionaryEntry_get_Value_m4281303039((&V_4), /*hidden argument*/NULL);
V_6 = ((TypeData_t3837952962 *)CastclassClass(L_210, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_211 = V_6;
NullCheck(L_211);
Type_t * L_212 = TypeData_get_Type_m2191724548(L_211, /*hidden argument*/NULL);
TypeData_t3837952962 * L_213 = V_6;
NullCheck(L_213);
String_t* L_214 = TypeData_get_XmlType_m3918246226(L_213, /*hidden argument*/NULL);
TypeData_t3837952962 * L_215 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_215, L_212, L_214, (bool)1, /*hidden argument*/NULL);
V_7 = L_215;
TypeData_t3837952962 * L_216 = V_7;
NullCheck(L_216);
TypeData_set_IsNullable_m1764739194(L_216, (bool)1, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_217 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nullableTypes_3();
Il2CppObject * L_218 = DictionaryEntry_get_Key_m3516209325((&V_4), /*hidden argument*/NULL);
TypeData_t3837952962 * L_219 = V_7;
NullCheck(L_217);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_217, L_218, L_219);
}
IL_08d2:
{
Il2CppObject * L_220 = V_5;
NullCheck(L_220);
bool L_221 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_220);
if (L_221)
{
goto IL_0885;
}
}
IL_08de:
{
IL2CPP_LEAVE(0x8F9, FINALLY_08e3);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_08e3;
}
FINALLY_08e3:
{ // begin finally (depth: 1)
{
Il2CppObject * L_222 = V_5;
V_9 = ((Il2CppObject *)IsInst(L_222, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_223 = V_9;
if (L_223)
{
goto IL_08f1;
}
}
IL_08f0:
{
IL2CPP_END_FINALLY(2275)
}
IL_08f1:
{
Il2CppObject * L_224 = V_9;
NullCheck(L_224);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_224);
IL2CPP_END_FINALLY(2275)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(2275)
{
IL2CPP_JUMP_TBL(0x8F9, IL_08f9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_08f9:
{
return;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern const uint32_t TypeTranslator_GetTypeData_m2692872845_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeTranslator_GetTypeData_m2692872845 (Il2CppObject * __this /* static, unused */, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_GetTypeData_m2692872845_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_1 = TypeTranslator_GetTypeData_m4275513353(NULL /*static, unused*/, L_0, (String_t*)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String)
extern const Il2CppType* Nullable_1_t2791603879_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1679363286;
extern Il2CppCodeGenString* _stringLiteral1149653019;
extern Il2CppCodeGenString* _stringLiteral39;
extern Il2CppCodeGenString* _stringLiteral2551;
extern const uint32_t TypeTranslator_GetTypeData_m4275513353_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeTranslator_GetTypeData_m4275513353 (Il2CppObject * __this /* static, unused */, Type_t * ___runtimeType, String_t* ___xmlDataType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_GetTypeData_m4275513353_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
bool V_1 = false;
TypeData_t3837952962 * V_2 = NULL;
TypeData_t3837952962 * V_3 = NULL;
TypeData_t3837952962 * V_4 = NULL;
TypeData_t3837952962 * V_5 = NULL;
TypeData_t3837952962 * V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
Type_t * V_9 = NULL;
TypeU5BU5D_t3431720054* V_10 = NULL;
int32_t V_11 = 0;
String_t* G_B25_0 = NULL;
String_t* G_B24_0 = NULL;
String_t* G_B26_0 = NULL;
String_t* G_B27_0 = NULL;
String_t* G_B27_1 = NULL;
{
Type_t * L_0 = ___runtimeType;
V_0 = L_0;
V_1 = (bool)0;
Type_t * L_1 = V_0;
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(88 /* System.Boolean System.Type::get_IsGenericType() */, L_1);
if (!L_2)
{
goto IL_0080;
}
}
{
Type_t * L_3 = V_0;
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(87 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Nullable_1_t2791603879_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5))))
{
goto IL_0080;
}
}
{
V_1 = (bool)1;
Type_t * L_6 = V_0;
NullCheck(L_6);
TypeU5BU5D_t3431720054* L_7 = VirtFuncInvoker0< TypeU5BU5D_t3431720054* >::Invoke(84 /* System.Type[] System.Type::GetGenericArguments() */, L_6);
NullCheck(L_7);
IL2CPP_ARRAY_BOUNDS_CHECK(L_7, 0);
int32_t L_8 = 0;
V_0 = ((L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)));
Type_t * L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_10 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
V_2 = L_10;
TypeData_t3837952962 * L_11 = V_2;
if (!L_11)
{
goto IL_0080;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_12 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nullableTypes_3();
TypeData_t3837952962 * L_13 = V_2;
NullCheck(L_13);
String_t* L_14 = TypeData_get_XmlType_m3918246226(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
Il2CppObject * L_15 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_12, L_14);
V_3 = ((TypeData_t3837952962 *)CastclassClass(L_15, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_16 = V_3;
if (L_16)
{
goto IL_007e;
}
}
{
Type_t * L_17 = V_0;
TypeData_t3837952962 * L_18 = V_2;
NullCheck(L_18);
String_t* L_19 = TypeData_get_XmlType_m3918246226(L_18, /*hidden argument*/NULL);
TypeData_t3837952962 * L_20 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_20, L_17, L_19, (bool)0, /*hidden argument*/NULL);
V_3 = L_20;
TypeData_t3837952962 * L_21 = V_3;
NullCheck(L_21);
TypeData_set_IsNullable_m1764739194(L_21, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_22 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nullableTypes_3();
TypeData_t3837952962 * L_23 = V_2;
NullCheck(L_23);
String_t* L_24 = TypeData_get_XmlType_m3918246226(L_23, /*hidden argument*/NULL);
TypeData_t3837952962 * L_25 = V_3;
NullCheck(L_22);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_22, L_24, L_25);
}
IL_007e:
{
TypeData_t3837952962 * L_26 = V_3;
return L_26;
}
IL_0080:
{
String_t* L_27 = ___xmlDataType;
if (!L_27)
{
goto IL_013d;
}
}
{
String_t* L_28 = ___xmlDataType;
NullCheck(L_28);
int32_t L_29 = String_get_Length_m2979997331(L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_013d;
}
}
{
String_t* L_30 = ___xmlDataType;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_31 = TypeTranslator_GetPrimitiveTypeData_m2824660061(NULL /*static, unused*/, L_30, /*hidden argument*/NULL);
V_4 = L_31;
Type_t * L_32 = V_0;
NullCheck(L_32);
bool L_33 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_32);
if (!L_33)
{
goto IL_013a;
}
}
{
Type_t * L_34 = V_0;
TypeData_t3837952962 * L_35 = V_4;
NullCheck(L_35);
Type_t * L_36 = TypeData_get_Type_m2191724548(L_35, /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_34) == ((Il2CppObject*)(Type_t *)L_36)))
{
goto IL_013a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_37 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveArrayTypes_2();
String_t* L_38 = ___xmlDataType;
NullCheck(L_37);
Il2CppObject * L_39 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_37, L_38);
V_5 = ((TypeData_t3837952962 *)CastclassClass(L_39, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_40 = V_5;
if (!L_40)
{
goto IL_00cd;
}
}
{
TypeData_t3837952962 * L_41 = V_5;
return L_41;
}
IL_00cd:
{
TypeData_t3837952962 * L_42 = V_4;
NullCheck(L_42);
Type_t * L_43 = TypeData_get_Type_m2191724548(L_42, /*hidden argument*/NULL);
Type_t * L_44 = V_0;
NullCheck(L_44);
Type_t * L_45 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_44);
if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_45))))
{
goto IL_0104;
}
}
{
Type_t * L_46 = V_0;
TypeData_t3837952962 * L_47 = V_4;
NullCheck(L_47);
String_t* L_48 = TypeData_get_XmlType_m3918246226(L_47, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
String_t* L_49 = TypeTranslator_GetArrayName_m359787500(NULL /*static, unused*/, L_48, /*hidden argument*/NULL);
TypeData_t3837952962 * L_50 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_50, L_46, L_49, (bool)0, /*hidden argument*/NULL);
V_5 = L_50;
Hashtable_t3875263730 * L_51 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveArrayTypes_2();
String_t* L_52 = ___xmlDataType;
TypeData_t3837952962 * L_53 = V_5;
NullCheck(L_51);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_51, L_52, L_53);
TypeData_t3837952962 * L_54 = V_5;
return L_54;
}
IL_0104:
{
ObjectU5BU5D_t11523773* L_55 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)5));
NullCheck(L_55);
IL2CPP_ARRAY_BOUNDS_CHECK(L_55, 0);
ArrayElementTypeCheck (L_55, _stringLiteral1679363286);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)_stringLiteral1679363286);
ObjectU5BU5D_t11523773* L_56 = L_55;
Type_t * L_57 = V_0;
NullCheck(L_57);
Type_t * L_58 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_57);
NullCheck(L_56);
IL2CPP_ARRAY_BOUNDS_CHECK(L_56, 1);
ArrayElementTypeCheck (L_56, L_58);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_58);
ObjectU5BU5D_t11523773* L_59 = L_56;
NullCheck(L_59);
IL2CPP_ARRAY_BOUNDS_CHECK(L_59, 2);
ArrayElementTypeCheck (L_59, _stringLiteral1149653019);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)_stringLiteral1149653019);
ObjectU5BU5D_t11523773* L_60 = L_59;
String_t* L_61 = ___xmlDataType;
NullCheck(L_60);
IL2CPP_ARRAY_BOUNDS_CHECK(L_60, 3);
ArrayElementTypeCheck (L_60, L_61);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_61);
ObjectU5BU5D_t11523773* L_62 = L_60;
NullCheck(L_62);
IL2CPP_ARRAY_BOUNDS_CHECK(L_62, 4);
ArrayElementTypeCheck (L_62, _stringLiteral39);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(4), (Il2CppObject *)_stringLiteral39);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_63 = String_Concat_m3016520001(NULL /*static, unused*/, L_62, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_64 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_64, L_63, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64);
}
IL_013a:
{
TypeData_t3837952962 * L_65 = V_4;
return L_65;
}
IL_013d:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_66 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_67 = ___runtimeType;
NullCheck(L_66);
Il2CppObject * L_68 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_66, L_67);
V_6 = ((TypeData_t3837952962 *)IsInstClass(L_68, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_69 = V_6;
if (!L_69)
{
goto IL_0159;
}
}
{
TypeData_t3837952962 * L_70 = V_6;
return L_70;
}
IL_0159:
{
Type_t * L_71 = V_0;
NullCheck(L_71);
bool L_72 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_71);
if (!L_72)
{
goto IL_0184;
}
}
{
Type_t * L_73 = V_0;
NullCheck(L_73);
Type_t * L_74 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_73);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_75 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_74, /*hidden argument*/NULL);
NullCheck(L_75);
String_t* L_76 = TypeData_get_XmlType_m3918246226(L_75, /*hidden argument*/NULL);
V_8 = L_76;
String_t* L_77 = V_8;
String_t* L_78 = TypeTranslator_GetArrayName_m359787500(NULL /*static, unused*/, L_77, /*hidden argument*/NULL);
V_7 = L_78;
goto IL_0241;
}
IL_0184:
{
Type_t * L_79 = V_0;
NullCheck(L_79);
bool L_80 = VirtFuncInvoker0< bool >::Invoke(88 /* System.Boolean System.Type::get_IsGenericType() */, L_79);
if (!L_80)
{
goto IL_0234;
}
}
{
Type_t * L_81 = V_0;
NullCheck(L_81);
bool L_82 = VirtFuncInvoker0< bool >::Invoke(86 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_81);
if (L_82)
{
goto IL_0234;
}
}
{
Type_t * L_83 = V_0;
NullCheck(L_83);
String_t* L_84 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_83);
Type_t * L_85 = V_0;
NullCheck(L_85);
String_t* L_86 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_85);
NullCheck(L_86);
int32_t L_87 = String_IndexOf_m2775210486(L_86, ((int32_t)96), /*hidden argument*/NULL);
NullCheck(L_84);
String_t* L_88 = String_Substring_m675079568(L_84, 0, L_87, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_89 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_88, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_90 = String_Concat_m138640077(NULL /*static, unused*/, L_89, _stringLiteral2551, /*hidden argument*/NULL);
V_7 = L_90;
Type_t * L_91 = V_0;
NullCheck(L_91);
TypeU5BU5D_t3431720054* L_92 = VirtFuncInvoker0< TypeU5BU5D_t3431720054* >::Invoke(84 /* System.Type[] System.Type::GetGenericArguments() */, L_91);
V_10 = L_92;
V_11 = 0;
goto IL_0224;
}
IL_01d4:
{
TypeU5BU5D_t3431720054* L_93 = V_10;
int32_t L_94 = V_11;
NullCheck(L_93);
IL2CPP_ARRAY_BOUNDS_CHECK(L_93, L_94);
int32_t L_95 = L_94;
V_9 = ((L_93)->GetAt(static_cast<il2cpp_array_size_t>(L_95)));
String_t* L_96 = V_7;
Type_t * L_97 = V_9;
NullCheck(L_97);
bool L_98 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_97);
G_B24_0 = L_96;
if (L_98)
{
G_B25_0 = L_96;
goto IL_01f5;
}
}
{
Type_t * L_99 = V_9;
NullCheck(L_99);
bool L_100 = VirtFuncInvoker0< bool >::Invoke(88 /* System.Boolean System.Type::get_IsGenericType() */, L_99);
G_B25_0 = G_B24_0;
if (!L_100)
{
G_B26_0 = G_B24_0;
goto IL_0206;
}
}
IL_01f5:
{
Type_t * L_101 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_102 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_101, /*hidden argument*/NULL);
NullCheck(L_102);
String_t* L_103 = TypeData_get_XmlType_m3918246226(L_102, /*hidden argument*/NULL);
G_B27_0 = L_103;
G_B27_1 = G_B25_0;
goto IL_0217;
}
IL_0206:
{
Type_t * L_104 = V_9;
NullCheck(L_104);
String_t* L_105 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_104);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_106 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_105, /*hidden argument*/NULL);
String_t* L_107 = CodeIdentifier_MakePascal_m2694599742(NULL /*static, unused*/, L_106, /*hidden argument*/NULL);
G_B27_0 = L_107;
G_B27_1 = G_B26_0;
}
IL_0217:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_108 = String_Concat_m138640077(NULL /*static, unused*/, G_B27_1, G_B27_0, /*hidden argument*/NULL);
V_7 = L_108;
int32_t L_109 = V_11;
V_11 = ((int32_t)((int32_t)L_109+(int32_t)1));
}
IL_0224:
{
int32_t L_110 = V_11;
TypeU5BU5D_t3431720054* L_111 = V_10;
NullCheck(L_111);
if ((((int32_t)L_110) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_111)->max_length)))))))
{
goto IL_01d4;
}
}
{
goto IL_0241;
}
IL_0234:
{
Type_t * L_112 = V_0;
NullCheck(L_112);
String_t* L_113 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_112);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_114 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_113, /*hidden argument*/NULL);
V_7 = L_114;
}
IL_0241:
{
Type_t * L_115 = V_0;
String_t* L_116 = V_7;
TypeData_t3837952962 * L_117 = (TypeData_t3837952962 *)il2cpp_codegen_object_new(TypeData_t3837952962_il2cpp_TypeInfo_var);
TypeData__ctor_m338275825(L_117, L_115, L_116, (bool)0, /*hidden argument*/NULL);
V_6 = L_117;
bool L_118 = V_1;
if (!L_118)
{
goto IL_025a;
}
}
{
TypeData_t3837952962 * L_119 = V_6;
NullCheck(L_119);
TypeData_set_IsNullable_m1764739194(L_119, (bool)1, /*hidden argument*/NULL);
}
IL_025a:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_120 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nameCache_0();
Type_t * L_121 = ___runtimeType;
TypeData_t3837952962 * L_122 = V_6;
NullCheck(L_120);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_120, L_121, L_122);
TypeData_t3837952962 * L_123 = V_6;
return L_123;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern const uint32_t TypeTranslator_GetPrimitiveTypeData_m2824660061_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeTranslator_GetPrimitiveTypeData_m2824660061 (Il2CppObject * __this /* static, unused */, String_t* ___typeName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_GetPrimitiveTypeData_m2824660061_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___typeName;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_1 = TypeTranslator_GetPrimitiveTypeData_m4210854272(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String,System.Boolean)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral293517783;
extern Il2CppCodeGenString* _stringLiteral3189431144;
extern const uint32_t TypeTranslator_GetPrimitiveTypeData_m4210854272_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeTranslator_GetPrimitiveTypeData_m4210854272 (Il2CppObject * __this /* static, unused */, String_t* ___typeName, bool ___nullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_GetPrimitiveTypeData_m4210854272_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
Hashtable_t3875263730 * V_1 = NULL;
Hashtable_t3875263730 * G_B7_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_0 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
String_t* L_1 = ___typeName;
NullCheck(L_0);
Il2CppObject * L_2 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
V_0 = ((TypeData_t3837952962 *)CastclassClass(L_2, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_3 = V_0;
if (!L_3)
{
goto IL_0029;
}
}
{
TypeData_t3837952962 * L_4 = V_0;
NullCheck(L_4);
Type_t * L_5 = TypeData_get_Type_m2191724548(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(36 /* System.Boolean System.Type::get_IsValueType() */, L_5);
if (L_6)
{
goto IL_0029;
}
}
{
TypeData_t3837952962 * L_7 = V_0;
return L_7;
}
IL_0029:
{
bool L_8 = ___nullable;
if (!L_8)
{
goto IL_0043;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_9 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nullableTypes_3();
if (!L_9)
{
goto IL_0043;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_10 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_nullableTypes_3();
G_B7_0 = L_10;
goto IL_0048;
}
IL_0043:
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_11 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
G_B7_0 = L_11;
}
IL_0048:
{
V_1 = G_B7_0;
Hashtable_t3875263730 * L_12 = V_1;
String_t* L_13 = ___typeName;
NullCheck(L_12);
Il2CppObject * L_14 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_12, L_13);
V_0 = ((TypeData_t3837952962 *)CastclassClass(L_14, TypeData_t3837952962_il2cpp_TypeInfo_var));
TypeData_t3837952962 * L_15 = V_0;
if (L_15)
{
goto IL_0072;
}
}
{
String_t* L_16 = ___typeName;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_17 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral293517783, L_16, _stringLiteral3189431144, /*hidden argument*/NULL);
NotSupportedException_t1374155497 * L_18 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_18, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18);
}
IL_0072:
{
TypeData_t3837952962 * L_19 = V_0;
return L_19;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::FindPrimitiveTypeData(System.String)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern const uint32_t TypeTranslator_FindPrimitiveTypeData_m801086334_MetadataUsageId;
extern "C" TypeData_t3837952962 * TypeTranslator_FindPrimitiveTypeData_m801086334 (Il2CppObject * __this /* static, unused */, String_t* ___typeName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_FindPrimitiveTypeData_m801086334_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
Hashtable_t3875263730 * L_0 = ((TypeTranslator_t236292786_StaticFields*)TypeTranslator_t236292786_il2cpp_TypeInfo_var->static_fields)->get_primitiveTypes_1();
String_t* L_1 = ___typeName;
NullCheck(L_0);
Il2CppObject * L_2 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
return ((TypeData_t3837952962 *)CastclassClass(L_2, TypeData_t3837952962_il2cpp_TypeInfo_var));
}
}
// System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* Char_t2778706699_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral930210288;
extern const uint32_t TypeTranslator_GetArrayName_m359787500_MetadataUsageId;
extern "C" String_t* TypeTranslator_GetArrayName_m359787500 (Il2CppObject * __this /* static, unused */, String_t* ___elemName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_GetArrayName_m359787500_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___elemName;
NullCheck(L_0);
uint16_t L_1 = String_get_Chars_m3015341861(L_0, 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_2 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_t2778706699_il2cpp_TypeInfo_var);
uint16_t L_3 = Char_ToUpper_m2271917723(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
uint16_t L_4 = L_3;
Il2CppObject * L_5 = Box(Char_t2778706699_il2cpp_TypeInfo_var, &L_4);
String_t* L_6 = ___elemName;
NullCheck(L_6);
String_t* L_7 = String_Substring_m2809233063(L_6, 1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = String_Concat_m2809334143(NULL /*static, unused*/, _stringLiteral930210288, L_5, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral58;
extern Il2CppCodeGenString* _stringLiteral91;
extern Il2CppCodeGenString* _stringLiteral3949340057;
extern const uint32_t TypeTranslator_ParseArrayType_m2894191449_MetadataUsageId;
extern "C" void TypeTranslator_ParseArrayType_m2894191449 (Il2CppObject * __this /* static, unused */, String_t* ___arrayType, String_t** ___type, String_t** ___ns, String_t** ___dimensions, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (TypeTranslator_ParseArrayType_m2894191449_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = ___arrayType;
NullCheck(L_0);
int32_t L_1 = String_LastIndexOf_m2747144337(L_0, _stringLiteral58, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_001f;
}
}
{
String_t** L_3 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
*((Il2CppObject **)(L_3)) = (Il2CppObject *)L_4;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_3), (Il2CppObject *)L_4);
goto IL_0029;
}
IL_001f:
{
String_t** L_5 = ___ns;
String_t* L_6 = ___arrayType;
int32_t L_7 = V_0;
NullCheck(L_6);
String_t* L_8 = String_Substring_m675079568(L_6, 0, L_7, /*hidden argument*/NULL);
*((Il2CppObject **)(L_5)) = (Il2CppObject *)L_8;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_5), (Il2CppObject *)L_8);
}
IL_0029:
{
String_t* L_9 = ___arrayType;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11 = String_IndexOf_m1991631068(L_9, _stringLiteral91, ((int32_t)((int32_t)L_10+(int32_t)1)), /*hidden argument*/NULL);
V_1 = L_11;
int32_t L_12 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)(-1)))))
{
goto IL_0050;
}
}
{
String_t* L_13 = ___arrayType;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_14 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral3949340057, L_13, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_15 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15);
}
IL_0050:
{
String_t** L_16 = ___type;
String_t* L_17 = ___arrayType;
int32_t L_18 = V_0;
int32_t L_19 = V_1;
int32_t L_20 = V_0;
NullCheck(L_17);
String_t* L_21 = String_Substring_m675079568(L_17, ((int32_t)((int32_t)L_18+(int32_t)1)), ((int32_t)((int32_t)((int32_t)((int32_t)L_19-(int32_t)L_20))-(int32_t)1)), /*hidden argument*/NULL);
*((Il2CppObject **)(L_16)) = (Il2CppObject *)L_21;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_16), (Il2CppObject *)L_21);
String_t** L_22 = ___dimensions;
String_t* L_23 = ___arrayType;
int32_t L_24 = V_1;
NullCheck(L_23);
String_t* L_25 = String_Substring_m2809233063(L_23, L_24, /*hidden argument*/NULL);
*((Il2CppObject **)(L_22)) = (Il2CppObject *)L_25;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_22), (Il2CppObject *)L_25);
return;
}
}
// System.Void System.Xml.Serialization.UnreferencedObjectEventArgs::.ctor(System.Object,System.String)
extern TypeInfo* EventArgs_t516466188_il2cpp_TypeInfo_var;
extern const uint32_t UnreferencedObjectEventArgs__ctor_m1650256605_MetadataUsageId;
extern "C" void UnreferencedObjectEventArgs__ctor_m1650256605 (UnreferencedObjectEventArgs_t3619478372 * __this, Il2CppObject * ___o, String_t* ___id, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (UnreferencedObjectEventArgs__ctor_m1650256605_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t516466188_il2cpp_TypeInfo_var);
EventArgs__ctor_m1904770202(__this, /*hidden argument*/NULL);
Il2CppObject * L_0 = ___o;
__this->set_unreferencedObject_1(L_0);
String_t* L_1 = ___id;
__this->set_unreferencedId_2(L_1);
return;
}
}
// System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::.ctor(System.Object,System.IntPtr)
extern "C" void UnreferencedObjectEventHandler__ctor_m2002732822 (UnreferencedObjectEventHandler_t3729189727 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::Invoke(System.Object,System.Xml.Serialization.UnreferencedObjectEventArgs)
extern "C" void UnreferencedObjectEventHandler_Invoke_m3070837264 (UnreferencedObjectEventHandler_t3729189727 * __this, Il2CppObject * ___sender, UnreferencedObjectEventArgs_t3619478372 * ___e, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
UnreferencedObjectEventHandler_Invoke_m3070837264((UnreferencedObjectEventHandler_t3729189727 *)__this->get_prev_9(),___sender, ___e, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___sender, UnreferencedObjectEventArgs_t3619478372 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___sender, UnreferencedObjectEventArgs_t3619478372 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, UnreferencedObjectEventArgs_t3619478372 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_UnreferencedObjectEventHandler_t3729189727(Il2CppObject* delegate, Il2CppObject * ___sender, UnreferencedObjectEventArgs_t3619478372 * ___e)
{
// Marshaling of parameter '___sender' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.UnreferencedObjectEventHandler::BeginInvoke(System.Object,System.Xml.Serialization.UnreferencedObjectEventArgs,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * UnreferencedObjectEventHandler_BeginInvoke_m1015067715 (UnreferencedObjectEventHandler_t3729189727 * __this, Il2CppObject * ___sender, UnreferencedObjectEventArgs_t3619478372 * ___e, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender;
__d_args[1] = ___e;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::EndInvoke(System.IAsyncResult)
extern "C" void UnreferencedObjectEventHandler_EndInvoke_m3647845414 (UnreferencedObjectEventHandler_t3729189727 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Name()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlAnyElementAttribute_get_Name_m2515841757_MetadataUsageId;
extern "C" String_t* XmlAnyElementAttribute_get_Name_m2515841757 (XmlAnyElementAttribute_t3085069619 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAnyElementAttribute_get_Name_m2515841757_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_elementName_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_elementName_0();
return L_2;
}
}
// System.String System.Xml.Serialization.XmlAnyElementAttribute::get_Namespace()
extern "C" String_t* XmlAnyElementAttribute_get_Namespace_m946497579 (XmlAnyElementAttribute_t3085069619 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral83274619;
extern const uint32_t XmlAnyElementAttribute_AddKeyHash_m1799242738_MetadataUsageId;
extern "C" void XmlAnyElementAttribute_AddKeyHash_m1799242738 (XmlAnyElementAttribute_t3085069619 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAnyElementAttribute_AddKeyHash_m1799242738_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral83274619, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_elementName_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
NullCheck(L_5);
StringBuilder_Append_m2143093878(L_5, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::.ctor()
extern "C" void XmlAnyElementAttributes__ctor_m2532050011 (XmlAnyElementAttributes_t788445468 * __this, const MethodInfo* method)
{
{
CollectionBase__ctor_m3181013581(__this, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Serialization.XmlAnyElementAttribute System.Xml.Serialization.XmlAnyElementAttributes::get_Item(System.Int32)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var;
extern const uint32_t XmlAnyElementAttributes_get_Item_m516836640_MetadataUsageId;
extern "C" XmlAnyElementAttribute_t3085069619 * XmlAnyElementAttributes_get_Item_m516836640 (XmlAnyElementAttributes_t788445468 * __this, int32_t ___index, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAnyElementAttributes_get_Item_m516836640_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index;
NullCheck(L_0);
Il2CppObject * L_2 = InterfaceFuncInvoker1< Il2CppObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlAnyElementAttribute_t3085069619 *)CastclassClass(L_2, XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlAnyElementAttributes::Add(System.Xml.Serialization.XmlAnyElementAttribute)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern const uint32_t XmlAnyElementAttributes_Add_m3455379473_MetadataUsageId;
extern "C" int32_t XmlAnyElementAttributes_Add_m3455379473 (XmlAnyElementAttributes_t788445468 * __this, XmlAnyElementAttribute_t3085069619 * ___attribute, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAnyElementAttributes_Add_m3455379473_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
XmlAnyElementAttribute_t3085069619 * L_1 = ___attribute;
NullCheck(L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAnyElementAttributes::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral2581514802;
extern const uint32_t XmlAnyElementAttributes_AddKeyHash_m3267974357_MetadataUsageId;
extern "C" void XmlAnyElementAttributes_AddKeyHash_m3267974357 (XmlAnyElementAttributes_t788445468 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAnyElementAttributes_AddKeyHash_m3267974357_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
StringBuilder_t3822575854 * L_1 = ___sb;
NullCheck(L_1);
StringBuilder_Append_m3898090075(L_1, _stringLiteral2581514802, /*hidden argument*/NULL);
V_0 = 0;
goto IL_0030;
}
IL_001f:
{
int32_t L_2 = V_0;
XmlAnyElementAttribute_t3085069619 * L_3 = XmlAnyElementAttributes_get_Item_m516836640(__this, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_4 = ___sb;
NullCheck(L_3);
XmlAnyElementAttribute_AddKeyHash_m1799242738(L_3, L_4, /*hidden argument*/NULL);
int32_t L_5 = V_0;
V_0 = ((int32_t)((int32_t)L_5+(int32_t)1));
}
IL_0030:
{
int32_t L_6 = V_0;
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_001f;
}
}
{
StringBuilder_t3822575854 * L_8 = ___sb;
NullCheck(L_8);
StringBuilder_Append_m2143093878(L_8, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlArrayAttribute::get_ElementName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlArrayAttribute_get_ElementName_m3133730008_MetadataUsageId;
extern "C" String_t* XmlArrayAttribute_get_ElementName_m3133730008 (XmlArrayAttribute_t229420472 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayAttribute_get_ElementName_m3133730008_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_elementName_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_elementName_0();
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayAttribute::get_Form()
extern "C" int32_t XmlArrayAttribute_get_Form_m3906345824 (XmlArrayAttribute_t229420472 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_form_1();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlArrayAttribute::get_IsNullable()
extern "C" bool XmlArrayAttribute_get_IsNullable_m2175299809 (XmlArrayAttribute_t229420472 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isNullable_2();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlArrayAttribute::get_Namespace()
extern "C" String_t* XmlArrayAttribute_get_Namespace_m1975136652 (XmlArrayAttribute_t229420472 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_3();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlArrayAttribute::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral83271364;
extern const uint32_t XmlArrayAttribute_AddKeyHash_m2988781881_MetadataUsageId;
extern "C" void XmlArrayAttribute_AddKeyHash_m2988781881 (XmlArrayAttribute_t229420472 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayAttribute_AddKeyHash_m2988781881_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral83271364, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_3();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_elementName_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
int32_t L_6 = __this->get_form_1();
int32_t L_7 = L_6;
Il2CppObject * L_8 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_7);
NullCheck((Enum_t2778772662 *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_8);
int32_t L_10 = ((int32_t)0);
Il2CppObject * L_11 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_10);
NullCheck((Enum_t2778772662 *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_11);
KeyHelper_AddField_m2575778134(NULL /*static, unused*/, L_5, 3, L_9, L_12, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_13 = ___sb;
bool L_14 = __this->get_isNullable_2();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_13, 4, L_14, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_15 = ___sb;
NullCheck(L_15);
StringBuilder_Append_m2143093878(L_15, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_DataType()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlArrayItemAttribute_get_DataType_m2251003074_MetadataUsageId;
extern "C" String_t* XmlArrayItemAttribute_get_DataType_m2251003074 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttribute_get_DataType_m2251003074_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_dataType_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_dataType_0();
return L_2;
}
}
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_ElementName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlArrayItemAttribute_get_ElementName_m2554306315_MetadataUsageId;
extern "C" String_t* XmlArrayItemAttribute_get_ElementName_m2554306315 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttribute_get_ElementName_m2554306315_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_elementName_1();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_elementName_1();
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlArrayItemAttribute::get_Form()
extern "C" int32_t XmlArrayItemAttribute_get_Form_m1937043213 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_form_2();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlArrayItemAttribute::get_Namespace()
extern "C" String_t* XmlArrayItemAttribute_get_Namespace_m4186821759 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_3();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlArrayItemAttribute::get_IsNullable()
extern "C" bool XmlArrayItemAttribute_get_IsNullable_m3406344654 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isNullable_4();
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlArrayItemAttribute::get_Type()
extern "C" Type_t * XmlArrayItemAttribute_get_Type_m1254504111 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_6();
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlArrayItemAttribute::get_NestingLevel()
extern "C" int32_t XmlArrayItemAttribute_get_NestingLevel_m3108101463 (XmlArrayItemAttribute_t2429429989 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_nestingLevel_5();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttribute::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral83278463;
extern const uint32_t XmlArrayItemAttribute_AddKeyHash_m804713068_MetadataUsageId;
extern "C" void XmlArrayItemAttribute_AddKeyHash_m804713068 (XmlArrayItemAttribute_t2429429989 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttribute_AddKeyHash_m804713068_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral83278463, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_3();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_elementName_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
int32_t L_6 = __this->get_form_2();
int32_t L_7 = L_6;
Il2CppObject * L_8 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_7);
NullCheck((Enum_t2778772662 *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_8);
int32_t L_10 = ((int32_t)0);
Il2CppObject * L_11 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_10);
NullCheck((Enum_t2778772662 *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_11);
KeyHelper_AddField_m2575778134(NULL /*static, unused*/, L_5, 3, L_9, L_12, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_13 = ___sb;
bool L_14 = __this->get_isNullable_4();
KeyHelper_AddField_m2484863166(NULL /*static, unused*/, L_13, 4, L_14, (bool)1, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_15 = ___sb;
String_t* L_16 = __this->get_dataType_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_15, 5, L_16, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_17 = ___sb;
int32_t L_18 = __this->get_nestingLevel_5();
KeyHelper_AddField_m2576662206(NULL /*static, unused*/, L_17, 6, L_18, 0, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_19 = ___sb;
Type_t * L_20 = __this->get_type_6();
KeyHelper_AddField_m2451117329(NULL /*static, unused*/, L_19, 7, L_20, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_21 = ___sb;
NullCheck(L_21);
StringBuilder_Append_m2143093878(L_21, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::.ctor()
extern "C" void XmlArrayItemAttributes__ctor_m3082986401 (XmlArrayItemAttributes_t1938453418 * __this, const MethodInfo* method)
{
{
CollectionBase__ctor_m3181013581(__this, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Serialization.XmlArrayItemAttribute System.Xml.Serialization.XmlArrayItemAttributes::get_Item(System.Int32)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var;
extern const uint32_t XmlArrayItemAttributes_get_Item_m3957861074_MetadataUsageId;
extern "C" XmlArrayItemAttribute_t2429429989 * XmlArrayItemAttributes_get_Item_m3957861074 (XmlArrayItemAttributes_t1938453418 * __this, int32_t ___index, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttributes_get_Item_m3957861074_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index;
NullCheck(L_0);
Il2CppObject * L_2 = InterfaceFuncInvoker1< Il2CppObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlArrayItemAttribute_t2429429989 *)CastclassClass(L_2, XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlArrayItemAttributes::Add(System.Xml.Serialization.XmlArrayItemAttribute)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern const uint32_t XmlArrayItemAttributes_Add_m3743338767_MetadataUsageId;
extern "C" int32_t XmlArrayItemAttributes_Add_m3743338767 (XmlArrayItemAttributes_t1938453418 * __this, XmlArrayItemAttribute_t2429429989 * ___attribute, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttributes_Add_m3743338767_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
XmlArrayItemAttribute_t2429429989 * L_1 = ___attribute;
NullCheck(L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlArrayItemAttributes::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral2581633966;
extern const uint32_t XmlArrayItemAttributes_AddKeyHash_m2502325659_MetadataUsageId;
extern "C" void XmlArrayItemAttributes_AddKeyHash_m2502325659 (XmlArrayItemAttributes_t1938453418 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlArrayItemAttributes_AddKeyHash_m2502325659_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
StringBuilder_t3822575854 * L_1 = ___sb;
NullCheck(L_1);
StringBuilder_Append_m3898090075(L_1, _stringLiteral2581633966, /*hidden argument*/NULL);
V_0 = 0;
goto IL_0030;
}
IL_001f:
{
int32_t L_2 = V_0;
XmlArrayItemAttribute_t2429429989 * L_3 = XmlArrayItemAttributes_get_Item_m3957861074(__this, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_4 = ___sb;
NullCheck(L_3);
XmlArrayItemAttribute_AddKeyHash_m804713068(L_3, L_4, /*hidden argument*/NULL);
int32_t L_5 = V_0;
V_0 = ((int32_t)((int32_t)L_5+(int32_t)1));
}
IL_0030:
{
int32_t L_6 = V_0;
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_001f;
}
}
{
StringBuilder_t3822575854 * L_8 = ___sb;
NullCheck(L_8);
StringBuilder_Append_m2143093878(L_8, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributeAttribute::.ctor(System.String)
extern "C" void XmlAttributeAttribute__ctor_m3345415296 (XmlAttributeAttribute_t949177685 * __this, String_t* ___attributeName, const MethodInfo* method)
{
{
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
String_t* L_0 = ___attributeName;
__this->set_attributeName_0(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_AttributeName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeAttribute_get_AttributeName_m3405936507_MetadataUsageId;
extern "C" String_t* XmlAttributeAttribute_get_AttributeName_m3405936507 (XmlAttributeAttribute_t949177685 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeAttribute_get_AttributeName_m3405936507_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_attributeName_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_attributeName_0();
return L_2;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_DataType()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeAttribute_get_DataType_m830069042_MetadataUsageId;
extern "C" String_t* XmlAttributeAttribute_get_DataType_m830069042 (XmlAttributeAttribute_t949177685 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeAttribute_get_DataType_m830069042_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_dataType_1();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_dataType_1();
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAttributeAttribute::set_DataType(System.String)
extern "C" void XmlAttributeAttribute_set_DataType_m1121427615 (XmlAttributeAttribute_t949177685 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set_dataType_1(L_0);
return;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlAttributeAttribute::get_Form()
extern "C" int32_t XmlAttributeAttribute_get_Form_m1643572093 (XmlAttributeAttribute_t949177685 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_form_3();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlAttributeAttribute::get_Namespace()
extern "C" String_t* XmlAttributeAttribute_get_Namespace_m3087539727 (XmlAttributeAttribute_t949177685 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_4();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAttributeAttribute::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2686120;
extern const uint32_t XmlAttributeAttribute_AddKeyHash_m1468706812_MetadataUsageId;
extern "C" void XmlAttributeAttribute_AddKeyHash_m1468706812 (XmlAttributeAttribute_t949177685 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeAttribute_AddKeyHash_m1468706812_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2686120, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_4();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_attributeName_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
int32_t L_6 = __this->get_form_3();
int32_t L_7 = L_6;
Il2CppObject * L_8 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_7);
NullCheck((Enum_t2778772662 *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_8);
int32_t L_10 = ((int32_t)0);
Il2CppObject * L_11 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_10);
NullCheck((Enum_t2778772662 *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_11);
KeyHelper_AddField_m2575778134(NULL /*static, unused*/, L_5, 3, L_9, L_12, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_13 = ___sb;
String_t* L_14 = __this->get_dataType_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_13, 4, L_14, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_15 = ___sb;
Type_t * L_16 = __this->get_type_2();
KeyHelper_AddField_m2451117329(NULL /*static, unused*/, L_15, 5, L_16, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_17 = ___sb;
NullCheck(L_17);
StringBuilder_Append_m2143093878(L_17, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributeEventArgs::.ctor(System.Xml.XmlAttribute,System.Int32,System.Int32,System.Object)
extern TypeInfo* EventArgs_t516466188_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeEventArgs__ctor_m3149969214_MetadataUsageId;
extern "C" void XmlAttributeEventArgs__ctor_m3149969214 (XmlAttributeEventArgs_t966950224 * __this, XmlAttribute_t2022155821 * ___attr, int32_t ___lineNum, int32_t ___linePos, Il2CppObject * ___source, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeEventArgs__ctor_m3149969214_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t516466188_il2cpp_TypeInfo_var);
EventArgs__ctor_m1904770202(__this, /*hidden argument*/NULL);
XmlAttribute_t2022155821 * L_0 = ___attr;
__this->set_attr_1(L_0);
int32_t L_1 = ___lineNum;
__this->set_lineNumber_2(L_1);
int32_t L_2 = ___linePos;
__this->set_linePosition_3(L_2);
Il2CppObject * L_3 = ___source;
__this->set_obj_4(L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributeEventArgs::set_ExpectedAttributes(System.String)
extern "C" void XmlAttributeEventArgs_set_ExpectedAttributes_m4087893561 (XmlAttributeEventArgs_t966950224 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set_expectedAttributes_5(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributeEventHandler::.ctor(System.Object,System.IntPtr)
extern "C" void XmlAttributeEventHandler__ctor_m3385711658 (XmlAttributeEventHandler_t1071444467 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlAttributeEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlAttributeEventArgs)
extern "C" void XmlAttributeEventHandler_Invoke_m337257336 (XmlAttributeEventHandler_t1071444467 * __this, Il2CppObject * ___sender, XmlAttributeEventArgs_t966950224 * ___e, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlAttributeEventHandler_Invoke_m337257336((XmlAttributeEventHandler_t1071444467 *)__this->get_prev_9(),___sender, ___e, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___sender, XmlAttributeEventArgs_t966950224 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___sender, XmlAttributeEventArgs_t966950224 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, XmlAttributeEventArgs_t966950224 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlAttributeEventHandler_t1071444467(Il2CppObject* delegate, Il2CppObject * ___sender, XmlAttributeEventArgs_t966950224 * ___e)
{
// Marshaling of parameter '___sender' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlAttributeEventHandler::BeginInvoke(System.Object,System.Xml.Serialization.XmlAttributeEventArgs,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlAttributeEventHandler_BeginInvoke_m1319839811 (XmlAttributeEventHandler_t1071444467 * __this, Il2CppObject * ___sender, XmlAttributeEventArgs_t966950224 * ___e, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender;
__d_args[1] = ___e;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlAttributeEventHandler::EndInvoke(System.IAsyncResult)
extern "C" void XmlAttributeEventHandler_EndInvoke_m1492775738 (XmlAttributeEventHandler_t1071444467 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlAttributeOverrides::.ctor()
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeOverrides__ctor_m3813648023_MetadataUsageId;
extern "C" void XmlAttributeOverrides__ctor_m3813648023 (XmlAttributeOverrides_t186122464 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeOverrides__ctor_m3813648023_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
__this->set_overrides_0(L_0);
return;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeOverrides_get_Item_m4109820025_MetadataUsageId;
extern "C" XmlAttributes_t2892492364 * XmlAttributeOverrides_get_Item_m4109820025 (XmlAttributeOverrides_t186122464 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeOverrides_get_Item_m4109820025_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlAttributes_t2892492364 * L_2 = XmlAttributeOverrides_get_Item_m2493333749(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlAttributeOverrides::get_Item(System.Type,System.String)
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeOverrides_get_Item_m2493333749_MetadataUsageId;
extern "C" XmlAttributes_t2892492364 * XmlAttributeOverrides_get_Item_m2493333749 (XmlAttributeOverrides_t186122464 * __this, Type_t * ___type, String_t* ___member, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeOverrides_get_Item_m2493333749_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = __this->get_overrides_0();
Type_t * L_1 = ___type;
String_t* L_2 = ___member;
TypeMember_t540108850 * L_3 = XmlAttributeOverrides_GetKey_m903911828(__this, L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_0);
Il2CppObject * L_4 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3);
return ((XmlAttributes_t2892492364 *)CastclassClass(L_4, XmlAttributes_t2892492364_il2cpp_TypeInfo_var));
}
}
// System.Xml.Serialization.TypeMember System.Xml.Serialization.XmlAttributeOverrides::GetKey(System.Type,System.String)
extern TypeInfo* TypeMember_t540108850_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributeOverrides_GetKey_m903911828_MetadataUsageId;
extern "C" TypeMember_t540108850 * XmlAttributeOverrides_GetKey_m903911828 (XmlAttributeOverrides_t186122464 * __this, Type_t * ___type, String_t* ___member, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeOverrides_GetKey_m903911828_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___type;
String_t* L_1 = ___member;
TypeMember_t540108850 * L_2 = (TypeMember_t540108850 *)il2cpp_codegen_object_new(TypeMember_t540108850_il2cpp_TypeInfo_var);
TypeMember__ctor_m3361941244(L_2, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlAttributeOverrides::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* DictionaryEntry_t130027246_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern TypeInfo* IFormattable_t2460033475_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2686554;
extern Il2CppCodeGenString* _stringLiteral124;
extern const uint32_t XmlAttributeOverrides_AddKeyHash_m3040110097_MetadataUsageId;
extern "C" void XmlAttributeOverrides_AddKeyHash_m3040110097 (XmlAttributeOverrides_t186122464 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributeOverrides_AddKeyHash_m3040110097_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
DictionaryEntry_t130027246 V_0;
memset(&V_0, 0, sizeof(V_0));
Il2CppObject * V_1 = NULL;
XmlAttributes_t2892492364 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
StringBuilder_t3822575854 * G_B4_0 = NULL;
StringBuilder_t3822575854 * G_B3_0 = NULL;
String_t* G_B5_0 = NULL;
StringBuilder_t3822575854 * G_B5_1 = NULL;
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2686554, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_1 = __this->get_overrides_0();
NullCheck(L_1);
Il2CppObject * L_2 = VirtFuncInvoker0< Il2CppObject * >::Invoke(29 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_1);
V_1 = L_2;
}
IL_0018:
try
{ // begin try (depth: 1)
{
goto IL_007b;
}
IL_001d:
{
Il2CppObject * L_3 = V_1;
NullCheck(L_3);
Il2CppObject * L_4 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_3);
V_0 = ((*(DictionaryEntry_t130027246 *)((DictionaryEntry_t130027246 *)UnBox (L_4, DictionaryEntry_t130027246_il2cpp_TypeInfo_var))));
Il2CppObject * L_5 = DictionaryEntry_get_Value_m4281303039((&V_0), /*hidden argument*/NULL);
V_2 = ((XmlAttributes_t2892492364 *)CastclassClass(L_5, XmlAttributes_t2892492364_il2cpp_TypeInfo_var));
Il2CppObject * L_6 = DictionaryEntry_get_Key_m3516209325((&V_0), /*hidden argument*/NULL);
V_3 = ((Il2CppObject *)IsInst(L_6, IFormattable_t2460033475_il2cpp_TypeInfo_var));
StringBuilder_t3822575854 * L_7 = ___sb;
Il2CppObject * L_8 = V_3;
G_B3_0 = L_7;
if (!L_8)
{
G_B4_0 = L_7;
goto IL_005b;
}
}
IL_004a:
{
Il2CppObject * L_9 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_10 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck(L_9);
String_t* L_11 = InterfaceFuncInvoker2< String_t*, String_t*, Il2CppObject * >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t2460033475_il2cpp_TypeInfo_var, L_9, (String_t*)NULL, L_10);
G_B5_0 = L_11;
G_B5_1 = G_B3_0;
goto IL_0067;
}
IL_005b:
{
Il2CppObject * L_12 = DictionaryEntry_get_Key_m3516209325((&V_0), /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
G_B5_0 = L_13;
G_B5_1 = G_B4_0;
}
IL_0067:
{
NullCheck(G_B5_1);
StringBuilder_t3822575854 * L_14 = StringBuilder_Append_m3898090075(G_B5_1, G_B5_0, /*hidden argument*/NULL);
NullCheck(L_14);
StringBuilder_Append_m2143093878(L_14, ((int32_t)32), /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_15 = V_2;
StringBuilder_t3822575854 * L_16 = ___sb;
NullCheck(L_15);
XmlAttributes_AddKeyHash_m680684837(L_15, L_16, /*hidden argument*/NULL);
}
IL_007b:
{
Il2CppObject * L_17 = V_1;
NullCheck(L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_001d;
}
}
IL_0086:
{
IL2CPP_LEAVE(0xA0, FINALLY_008b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_008b;
}
FINALLY_008b:
{ // begin finally (depth: 1)
{
Il2CppObject * L_19 = V_1;
V_4 = ((Il2CppObject *)IsInst(L_19, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_20 = V_4;
if (L_20)
{
goto IL_0098;
}
}
IL_0097:
{
IL2CPP_END_FINALLY(139)
}
IL_0098:
{
Il2CppObject * L_21 = V_4;
NullCheck(L_21);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_21);
IL2CPP_END_FINALLY(139)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(139)
{
IL2CPP_JUMP_TBL(0xA0, IL_00a0)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00a0:
{
StringBuilder_t3822575854 * L_22 = ___sb;
NullCheck(L_22);
StringBuilder_Append_m3898090075(L_22, _stringLiteral124, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributes::.ctor()
extern TypeInfo* XmlAnyElementAttributes_t788445468_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayItemAttributes_t1938453418_il2cpp_TypeInfo_var;
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementAttributes_t485582810_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributes__ctor_m2188740779_MetadataUsageId;
extern "C" void XmlAttributes__ctor_m2188740779 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributes__ctor_m2188740779_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlAnyElementAttributes_t788445468 * L_0 = (XmlAnyElementAttributes_t788445468 *)il2cpp_codegen_object_new(XmlAnyElementAttributes_t788445468_il2cpp_TypeInfo_var);
XmlAnyElementAttributes__ctor_m2532050011(L_0, /*hidden argument*/NULL);
__this->set_xmlAnyElements_1(L_0);
XmlArrayItemAttributes_t1938453418 * L_1 = (XmlArrayItemAttributes_t1938453418 *)il2cpp_codegen_object_new(XmlArrayItemAttributes_t1938453418_il2cpp_TypeInfo_var);
XmlArrayItemAttributes__ctor_m3082986401(L_1, /*hidden argument*/NULL);
__this->set_xmlArrayItems_3(L_1);
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t491814586_il2cpp_TypeInfo_var);
DBNull_t491814586 * L_2 = ((DBNull_t491814586_StaticFields*)DBNull_t491814586_il2cpp_TypeInfo_var->static_fields)->get_Value_0();
__this->set_xmlDefaultValue_6(L_2);
XmlElementAttributes_t485582810 * L_3 = (XmlElementAttributes_t485582810 *)il2cpp_codegen_object_new(XmlElementAttributes_t485582810_il2cpp_TypeInfo_var);
XmlElementAttributes__ctor_m137185265(L_3, /*hidden argument*/NULL);
__this->set_xmlElements_7(L_3);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlAttributes::.ctor(System.Reflection.ICustomAttributeProvider)
extern TypeInfo* XmlAnyElementAttributes_t788445468_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayItemAttributes_t1938453418_il2cpp_TypeInfo_var;
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementAttributes_t485582810_il2cpp_TypeInfo_var;
extern TypeInfo* ICustomAttributeProvider_t2334200065_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAnyAttributeAttribute_t1747985491_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayAttribute_t229420472_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributeAttribute_t949177685_il2cpp_TypeInfo_var;
extern TypeInfo* XmlChoiceIdentifierAttribute_t1288756729_il2cpp_TypeInfo_var;
extern TypeInfo* DefaultValueAttribute_t1225651029_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementAttribute_t27258549_il2cpp_TypeInfo_var;
extern TypeInfo* XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var;
extern TypeInfo* XmlIgnoreAttribute_t2523800977_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNamespaceDeclarationsAttribute_t4184778045_il2cpp_TypeInfo_var;
extern TypeInfo* XmlRootAttribute_t2483700417_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTextAttribute_t1613374166_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeAttribute_t43505513_il2cpp_TypeInfo_var;
extern const uint32_t XmlAttributes__ctor_m1209025076_MetadataUsageId;
extern "C" void XmlAttributes__ctor_m1209025076 (XmlAttributes_t2892492364 * __this, Il2CppObject * ___provider, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributes__ctor_m1209025076_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ObjectU5BU5D_t11523773* V_0 = NULL;
Il2CppObject * V_1 = NULL;
ObjectU5BU5D_t11523773* V_2 = NULL;
int32_t V_3 = 0;
{
XmlAnyElementAttributes_t788445468 * L_0 = (XmlAnyElementAttributes_t788445468 *)il2cpp_codegen_object_new(XmlAnyElementAttributes_t788445468_il2cpp_TypeInfo_var);
XmlAnyElementAttributes__ctor_m2532050011(L_0, /*hidden argument*/NULL);
__this->set_xmlAnyElements_1(L_0);
XmlArrayItemAttributes_t1938453418 * L_1 = (XmlArrayItemAttributes_t1938453418 *)il2cpp_codegen_object_new(XmlArrayItemAttributes_t1938453418_il2cpp_TypeInfo_var);
XmlArrayItemAttributes__ctor_m3082986401(L_1, /*hidden argument*/NULL);
__this->set_xmlArrayItems_3(L_1);
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t491814586_il2cpp_TypeInfo_var);
DBNull_t491814586 * L_2 = ((DBNull_t491814586_StaticFields*)DBNull_t491814586_il2cpp_TypeInfo_var->static_fields)->get_Value_0();
__this->set_xmlDefaultValue_6(L_2);
XmlElementAttributes_t485582810 * L_3 = (XmlElementAttributes_t485582810 *)il2cpp_codegen_object_new(XmlElementAttributes_t485582810_il2cpp_TypeInfo_var);
XmlElementAttributes__ctor_m137185265(L_3, /*hidden argument*/NULL);
__this->set_xmlElements_7(L_3);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Il2CppObject * L_4 = ___provider;
NullCheck(L_4);
ObjectU5BU5D_t11523773* L_5 = InterfaceFuncInvoker1< ObjectU5BU5D_t11523773*, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Boolean) */, ICustomAttributeProvider_t2334200065_il2cpp_TypeInfo_var, L_4, (bool)0);
V_0 = L_5;
ObjectU5BU5D_t11523773* L_6 = V_0;
V_2 = L_6;
V_3 = 0;
goto IL_01db;
}
IL_0043:
{
ObjectU5BU5D_t11523773* L_7 = V_2;
int32_t L_8 = V_3;
NullCheck(L_7);
IL2CPP_ARRAY_BOUNDS_CHECK(L_7, L_8);
int32_t L_9 = L_8;
V_1 = ((L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)));
Il2CppObject * L_10 = V_1;
if (!((XmlAnyAttributeAttribute_t1747985491 *)IsInstClass(L_10, XmlAnyAttributeAttribute_t1747985491_il2cpp_TypeInfo_var)))
{
goto IL_0063;
}
}
{
Il2CppObject * L_11 = V_1;
__this->set_xmlAnyAttribute_0(((XmlAnyAttributeAttribute_t1747985491 *)CastclassClass(L_11, XmlAnyAttributeAttribute_t1747985491_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_0063:
{
Il2CppObject * L_12 = V_1;
if (!((XmlAnyElementAttribute_t3085069619 *)IsInstClass(L_12, XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var)))
{
goto IL_0085;
}
}
{
XmlAnyElementAttributes_t788445468 * L_13 = __this->get_xmlAnyElements_1();
Il2CppObject * L_14 = V_1;
NullCheck(L_13);
XmlAnyElementAttributes_Add_m3455379473(L_13, ((XmlAnyElementAttribute_t3085069619 *)CastclassClass(L_14, XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_01d7;
}
IL_0085:
{
Il2CppObject * L_15 = V_1;
if (!((XmlArrayAttribute_t229420472 *)IsInstClass(L_15, XmlArrayAttribute_t229420472_il2cpp_TypeInfo_var)))
{
goto IL_00a1;
}
}
{
Il2CppObject * L_16 = V_1;
__this->set_xmlArray_2(((XmlArrayAttribute_t229420472 *)CastclassClass(L_16, XmlArrayAttribute_t229420472_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_00a1:
{
Il2CppObject * L_17 = V_1;
if (!((XmlArrayItemAttribute_t2429429989 *)IsInstClass(L_17, XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var)))
{
goto IL_00c3;
}
}
{
XmlArrayItemAttributes_t1938453418 * L_18 = __this->get_xmlArrayItems_3();
Il2CppObject * L_19 = V_1;
NullCheck(L_18);
XmlArrayItemAttributes_Add_m3743338767(L_18, ((XmlArrayItemAttribute_t2429429989 *)CastclassClass(L_19, XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_01d7;
}
IL_00c3:
{
Il2CppObject * L_20 = V_1;
if (!((XmlAttributeAttribute_t949177685 *)IsInstClass(L_20, XmlAttributeAttribute_t949177685_il2cpp_TypeInfo_var)))
{
goto IL_00df;
}
}
{
Il2CppObject * L_21 = V_1;
__this->set_xmlAttribute_4(((XmlAttributeAttribute_t949177685 *)CastclassClass(L_21, XmlAttributeAttribute_t949177685_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_00df:
{
Il2CppObject * L_22 = V_1;
if (!((XmlChoiceIdentifierAttribute_t1288756729 *)IsInstClass(L_22, XmlChoiceIdentifierAttribute_t1288756729_il2cpp_TypeInfo_var)))
{
goto IL_00fb;
}
}
{
Il2CppObject * L_23 = V_1;
__this->set_xmlChoiceIdentifier_5(((XmlChoiceIdentifierAttribute_t1288756729 *)CastclassClass(L_23, XmlChoiceIdentifierAttribute_t1288756729_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_00fb:
{
Il2CppObject * L_24 = V_1;
if (!((DefaultValueAttribute_t1225651029 *)IsInstClass(L_24, DefaultValueAttribute_t1225651029_il2cpp_TypeInfo_var)))
{
goto IL_011c;
}
}
{
Il2CppObject * L_25 = V_1;
NullCheck(((DefaultValueAttribute_t1225651029 *)CastclassClass(L_25, DefaultValueAttribute_t1225651029_il2cpp_TypeInfo_var)));
Il2CppObject * L_26 = VirtFuncInvoker0< Il2CppObject * >::Invoke(4 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, ((DefaultValueAttribute_t1225651029 *)CastclassClass(L_25, DefaultValueAttribute_t1225651029_il2cpp_TypeInfo_var)));
__this->set_xmlDefaultValue_6(L_26);
goto IL_01d7;
}
IL_011c:
{
Il2CppObject * L_27 = V_1;
if (!((XmlElementAttribute_t27258549 *)IsInstClass(L_27, XmlElementAttribute_t27258549_il2cpp_TypeInfo_var)))
{
goto IL_013e;
}
}
{
XmlElementAttributes_t485582810 * L_28 = __this->get_xmlElements_7();
Il2CppObject * L_29 = V_1;
NullCheck(L_28);
XmlElementAttributes_Add_m1561453903(L_28, ((XmlElementAttribute_t27258549 *)CastclassClass(L_29, XmlElementAttribute_t27258549_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_01d7;
}
IL_013e:
{
Il2CppObject * L_30 = V_1;
if (!((XmlEnumAttribute_t1057710466 *)IsInstClass(L_30, XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var)))
{
goto IL_015a;
}
}
{
Il2CppObject * L_31 = V_1;
__this->set_xmlEnum_8(((XmlEnumAttribute_t1057710466 *)CastclassClass(L_31, XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_015a:
{
Il2CppObject * L_32 = V_1;
if (!((XmlIgnoreAttribute_t2523800977 *)IsInstClass(L_32, XmlIgnoreAttribute_t2523800977_il2cpp_TypeInfo_var)))
{
goto IL_0171;
}
}
{
__this->set_xmlIgnore_9((bool)1);
goto IL_01d7;
}
IL_0171:
{
Il2CppObject * L_33 = V_1;
if (!((XmlNamespaceDeclarationsAttribute_t4184778045 *)IsInstClass(L_33, XmlNamespaceDeclarationsAttribute_t4184778045_il2cpp_TypeInfo_var)))
{
goto IL_0188;
}
}
{
__this->set_xmlns_10((bool)1);
goto IL_01d7;
}
IL_0188:
{
Il2CppObject * L_34 = V_1;
if (!((XmlRootAttribute_t2483700417 *)IsInstClass(L_34, XmlRootAttribute_t2483700417_il2cpp_TypeInfo_var)))
{
goto IL_01a4;
}
}
{
Il2CppObject * L_35 = V_1;
__this->set_xmlRoot_11(((XmlRootAttribute_t2483700417 *)CastclassClass(L_35, XmlRootAttribute_t2483700417_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_01a4:
{
Il2CppObject * L_36 = V_1;
if (!((XmlTextAttribute_t1613374166 *)IsInstClass(L_36, XmlTextAttribute_t1613374166_il2cpp_TypeInfo_var)))
{
goto IL_01c0;
}
}
{
Il2CppObject * L_37 = V_1;
__this->set_xmlText_12(((XmlTextAttribute_t1613374166 *)CastclassClass(L_37, XmlTextAttribute_t1613374166_il2cpp_TypeInfo_var)));
goto IL_01d7;
}
IL_01c0:
{
Il2CppObject * L_38 = V_1;
if (!((XmlTypeAttribute_t43505513 *)IsInstClass(L_38, XmlTypeAttribute_t43505513_il2cpp_TypeInfo_var)))
{
goto IL_01d7;
}
}
{
Il2CppObject * L_39 = V_1;
__this->set_xmlType_13(((XmlTypeAttribute_t43505513 *)CastclassClass(L_39, XmlTypeAttribute_t43505513_il2cpp_TypeInfo_var)));
}
IL_01d7:
{
int32_t L_40 = V_3;
V_3 = ((int32_t)((int32_t)L_40+(int32_t)1));
}
IL_01db:
{
int32_t L_41 = V_3;
ObjectU5BU5D_t11523773* L_42 = V_2;
NullCheck(L_42);
if ((((int32_t)L_41) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_42)->max_length)))))))
{
goto IL_0043;
}
}
{
return;
}
}
// System.Xml.Serialization.XmlAnyAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAnyAttribute()
extern "C" XmlAnyAttributeAttribute_t1747985491 * XmlAttributes_get_XmlAnyAttribute_m3622137693 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlAnyAttributeAttribute_t1747985491 * L_0 = __this->get_xmlAnyAttribute_0();
return L_0;
}
}
// System.Xml.Serialization.XmlAnyElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlAnyElements()
extern "C" XmlAnyElementAttributes_t788445468 * XmlAttributes_get_XmlAnyElements_m2687952373 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlAnyElementAttributes_t788445468 * L_0 = __this->get_xmlAnyElements_1();
return L_0;
}
}
// System.Xml.Serialization.XmlArrayAttribute System.Xml.Serialization.XmlAttributes::get_XmlArray()
extern "C" XmlArrayAttribute_t229420472 * XmlAttributes_get_XmlArray_m1744444079 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlArrayAttribute_t229420472 * L_0 = __this->get_xmlArray_2();
return L_0;
}
}
// System.Xml.Serialization.XmlArrayItemAttributes System.Xml.Serialization.XmlAttributes::get_XmlArrayItems()
extern "C" XmlArrayItemAttributes_t1938453418 * XmlAttributes_get_XmlArrayItems_m3228873483 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlArrayItemAttributes_t1938453418 * L_0 = __this->get_xmlArrayItems_3();
return L_0;
}
}
// System.Xml.Serialization.XmlAttributeAttribute System.Xml.Serialization.XmlAttributes::get_XmlAttribute()
extern "C" XmlAttributeAttribute_t949177685 * XmlAttributes_get_XmlAttribute_m2125970549 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlAttributeAttribute_t949177685 * L_0 = __this->get_xmlAttribute_4();
return L_0;
}
}
// System.Xml.Serialization.XmlChoiceIdentifierAttribute System.Xml.Serialization.XmlAttributes::get_XmlChoiceIdentifier()
extern "C" XmlChoiceIdentifierAttribute_t1288756729 * XmlAttributes_get_XmlChoiceIdentifier_m4123017373 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlChoiceIdentifierAttribute_t1288756729 * L_0 = __this->get_xmlChoiceIdentifier_5();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlAttributes::get_XmlDefaultValue()
extern "C" Il2CppObject * XmlAttributes_get_XmlDefaultValue_m645847986 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get_xmlDefaultValue_6();
return L_0;
}
}
// System.Xml.Serialization.XmlElementAttributes System.Xml.Serialization.XmlAttributes::get_XmlElements()
extern "C" XmlElementAttributes_t485582810 * XmlAttributes_get_XmlElements_m757527755 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlElementAttributes_t485582810 * L_0 = __this->get_xmlElements_7();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlAttributes::get_XmlIgnore()
extern "C" bool XmlAttributes_get_XmlIgnore_m2081611233 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_xmlIgnore_9();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlAttributes::get_Xmlns()
extern "C" bool XmlAttributes_get_Xmlns_m690962420 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_xmlns_10();
return L_0;
}
}
// System.Xml.Serialization.XmlRootAttribute System.Xml.Serialization.XmlAttributes::get_XmlRoot()
extern "C" XmlRootAttribute_t2483700417 * XmlAttributes_get_XmlRoot_m309037213 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlRootAttribute_t2483700417 * L_0 = __this->get_xmlRoot_11();
return L_0;
}
}
// System.Xml.Serialization.XmlTextAttribute System.Xml.Serialization.XmlAttributes::get_XmlText()
extern "C" XmlTextAttribute_t1613374166 * XmlAttributes_get_XmlText_m1655653501 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlTextAttribute_t1613374166 * L_0 = __this->get_xmlText_12();
return L_0;
}
}
// System.Xml.Serialization.XmlTypeAttribute System.Xml.Serialization.XmlAttributes::get_XmlType()
extern "C" XmlTypeAttribute_t43505513 * XmlAttributes_get_XmlType_m3654346653 (XmlAttributes_t2892492364 * __this, const MethodInfo* method)
{
{
XmlTypeAttribute_t43505513 * L_0 = __this->get_xmlType_13();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlAttributes::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral86615;
extern Il2CppCodeGenString* _stringLiteral110;
extern Il2CppCodeGenString* _stringLiteral118;
extern Il2CppCodeGenString* _stringLiteral124;
extern const uint32_t XmlAttributes_AddKeyHash_m680684837_MetadataUsageId;
extern "C" void XmlAttributes_AddKeyHash_m680684837 (XmlAttributes_t2892492364 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlAttributes_AddKeyHash_m680684837_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral86615, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
bool L_2 = __this->get_xmlIgnore_9();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
bool L_4 = __this->get_xmlns_10();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
XmlAnyAttributeAttribute_t1747985491 * L_6 = __this->get_xmlAnyAttribute_0();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_5, 3, (bool)((((int32_t)((((Il2CppObject*)(XmlAnyAttributeAttribute_t1747985491 *)L_6) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
XmlAnyElementAttributes_t788445468 * L_7 = __this->get_xmlAnyElements_1();
StringBuilder_t3822575854 * L_8 = ___sb;
NullCheck(L_7);
XmlAnyElementAttributes_AddKeyHash_m3267974357(L_7, L_8, /*hidden argument*/NULL);
XmlArrayItemAttributes_t1938453418 * L_9 = __this->get_xmlArrayItems_3();
StringBuilder_t3822575854 * L_10 = ___sb;
NullCheck(L_9);
XmlArrayItemAttributes_AddKeyHash_m2502325659(L_9, L_10, /*hidden argument*/NULL);
XmlElementAttributes_t485582810 * L_11 = __this->get_xmlElements_7();
StringBuilder_t3822575854 * L_12 = ___sb;
NullCheck(L_11);
XmlElementAttributes_AddKeyHash_m2031660523(L_11, L_12, /*hidden argument*/NULL);
XmlArrayAttribute_t229420472 * L_13 = __this->get_xmlArray_2();
if (!L_13)
{
goto IL_0074;
}
}
{
XmlArrayAttribute_t229420472 * L_14 = __this->get_xmlArray_2();
StringBuilder_t3822575854 * L_15 = ___sb;
NullCheck(L_14);
XmlArrayAttribute_AddKeyHash_m2988781881(L_14, L_15, /*hidden argument*/NULL);
}
IL_0074:
{
XmlAttributeAttribute_t949177685 * L_16 = __this->get_xmlAttribute_4();
if (!L_16)
{
goto IL_008b;
}
}
{
XmlAttributeAttribute_t949177685 * L_17 = __this->get_xmlAttribute_4();
StringBuilder_t3822575854 * L_18 = ___sb;
NullCheck(L_17);
XmlAttributeAttribute_AddKeyHash_m1468706812(L_17, L_18, /*hidden argument*/NULL);
}
IL_008b:
{
Il2CppObject * L_19 = __this->get_xmlDefaultValue_6();
if (L_19)
{
goto IL_00a7;
}
}
{
StringBuilder_t3822575854 * L_20 = ___sb;
NullCheck(L_20);
StringBuilder_Append_m3898090075(L_20, _stringLiteral110, /*hidden argument*/NULL);
goto IL_00e5;
}
IL_00a7:
{
Il2CppObject * L_21 = __this->get_xmlDefaultValue_6();
if (((DBNull_t491814586 *)IsInstSealed(L_21, DBNull_t491814586_il2cpp_TypeInfo_var)))
{
goto IL_00e5;
}
}
{
Il2CppObject * L_22 = __this->get_xmlDefaultValue_6();
NullCheck(L_22);
Type_t * L_23 = Object_GetType_m2022236990(L_22, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_24 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
Il2CppObject * L_25 = __this->get_xmlDefaultValue_6();
String_t* L_26 = XmlCustomFormatter_ToXmlString_m1862488943(NULL /*static, unused*/, L_24, L_25, /*hidden argument*/NULL);
V_0 = L_26;
StringBuilder_t3822575854 * L_27 = ___sb;
String_t* L_28 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_29 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral118, L_28, /*hidden argument*/NULL);
NullCheck(L_27);
StringBuilder_Append_m3898090075(L_27, L_29, /*hidden argument*/NULL);
}
IL_00e5:
{
XmlEnumAttribute_t1057710466 * L_30 = __this->get_xmlEnum_8();
if (!L_30)
{
goto IL_00fc;
}
}
{
XmlEnumAttribute_t1057710466 * L_31 = __this->get_xmlEnum_8();
StringBuilder_t3822575854 * L_32 = ___sb;
NullCheck(L_31);
XmlEnumAttribute_AddKeyHash_m1862241347(L_31, L_32, /*hidden argument*/NULL);
}
IL_00fc:
{
XmlRootAttribute_t2483700417 * L_33 = __this->get_xmlRoot_11();
if (!L_33)
{
goto IL_0113;
}
}
{
XmlRootAttribute_t2483700417 * L_34 = __this->get_xmlRoot_11();
StringBuilder_t3822575854 * L_35 = ___sb;
NullCheck(L_34);
XmlRootAttribute_AddKeyHash_m1498665508(L_34, L_35, /*hidden argument*/NULL);
}
IL_0113:
{
XmlTextAttribute_t1613374166 * L_36 = __this->get_xmlText_12();
if (!L_36)
{
goto IL_012a;
}
}
{
XmlTextAttribute_t1613374166 * L_37 = __this->get_xmlText_12();
StringBuilder_t3822575854 * L_38 = ___sb;
NullCheck(L_37);
XmlTextAttribute_AddKeyHash_m2425140335(L_37, L_38, /*hidden argument*/NULL);
}
IL_012a:
{
XmlTypeAttribute_t43505513 * L_39 = __this->get_xmlType_13();
if (!L_39)
{
goto IL_0141;
}
}
{
XmlTypeAttribute_t43505513 * L_40 = __this->get_xmlType_13();
StringBuilder_t3822575854 * L_41 = ___sb;
NullCheck(L_40);
XmlTypeAttribute_AddKeyHash_m1359859836(L_40, L_41, /*hidden argument*/NULL);
}
IL_0141:
{
XmlChoiceIdentifierAttribute_t1288756729 * L_42 = __this->get_xmlChoiceIdentifier_5();
if (!L_42)
{
goto IL_0158;
}
}
{
XmlChoiceIdentifierAttribute_t1288756729 * L_43 = __this->get_xmlChoiceIdentifier_5();
StringBuilder_t3822575854 * L_44 = ___sb;
NullCheck(L_43);
XmlChoiceIdentifierAttribute_AddKeyHash_m4249770220(L_43, L_44, /*hidden argument*/NULL);
}
IL_0158:
{
StringBuilder_t3822575854 * L_45 = ___sb;
NullCheck(L_45);
StringBuilder_Append_m3898090075(L_45, _stringLiteral124, /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlChoiceIdentifierAttribute::get_MemberName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlChoiceIdentifierAttribute_get_MemberName_m4127637085_MetadataUsageId;
extern "C" String_t* XmlChoiceIdentifierAttribute_get_MemberName_m4127637085 (XmlChoiceIdentifierAttribute_t1288756729 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlChoiceIdentifierAttribute_get_MemberName_m4127637085_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_memberName_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_memberName_0();
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlChoiceIdentifierAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral2688042;
extern const uint32_t XmlChoiceIdentifierAttribute_AddKeyHash_m4249770220_MetadataUsageId;
extern "C" void XmlChoiceIdentifierAttribute_AddKeyHash_m4249770220 (XmlChoiceIdentifierAttribute_t1288756729 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlChoiceIdentifierAttribute_AddKeyHash_m4249770220_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2688042, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_memberName_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
NullCheck(L_3);
StringBuilder_Append_m2143093878(L_3, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::FromEnum(System.Int64,System.String[],System.Int64[],System.String)
extern TypeInfo* StringBuilder_t3822575854_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Int64_t2847414882_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2782897785;
extern Il2CppCodeGenString* _stringLiteral2635581353;
extern const uint32_t XmlCustomFormatter_FromEnum_m2429903813_MetadataUsageId;
extern "C" String_t* XmlCustomFormatter_FromEnum_m2429903813 (Il2CppObject * __this /* static, unused */, int64_t ___value, StringU5BU5D_t2956870243* ___values, Int64U5BU5D_t753178071* ___ids, String_t* ___typeName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlCustomFormatter_FromEnum_m2429903813_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
StringBuilder_t3822575854 * V_0 = NULL;
int32_t V_1 = 0;
int64_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
StringBuilder_t3822575854 * L_0 = (StringBuilder_t3822575854 *)il2cpp_codegen_object_new(StringBuilder_t3822575854_il2cpp_TypeInfo_var);
StringBuilder__ctor_m135953004(L_0, /*hidden argument*/NULL);
V_0 = L_0;
Int64U5BU5D_t753178071* L_1 = ___ids;
NullCheck(L_1);
V_1 = (((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))));
int64_t L_2 = ___value;
V_2 = L_2;
V_3 = (-1);
V_4 = 0;
goto IL_006e;
}
IL_0016:
{
Int64U5BU5D_t753178071* L_3 = ___ids;
int32_t L_4 = V_4;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, L_4);
int32_t L_5 = L_4;
if (((L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5))))
{
goto IL_0027;
}
}
{
int32_t L_6 = V_4;
V_3 = L_6;
goto IL_0068;
}
IL_0027:
{
int64_t L_7 = V_2;
if (L_7)
{
goto IL_0032;
}
}
{
goto IL_0076;
}
IL_0032:
{
Int64U5BU5D_t753178071* L_8 = ___ids;
int32_t L_9 = V_4;
NullCheck(L_8);
IL2CPP_ARRAY_BOUNDS_CHECK(L_8, L_9);
int32_t L_10 = L_9;
int64_t L_11 = ___value;
Int64U5BU5D_t753178071* L_12 = ___ids;
int32_t L_13 = V_4;
NullCheck(L_12);
IL2CPP_ARRAY_BOUNDS_CHECK(L_12, L_13);
int32_t L_14 = L_13;
if ((!(((uint64_t)((int64_t)((int64_t)((L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)))&(int64_t)L_11))) == ((uint64_t)((L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)))))))
{
goto IL_0068;
}
}
{
StringBuilder_t3822575854 * L_15 = V_0;
NullCheck(L_15);
int32_t L_16 = StringBuilder_get_Length_m2443133099(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0055;
}
}
{
StringBuilder_t3822575854 * L_17 = V_0;
NullCheck(L_17);
StringBuilder_Append_m2143093878(L_17, ((int32_t)32), /*hidden argument*/NULL);
}
IL_0055:
{
StringBuilder_t3822575854 * L_18 = V_0;
StringU5BU5D_t2956870243* L_19 = ___values;
int32_t L_20 = V_4;
NullCheck(L_19);
IL2CPP_ARRAY_BOUNDS_CHECK(L_19, L_20);
int32_t L_21 = L_20;
NullCheck(L_18);
StringBuilder_Append_m3898090075(L_18, ((L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21))), /*hidden argument*/NULL);
int64_t L_22 = V_2;
Int64U5BU5D_t753178071* L_23 = ___ids;
int32_t L_24 = V_4;
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, L_24);
int32_t L_25 = L_24;
V_2 = ((int64_t)((int64_t)L_22&(int64_t)((~((L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)))))));
}
IL_0068:
{
int32_t L_26 = V_4;
V_4 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_006e:
{
int32_t L_27 = V_4;
int32_t L_28 = V_1;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_0016;
}
}
IL_0076:
{
int64_t L_29 = V_2;
if (!L_29)
{
goto IL_00ce;
}
}
{
String_t* L_30 = ___typeName;
if (!L_30)
{
goto IL_00aa;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_31 = CultureInfo_get_CurrentCulture_m2905498779(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_32 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)2));
int64_t L_33 = ___value;
int64_t L_34 = L_33;
Il2CppObject * L_35 = Box(Int64_t2847414882_il2cpp_TypeInfo_var, &L_34);
NullCheck(L_32);
IL2CPP_ARRAY_BOUNDS_CHECK(L_32, 0);
ArrayElementTypeCheck (L_32, L_35);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_35);
ObjectU5BU5D_t11523773* L_36 = L_32;
String_t* L_37 = ___typeName;
NullCheck(L_36);
IL2CPP_ARRAY_BOUNDS_CHECK(L_36, 1);
ArrayElementTypeCheck (L_36, L_37);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_37);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_38 = String_Format_m3351777162(NULL /*static, unused*/, L_31, _stringLiteral2782897785, L_36, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_39 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_39, L_38, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39);
}
IL_00aa:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_40 = CultureInfo_get_CurrentCulture_m2905498779(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_41 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
int64_t L_42 = ___value;
int64_t L_43 = L_42;
Il2CppObject * L_44 = Box(Int64_t2847414882_il2cpp_TypeInfo_var, &L_43);
NullCheck(L_41);
IL2CPP_ARRAY_BOUNDS_CHECK(L_41, 0);
ArrayElementTypeCheck (L_41, L_44);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_44);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_45 = String_Format_m3351777162(NULL /*static, unused*/, L_40, _stringLiteral2635581353, L_41, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_46 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_46, L_45, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46);
}
IL_00ce:
{
StringBuilder_t3822575854 * L_47 = V_0;
NullCheck(L_47);
int32_t L_48 = StringBuilder_get_Length_m2443133099(L_47, /*hidden argument*/NULL);
if (L_48)
{
goto IL_00ea;
}
}
{
int32_t L_49 = V_3;
if ((((int32_t)L_49) == ((int32_t)(-1))))
{
goto IL_00ea;
}
}
{
StringBuilder_t3822575854 * L_50 = V_0;
StringU5BU5D_t2956870243* L_51 = ___values;
int32_t L_52 = V_3;
NullCheck(L_51);
IL2CPP_ARRAY_BOUNDS_CHECK(L_51, L_52);
int32_t L_53 = L_52;
NullCheck(L_50);
StringBuilder_Append_m3898090075(L_50, ((L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_53))), /*hidden argument*/NULL);
}
IL_00ea:
{
StringBuilder_t3822575854 * L_54 = V_0;
NullCheck(L_54);
String_t* L_55 = StringBuilder_ToString_m350379841(L_54, /*hidden argument*/NULL);
return L_55;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlName(System.String)
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern const uint32_t XmlCustomFormatter_FromXmlName_m2360147262_MetadataUsageId;
extern "C" String_t* XmlCustomFormatter_FromXmlName_m2360147262 (Il2CppObject * __this /* static, unused */, String_t* ___name, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlCustomFormatter_FromXmlName_m2360147262_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_1 = XmlConvert_EncodeName_m948344207(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlNCName(System.String)
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern const uint32_t XmlCustomFormatter_FromXmlNCName_m3677657961_MetadataUsageId;
extern "C" String_t* XmlCustomFormatter_FromXmlNCName_m3677657961 (Il2CppObject * __this /* static, unused */, String_t* ___ncName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlCustomFormatter_FromXmlNCName_m3677657961_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___ncName;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_1 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlCustomFormatter::ToXmlString(System.Xml.Serialization.TypeData,System.Object)
extern TypeInfo* XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var;
extern TypeInfo* Dictionary_2_t190145395_il2cpp_TypeInfo_var;
extern TypeInfo* Boolean_t211005341_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* Byte_t2778693821_il2cpp_TypeInfo_var;
extern TypeInfo* Char_t2778706699_il2cpp_TypeInfo_var;
extern TypeInfo* DateTime_t339033936_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* Decimal_t1688557254_il2cpp_TypeInfo_var;
extern TypeInfo* Double_t534516614_il2cpp_TypeInfo_var;
extern TypeInfo* Int16_t2847414729_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* Int64_t2847414882_il2cpp_TypeInfo_var;
extern TypeInfo* SByte_t2855346064_il2cpp_TypeInfo_var;
extern TypeInfo* Single_t958209021_il2cpp_TypeInfo_var;
extern TypeInfo* UInt16_t985925268_il2cpp_TypeInfo_var;
extern TypeInfo* UInt32_t985925326_il2cpp_TypeInfo_var;
extern TypeInfo* UInt64_t985925421_il2cpp_TypeInfo_var;
extern TypeInfo* Guid_t2778838590_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* ByteU5BU5D_t58506160_il2cpp_TypeInfo_var;
extern TypeInfo* Convert_t1097883944_il2cpp_TypeInfo_var;
extern TypeInfo* IFormattable_t2460033475_il2cpp_TypeInfo_var;
extern const MethodInfo* Dictionary_2__ctor_m1958628151_MethodInfo_var;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern Il2CppCodeGenString* _stringLiteral3052374;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral3184265;
extern Il2CppCodeGenString* _stringLiteral2898763087;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern Il2CppCodeGenString* _stringLiteral4135191040;
extern Il2CppCodeGenString* _stringLiteral1741562264;
extern const uint32_t XmlCustomFormatter_ToXmlString_m1862488943_MetadataUsageId;
extern "C" String_t* XmlCustomFormatter_ToXmlString_m1862488943 (Il2CppObject * __this /* static, unused */, TypeData_t3837952962 * ___type, Il2CppObject * ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlCustomFormatter_ToXmlString_m1862488943_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
Dictionary_2_t190145395 * V_1 = NULL;
int32_t V_2 = 0;
DateTime_t339033936 V_3;
memset(&V_3, 0, sizeof(V_3));
DateTime_t339033936 V_4;
memset(&V_4, 0, sizeof(V_4));
String_t* G_B28_0 = NULL;
String_t* G_B32_0 = NULL;
String_t* G_B37_0 = NULL;
{
Il2CppObject * L_0 = ___value;
if (L_0)
{
goto IL_0008;
}
}
{
return (String_t*)NULL;
}
IL_0008:
{
TypeData_t3837952962 * L_1 = ___type;
NullCheck(L_1);
String_t* L_2 = TypeData_get_XmlType_m3918246226(L_1, /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
if (!L_3)
{
goto IL_02c9;
}
}
{
Dictionary_2_t190145395 * L_4 = ((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map3D_0();
if (L_4)
{
goto IL_0135;
}
}
{
Dictionary_2_t190145395 * L_5 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_5, ((int32_t)21), /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_5;
Dictionary_2_t190145395 * L_6 = V_1;
NullCheck(L_6);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_6, _stringLiteral64711720, 0);
Dictionary_2_t190145395 * L_7 = V_1;
NullCheck(L_7);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_7, _stringLiteral1141225885, 1);
Dictionary_2_t190145395 * L_8 = V_1;
NullCheck(L_8);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_8, _stringLiteral3052374, 2);
Dictionary_2_t190145395 * L_9 = V_1;
NullCheck(L_9);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_9, _stringLiteral1792749467, 3);
Dictionary_2_t190145395 * L_10 = V_1;
NullCheck(L_10);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_10, _stringLiteral3076014, 4);
Dictionary_2_t190145395 * L_11 = V_1;
NullCheck(L_11);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_11, _stringLiteral3560141, 5);
Dictionary_2_t190145395 * L_12 = V_1;
NullCheck(L_12);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_12, _stringLiteral1542263633, 6);
Dictionary_2_t190145395 * L_13 = V_1;
NullCheck(L_13);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_13, _stringLiteral2969009105, 7);
Dictionary_2_t190145395 * L_14 = V_1;
NullCheck(L_14);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_14, _stringLiteral109413500, 8);
Dictionary_2_t190145395 * L_15 = V_1;
NullCheck(L_15);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_15, _stringLiteral104431, ((int32_t)9));
Dictionary_2_t190145395 * L_16 = V_1;
NullCheck(L_16);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_16, _stringLiteral3327612, ((int32_t)10));
Dictionary_2_t190145395 * L_17 = V_1;
NullCheck(L_17);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_17, _stringLiteral3039496, ((int32_t)11));
Dictionary_2_t190145395 * L_18 = V_1;
NullCheck(L_18);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_18, _stringLiteral97526364, ((int32_t)12));
Dictionary_2_t190145395 * L_19 = V_1;
NullCheck(L_19);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_19, _stringLiteral1033453191, ((int32_t)13));
Dictionary_2_t190145395 * L_20 = V_1;
NullCheck(L_20);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_20, _stringLiteral1145198778, ((int32_t)14));
Dictionary_2_t190145395 * L_21 = V_1;
NullCheck(L_21);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_21, _stringLiteral1141514001, ((int32_t)15));
Dictionary_2_t190145395 * L_22 = V_1;
NullCheck(L_22);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_22, _stringLiteral3184265, ((int32_t)16));
Dictionary_2_t190145395 * L_23 = V_1;
NullCheck(L_23);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_23, _stringLiteral2898763087, ((int32_t)17));
Dictionary_2_t190145395 * L_24 = V_1;
NullCheck(L_24);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_24, _stringLiteral3078954544, ((int32_t)17));
Dictionary_2_t190145395 * L_25 = V_1;
NullCheck(L_25);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_25, _stringLiteral2049608444, ((int32_t)18));
Dictionary_2_t190145395 * L_26 = V_1;
NullCheck(L_26);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_26, _stringLiteral2302954900, ((int32_t)19));
Dictionary_2_t190145395 * L_27 = V_1;
((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map3D_0(L_27);
}
IL_0135:
{
Dictionary_2_t190145395 * L_28 = ((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map3D_0();
String_t* L_29 = V_0;
NullCheck(L_28);
bool L_30 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_28, L_29, (&V_2));
if (!L_30)
{
goto IL_02c9;
}
}
{
int32_t L_31 = V_2;
if (L_31 == 0)
{
goto IL_01a2;
}
if (L_31 == 1)
{
goto IL_01ae;
}
if (L_31 == 2)
{
goto IL_01ba;
}
if (L_31 == 3)
{
goto IL_01c6;
}
if (L_31 == 4)
{
goto IL_01d3;
}
if (L_31 == 5)
{
goto IL_01ec;
}
if (L_31 == 6)
{
goto IL_0206;
}
if (L_31 == 7)
{
goto IL_0212;
}
if (L_31 == 8)
{
goto IL_021e;
}
if (L_31 == 9)
{
goto IL_022a;
}
if (L_31 == 10)
{
goto IL_0236;
}
if (L_31 == 11)
{
goto IL_0242;
}
if (L_31 == 12)
{
goto IL_024e;
}
if (L_31 == 13)
{
goto IL_025a;
}
if (L_31 == 14)
{
goto IL_0266;
}
if (L_31 == 15)
{
goto IL_0272;
}
if (L_31 == 16)
{
goto IL_027e;
}
if (L_31 == 17)
{
goto IL_028a;
}
if (L_31 == 18)
{
goto IL_02a6;
}
if (L_31 == 19)
{
goto IL_02c2;
}
}
{
goto IL_02c9;
}
IL_01a2:
{
Il2CppObject * L_32 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_33 = XmlConvert_ToString_m1828047733(NULL /*static, unused*/, ((*(bool*)((bool*)UnBox (L_32, Boolean_t211005341_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_33;
}
IL_01ae:
{
Il2CppObject * L_34 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_35 = XmlConvert_ToString_m3776463405(NULL /*static, unused*/, ((*(uint8_t*)((uint8_t*)UnBox (L_34, Byte_t2778693821_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_35;
}
IL_01ba:
{
Il2CppObject * L_36 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_37 = XmlConvert_ToString_m1296446159(NULL /*static, unused*/, ((*(uint16_t*)((uint16_t*)UnBox (L_36, Char_t2778706699_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_37;
}
IL_01c6:
{
Il2CppObject * L_38 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_39 = XmlConvert_ToString_m1667111055(NULL /*static, unused*/, ((*(DateTime_t339033936 *)((DateTime_t339033936 *)UnBox (L_38, DateTime_t339033936_il2cpp_TypeInfo_var)))), 3, /*hidden argument*/NULL);
return L_39;
}
IL_01d3:
{
Il2CppObject * L_40 = ___value;
V_3 = ((*(DateTime_t339033936 *)((DateTime_t339033936 *)UnBox (L_40, DateTime_t339033936_il2cpp_TypeInfo_var))));
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_41 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_42 = DateTime_ToString_m2141430949((&V_3), _stringLiteral4135191040, L_41, /*hidden argument*/NULL);
return L_42;
}
IL_01ec:
{
Il2CppObject * L_43 = ___value;
V_4 = ((*(DateTime_t339033936 *)((DateTime_t339033936 *)UnBox (L_43, DateTime_t339033936_il2cpp_TypeInfo_var))));
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_44 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_45 = DateTime_ToString_m2141430949((&V_4), _stringLiteral1741562264, L_44, /*hidden argument*/NULL);
return L_45;
}
IL_0206:
{
Il2CppObject * L_46 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_47 = XmlConvert_ToString_m387516780(NULL /*static, unused*/, ((*(Decimal_t1688557254 *)((Decimal_t1688557254 *)UnBox (L_46, Decimal_t1688557254_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_47;
}
IL_0212:
{
Il2CppObject * L_48 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_49 = XmlConvert_ToString_m1423584644(NULL /*static, unused*/, ((*(double*)((double*)UnBox (L_48, Double_t534516614_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_49;
}
IL_021e:
{
Il2CppObject * L_50 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_51 = XmlConvert_ToString_m1296444361(NULL /*static, unused*/, ((*(int16_t*)((int16_t*)UnBox (L_50, Int16_t2847414729_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_51;
}
IL_022a:
{
Il2CppObject * L_52 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_53 = XmlConvert_ToString_m1296446159(NULL /*static, unused*/, ((*(int32_t*)((int32_t*)UnBox (L_52, Int32_t2847414787_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_53;
}
IL_0236:
{
Il2CppObject * L_54 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_55 = XmlConvert_ToString_m1296449104(NULL /*static, unused*/, ((*(int64_t*)((int64_t*)UnBox (L_54, Int64_t2847414882_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_55;
}
IL_0242:
{
Il2CppObject * L_56 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_57 = XmlConvert_ToString_m1542315746(NULL /*static, unused*/, ((*(int8_t*)((int8_t*)UnBox (L_56, SByte_t2855346064_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_57;
}
IL_024e:
{
Il2CppObject * L_58 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_59 = XmlConvert_ToString_m1673147373(NULL /*static, unused*/, ((*(float*)((float*)UnBox (L_58, Single_t958209021_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_59;
}
IL_025a:
{
Il2CppObject * L_60 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_61 = XmlConvert_ToString_m2532351030(NULL /*static, unused*/, ((*(uint16_t*)((uint16_t*)UnBox (L_60, UInt16_t985925268_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_61;
}
IL_0266:
{
Il2CppObject * L_62 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_63 = XmlConvert_ToString_m2532352828(NULL /*static, unused*/, ((*(uint32_t*)((uint32_t*)UnBox (L_62, UInt32_t985925326_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_63;
}
IL_0272:
{
Il2CppObject * L_64 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_65 = XmlConvert_ToString_m2532355773(NULL /*static, unused*/, ((*(uint64_t*)((uint64_t*)UnBox (L_64, UInt64_t985925421_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_65;
}
IL_027e:
{
Il2CppObject * L_66 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_67 = XmlConvert_ToString_m3780951244(NULL /*static, unused*/, ((*(Guid_t2778838590 *)((Guid_t2778838590 *)UnBox (L_66, Guid_t2778838590_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_67;
}
IL_028a:
{
Il2CppObject * L_68 = ___value;
if (L_68)
{
goto IL_029a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_69 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
G_B28_0 = L_69;
goto IL_02a5;
}
IL_029a:
{
Il2CppObject * L_70 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1097883944_il2cpp_TypeInfo_var);
String_t* L_71 = Convert_ToBase64String_m1841808901(NULL /*static, unused*/, ((ByteU5BU5D_t58506160*)Castclass(L_70, ByteU5BU5D_t58506160_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
G_B28_0 = L_71;
}
IL_02a5:
{
return G_B28_0;
}
IL_02a6:
{
Il2CppObject * L_72 = ___value;
if (L_72)
{
goto IL_02b6;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_73 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
G_B32_0 = L_73;
goto IL_02c1;
}
IL_02b6:
{
Il2CppObject * L_74 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_75 = XmlConvert_ToBinHexString_m1853917911(NULL /*static, unused*/, ((ByteU5BU5D_t58506160*)Castclass(L_74, ByteU5BU5D_t58506160_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
G_B32_0 = L_75;
}
IL_02c1:
{
return G_B32_0;
}
IL_02c2:
{
Il2CppObject * L_76 = ___value;
return ((String_t*)CastclassSealed(L_76, String_t_il2cpp_TypeInfo_var));
}
IL_02c9:
{
Il2CppObject * L_77 = ___value;
if (!((Il2CppObject *)IsInst(L_77, IFormattable_t2460033475_il2cpp_TypeInfo_var)))
{
goto IL_02ea;
}
}
{
Il2CppObject * L_78 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_79 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck(((Il2CppObject *)Castclass(L_78, IFormattable_t2460033475_il2cpp_TypeInfo_var)));
String_t* L_80 = InterfaceFuncInvoker2< String_t*, String_t*, Il2CppObject * >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t2460033475_il2cpp_TypeInfo_var, ((Il2CppObject *)Castclass(L_78, IFormattable_t2460033475_il2cpp_TypeInfo_var)), (String_t*)NULL, L_79);
G_B37_0 = L_80;
goto IL_02f0;
}
IL_02ea:
{
Il2CppObject * L_81 = ___value;
NullCheck(L_81);
String_t* L_82 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_81);
G_B37_0 = L_82;
}
IL_02f0:
{
return G_B37_0;
}
}
// System.Object System.Xml.Serialization.XmlCustomFormatter::FromXmlString(System.Xml.Serialization.TypeData,System.String)
extern TypeInfo* XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var;
extern TypeInfo* Dictionary_2_t190145395_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* Boolean_t211005341_il2cpp_TypeInfo_var;
extern TypeInfo* Byte_t2778693821_il2cpp_TypeInfo_var;
extern TypeInfo* Char_t2778706699_il2cpp_TypeInfo_var;
extern TypeInfo* DateTime_t339033936_il2cpp_TypeInfo_var;
extern TypeInfo* Decimal_t1688557254_il2cpp_TypeInfo_var;
extern TypeInfo* Double_t534516614_il2cpp_TypeInfo_var;
extern TypeInfo* Int16_t2847414729_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* Int64_t2847414882_il2cpp_TypeInfo_var;
extern TypeInfo* SByte_t2855346064_il2cpp_TypeInfo_var;
extern TypeInfo* Single_t958209021_il2cpp_TypeInfo_var;
extern TypeInfo* UInt16_t985925268_il2cpp_TypeInfo_var;
extern TypeInfo* UInt32_t985925326_il2cpp_TypeInfo_var;
extern TypeInfo* UInt64_t985925421_il2cpp_TypeInfo_var;
extern TypeInfo* Guid_t2778838590_il2cpp_TypeInfo_var;
extern TypeInfo* Convert_t1097883944_il2cpp_TypeInfo_var;
extern const MethodInfo* Dictionary_2__ctor_m1958628151_MethodInfo_var;
extern Il2CppCodeGenString* _stringLiteral64711720;
extern Il2CppCodeGenString* _stringLiteral1141225885;
extern Il2CppCodeGenString* _stringLiteral3052374;
extern Il2CppCodeGenString* _stringLiteral1792749467;
extern Il2CppCodeGenString* _stringLiteral3076014;
extern Il2CppCodeGenString* _stringLiteral3560141;
extern Il2CppCodeGenString* _stringLiteral1542263633;
extern Il2CppCodeGenString* _stringLiteral2969009105;
extern Il2CppCodeGenString* _stringLiteral109413500;
extern Il2CppCodeGenString* _stringLiteral104431;
extern Il2CppCodeGenString* _stringLiteral3327612;
extern Il2CppCodeGenString* _stringLiteral3039496;
extern Il2CppCodeGenString* _stringLiteral97526364;
extern Il2CppCodeGenString* _stringLiteral1033453191;
extern Il2CppCodeGenString* _stringLiteral1145198778;
extern Il2CppCodeGenString* _stringLiteral1141514001;
extern Il2CppCodeGenString* _stringLiteral3184265;
extern Il2CppCodeGenString* _stringLiteral2898763087;
extern Il2CppCodeGenString* _stringLiteral3078954544;
extern Il2CppCodeGenString* _stringLiteral2049608444;
extern Il2CppCodeGenString* _stringLiteral2302954900;
extern Il2CppCodeGenString* _stringLiteral4135191040;
extern Il2CppCodeGenString* _stringLiteral1741562264;
extern const uint32_t XmlCustomFormatter_FromXmlString_m1762936378_MetadataUsageId;
extern "C" Il2CppObject * XmlCustomFormatter_FromXmlString_m1762936378 (Il2CppObject * __this /* static, unused */, TypeData_t3837952962 * ___type, String_t* ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlCustomFormatter_FromXmlString_m1762936378_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
Dictionary_2_t190145395 * V_1 = NULL;
int32_t V_2 = 0;
{
String_t* L_0 = ___value;
if (L_0)
{
goto IL_0008;
}
}
{
return NULL;
}
IL_0008:
{
TypeData_t3837952962 * L_1 = ___type;
NullCheck(L_1);
String_t* L_2 = TypeData_get_XmlType_m3918246226(L_1, /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
if (!L_3)
{
goto IL_028c;
}
}
{
Dictionary_2_t190145395 * L_4 = ((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map3E_1();
if (L_4)
{
goto IL_0135;
}
}
{
Dictionary_2_t190145395 * L_5 = (Dictionary_2_t190145395 *)il2cpp_codegen_object_new(Dictionary_2_t190145395_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m1958628151(L_5, ((int32_t)21), /*hidden argument*/Dictionary_2__ctor_m1958628151_MethodInfo_var);
V_1 = L_5;
Dictionary_2_t190145395 * L_6 = V_1;
NullCheck(L_6);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_6, _stringLiteral64711720, 0);
Dictionary_2_t190145395 * L_7 = V_1;
NullCheck(L_7);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_7, _stringLiteral1141225885, 1);
Dictionary_2_t190145395 * L_8 = V_1;
NullCheck(L_8);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_8, _stringLiteral3052374, 2);
Dictionary_2_t190145395 * L_9 = V_1;
NullCheck(L_9);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_9, _stringLiteral1792749467, 3);
Dictionary_2_t190145395 * L_10 = V_1;
NullCheck(L_10);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_10, _stringLiteral3076014, 4);
Dictionary_2_t190145395 * L_11 = V_1;
NullCheck(L_11);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_11, _stringLiteral3560141, 5);
Dictionary_2_t190145395 * L_12 = V_1;
NullCheck(L_12);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_12, _stringLiteral1542263633, 6);
Dictionary_2_t190145395 * L_13 = V_1;
NullCheck(L_13);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_13, _stringLiteral2969009105, 7);
Dictionary_2_t190145395 * L_14 = V_1;
NullCheck(L_14);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_14, _stringLiteral109413500, 8);
Dictionary_2_t190145395 * L_15 = V_1;
NullCheck(L_15);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_15, _stringLiteral104431, ((int32_t)9));
Dictionary_2_t190145395 * L_16 = V_1;
NullCheck(L_16);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_16, _stringLiteral3327612, ((int32_t)10));
Dictionary_2_t190145395 * L_17 = V_1;
NullCheck(L_17);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_17, _stringLiteral3039496, ((int32_t)11));
Dictionary_2_t190145395 * L_18 = V_1;
NullCheck(L_18);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_18, _stringLiteral97526364, ((int32_t)12));
Dictionary_2_t190145395 * L_19 = V_1;
NullCheck(L_19);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_19, _stringLiteral1033453191, ((int32_t)13));
Dictionary_2_t190145395 * L_20 = V_1;
NullCheck(L_20);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_20, _stringLiteral1145198778, ((int32_t)14));
Dictionary_2_t190145395 * L_21 = V_1;
NullCheck(L_21);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_21, _stringLiteral1141514001, ((int32_t)15));
Dictionary_2_t190145395 * L_22 = V_1;
NullCheck(L_22);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_22, _stringLiteral3184265, ((int32_t)16));
Dictionary_2_t190145395 * L_23 = V_1;
NullCheck(L_23);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_23, _stringLiteral2898763087, ((int32_t)17));
Dictionary_2_t190145395 * L_24 = V_1;
NullCheck(L_24);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_24, _stringLiteral3078954544, ((int32_t)17));
Dictionary_2_t190145395 * L_25 = V_1;
NullCheck(L_25);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_25, _stringLiteral2049608444, ((int32_t)18));
Dictionary_2_t190145395 * L_26 = V_1;
NullCheck(L_26);
VirtActionInvoker2< String_t*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) */, L_26, _stringLiteral2302954900, ((int32_t)19));
Dictionary_2_t190145395 * L_27 = V_1;
((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->set_U3CU3Ef__switchU24map3E_1(L_27);
}
IL_0135:
{
Dictionary_2_t190145395 * L_28 = ((XmlCustomFormatter_t4081221888_StaticFields*)XmlCustomFormatter_t4081221888_il2cpp_TypeInfo_var->static_fields)->get_U3CU3Ef__switchU24map3E_1();
String_t* L_29 = V_0;
NullCheck(L_28);
bool L_30 = VirtFuncInvoker2< bool, String_t*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) */, L_28, L_29, (&V_2));
if (!L_30)
{
goto IL_028c;
}
}
{
int32_t L_31 = V_2;
if (L_31 == 0)
{
goto IL_01a2;
}
if (L_31 == 1)
{
goto IL_01ae;
}
if (L_31 == 2)
{
goto IL_01ba;
}
if (L_31 == 3)
{
goto IL_01c7;
}
if (L_31 == 4)
{
goto IL_01d4;
}
if (L_31 == 5)
{
goto IL_01e6;
}
if (L_31 == 6)
{
goto IL_01f8;
}
if (L_31 == 7)
{
goto IL_0204;
}
if (L_31 == 8)
{
goto IL_0210;
}
if (L_31 == 9)
{
goto IL_021c;
}
if (L_31 == 10)
{
goto IL_0228;
}
if (L_31 == 11)
{
goto IL_0234;
}
if (L_31 == 12)
{
goto IL_0240;
}
if (L_31 == 13)
{
goto IL_024c;
}
if (L_31 == 14)
{
goto IL_0258;
}
if (L_31 == 15)
{
goto IL_0264;
}
if (L_31 == 16)
{
goto IL_0270;
}
if (L_31 == 17)
{
goto IL_027c;
}
if (L_31 == 18)
{
goto IL_0283;
}
if (L_31 == 19)
{
goto IL_028a;
}
}
{
goto IL_028c;
}
IL_01a2:
{
String_t* L_32 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
bool L_33 = XmlConvert_ToBoolean_m3758854944(NULL /*static, unused*/, L_32, /*hidden argument*/NULL);
bool L_34 = L_33;
Il2CppObject * L_35 = Box(Boolean_t211005341_il2cpp_TypeInfo_var, &L_34);
return L_35;
}
IL_01ae:
{
String_t* L_36 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
uint8_t L_37 = XmlConvert_ToByte_m1845524822(NULL /*static, unused*/, L_36, /*hidden argument*/NULL);
uint8_t L_38 = L_37;
Il2CppObject * L_39 = Box(Byte_t2778693821_il2cpp_TypeInfo_var, &L_38);
return L_39;
}
IL_01ba:
{
String_t* L_40 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
int32_t L_41 = XmlConvert_ToInt32_m3773620768(NULL /*static, unused*/, L_40, /*hidden argument*/NULL);
uint16_t L_42 = ((uint16_t)(((int32_t)((uint16_t)L_41))));
Il2CppObject * L_43 = Box(Char_t2778706699_il2cpp_TypeInfo_var, &L_42);
return L_43;
}
IL_01c7:
{
String_t* L_44 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
DateTime_t339033936 L_45 = XmlConvert_ToDateTime_m4285748037(NULL /*static, unused*/, L_44, 3, /*hidden argument*/NULL);
DateTime_t339033936 L_46 = L_45;
Il2CppObject * L_47 = Box(DateTime_t339033936_il2cpp_TypeInfo_var, &L_46);
return L_47;
}
IL_01d4:
{
String_t* L_48 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t339033936_il2cpp_TypeInfo_var);
DateTime_t339033936 L_49 = DateTime_ParseExact_m1034945555(NULL /*static, unused*/, L_48, _stringLiteral4135191040, (Il2CppObject *)NULL, /*hidden argument*/NULL);
DateTime_t339033936 L_50 = L_49;
Il2CppObject * L_51 = Box(DateTime_t339033936_il2cpp_TypeInfo_var, &L_50);
return L_51;
}
IL_01e6:
{
String_t* L_52 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t339033936_il2cpp_TypeInfo_var);
DateTime_t339033936 L_53 = DateTime_ParseExact_m1034945555(NULL /*static, unused*/, L_52, _stringLiteral1741562264, (Il2CppObject *)NULL, /*hidden argument*/NULL);
DateTime_t339033936 L_54 = L_53;
Il2CppObject * L_55 = Box(DateTime_t339033936_il2cpp_TypeInfo_var, &L_54);
return L_55;
}
IL_01f8:
{
String_t* L_56 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
Decimal_t1688557254 L_57 = XmlConvert_ToDecimal_m3464816128(NULL /*static, unused*/, L_56, /*hidden argument*/NULL);
Decimal_t1688557254 L_58 = L_57;
Il2CppObject * L_59 = Box(Decimal_t1688557254_il2cpp_TypeInfo_var, &L_58);
return L_59;
}
IL_0204:
{
String_t* L_60 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
double L_61 = XmlConvert_ToDouble_m1758308804(NULL /*static, unused*/, L_60, /*hidden argument*/NULL);
double L_62 = L_61;
Il2CppObject * L_63 = Box(Double_t534516614_il2cpp_TypeInfo_var, &L_62);
return L_63;
}
IL_0210:
{
String_t* L_64 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
int16_t L_65 = XmlConvert_ToInt16_m674493152(NULL /*static, unused*/, L_64, /*hidden argument*/NULL);
int16_t L_66 = L_65;
Il2CppObject * L_67 = Box(Int16_t2847414729_il2cpp_TypeInfo_var, &L_66);
return L_67;
}
IL_021c:
{
String_t* L_68 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
int32_t L_69 = XmlConvert_ToInt32_m3773620768(NULL /*static, unused*/, L_68, /*hidden argument*/NULL);
int32_t L_70 = L_69;
Il2CppObject * L_71 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_70);
return L_71;
}
IL_0228:
{
String_t* L_72 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
int64_t L_73 = XmlConvert_ToInt64_m778201600(NULL /*static, unused*/, L_72, /*hidden argument*/NULL);
int64_t L_74 = L_73;
Il2CppObject * L_75 = Box(Int64_t2847414882_il2cpp_TypeInfo_var, &L_74);
return L_75;
}
IL_0234:
{
String_t* L_76 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
int8_t L_77 = XmlConvert_ToSByte_m29345728(NULL /*static, unused*/, L_76, /*hidden argument*/NULL);
int8_t L_78 = L_77;
Il2CppObject * L_79 = Box(SByte_t2855346064_il2cpp_TypeInfo_var, &L_78);
return L_79;
}
IL_0240:
{
String_t* L_80 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
float L_81 = XmlConvert_ToSingle_m34142998(NULL /*static, unused*/, L_80, /*hidden argument*/NULL);
float L_82 = L_81;
Il2CppObject * L_83 = Box(Single_t958209021_il2cpp_TypeInfo_var, &L_82);
return L_83;
}
IL_024c:
{
String_t* L_84 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
uint16_t L_85 = XmlConvert_ToUInt16_m1167065128(NULL /*static, unused*/, L_84, /*hidden argument*/NULL);
uint16_t L_86 = L_85;
Il2CppObject * L_87 = Box(UInt16_t985925268_il2cpp_TypeInfo_var, &L_86);
return L_87;
}
IL_0258:
{
String_t* L_88 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
uint32_t L_89 = XmlConvert_ToUInt32_m2021978420(NULL /*static, unused*/, L_88, /*hidden argument*/NULL);
uint32_t L_90 = L_89;
Il2CppObject * L_91 = Box(UInt32_t985925326_il2cpp_TypeInfo_var, &L_90);
return L_91;
}
IL_0264:
{
String_t* L_92 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
uint64_t L_93 = XmlConvert_ToUInt64_m2681755830(NULL /*static, unused*/, L_92, /*hidden argument*/NULL);
uint64_t L_94 = L_93;
Il2CppObject * L_95 = Box(UInt64_t985925421_il2cpp_TypeInfo_var, &L_94);
return L_95;
}
IL_0270:
{
String_t* L_96 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
Guid_t2778838590 L_97 = XmlConvert_ToGuid_m1476180436(NULL /*static, unused*/, L_96, /*hidden argument*/NULL);
Guid_t2778838590 L_98 = L_97;
Il2CppObject * L_99 = Box(Guid_t2778838590_il2cpp_TypeInfo_var, &L_98);
return L_99;
}
IL_027c:
{
String_t* L_100 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1097883944_il2cpp_TypeInfo_var);
ByteU5BU5D_t58506160* L_101 = Convert_FromBase64String_m901846280(NULL /*static, unused*/, L_100, /*hidden argument*/NULL);
return (Il2CppObject *)L_101;
}
IL_0283:
{
String_t* L_102 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
ByteU5BU5D_t58506160* L_103 = XmlConvert_FromBinHexString_m923478344(NULL /*static, unused*/, L_102, /*hidden argument*/NULL);
return (Il2CppObject *)L_103;
}
IL_028a:
{
String_t* L_104 = ___value;
return L_104;
}
IL_028c:
{
TypeData_t3837952962 * L_105 = ___type;
NullCheck(L_105);
Type_t * L_106 = TypeData_get_Type_m2191724548(L_105, /*hidden argument*/NULL);
if (!L_106)
{
goto IL_02a4;
}
}
{
String_t* L_107 = ___value;
TypeData_t3837952962 * L_108 = ___type;
NullCheck(L_108);
Type_t * L_109 = TypeData_get_Type_m2191724548(L_108, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1097883944_il2cpp_TypeInfo_var);
Il2CppObject * L_110 = Convert_ChangeType_m2922880930(NULL /*static, unused*/, L_107, L_109, /*hidden argument*/NULL);
return L_110;
}
IL_02a4:
{
String_t* L_111 = ___value;
return L_111;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String)
extern "C" void XmlElementAttribute__ctor_m2091415648 (XmlElementAttribute_t27258549 * __this, String_t* ___elementName, const MethodInfo* method)
{
{
__this->set_order_6((-1));
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
String_t* L_0 = ___elementName;
__this->set_elementName_1(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String,System.Type)
extern "C" void XmlElementAttribute__ctor_m138835859 (XmlElementAttribute_t27258549 * __this, String_t* ___elementName, Type_t * ___type, const MethodInfo* method)
{
{
__this->set_order_6((-1));
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
String_t* L_0 = ___elementName;
__this->set_elementName_1(L_0);
Type_t * L_1 = ___type;
__this->set_type_5(L_1);
return;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_DataType()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlElementAttribute_get_DataType_m2093922770_MetadataUsageId;
extern "C" String_t* XmlElementAttribute_get_DataType_m2093922770 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttribute_get_DataType_m2093922770_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_dataType_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_dataType_0();
return L_2;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_ElementName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlElementAttribute_get_ElementName_m194355195_MetadataUsageId;
extern "C" String_t* XmlElementAttribute_get_ElementName_m194355195 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttribute_get_ElementName_m194355195_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_elementName_1();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_elementName_1();
return L_2;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlElementAttribute::get_Form()
extern "C" int32_t XmlElementAttribute_get_Form_m1415635677 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_form_2();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlElementAttribute::get_Namespace()
extern "C" String_t* XmlElementAttribute_get_Namespace_m3612299631 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_3();
return L_0;
}
}
// System.Boolean System.Xml.Serialization.XmlElementAttribute::get_IsNullable()
extern "C" bool XmlElementAttribute_get_IsNullable_m2090133534 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isNullable_4();
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlElementAttribute::get_Type()
extern "C" Type_t * XmlElementAttribute_get_Type_m4054639999 (XmlElementAttribute_t27258549 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_5();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::set_Type(System.Type)
extern "C" void XmlElementAttribute_set_Type_m3857562624 (XmlElementAttribute_t27258549 * __this, Type_t * ___value, const MethodInfo* method)
{
{
Type_t * L_0 = ___value;
__this->set_type_5(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementAttribute::AddKeyHash(System.Text.StringBuilder)
extern TypeInfo* XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2689964;
extern const uint32_t XmlElementAttribute_AddKeyHash_m3283382300_MetadataUsageId;
extern "C" void XmlElementAttribute_AddKeyHash_m3283382300 (XmlElementAttribute_t27258549 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttribute_AddKeyHash_m3283382300_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2689964, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_3();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_elementName_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
int32_t L_6 = __this->get_form_2();
int32_t L_7 = L_6;
Il2CppObject * L_8 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_7);
NullCheck((Enum_t2778772662 *)L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_8);
int32_t L_10 = ((int32_t)0);
Il2CppObject * L_11 = Box(XmlSchemaForm_t3432383625_il2cpp_TypeInfo_var, &L_10);
NullCheck((Enum_t2778772662 *)L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Enum::ToString() */, (Enum_t2778772662 *)L_11);
KeyHelper_AddField_m2575778134(NULL /*static, unused*/, L_5, 3, L_9, L_12, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_13 = ___sb;
String_t* L_14 = __this->get_dataType_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_13, 4, L_14, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_15 = ___sb;
Type_t * L_16 = __this->get_type_5();
KeyHelper_AddField_m2451117329(NULL /*static, unused*/, L_15, 5, L_16, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_17 = ___sb;
bool L_18 = __this->get_isNullable_4();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_17, 6, L_18, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_19 = ___sb;
NullCheck(L_19);
StringBuilder_Append_m2143093878(L_19, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementAttributes::.ctor()
extern "C" void XmlElementAttributes__ctor_m137185265 (XmlElementAttributes_t485582810 * __this, const MethodInfo* method)
{
{
CollectionBase__ctor_m3181013581(__this, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Serialization.XmlElementAttribute System.Xml.Serialization.XmlElementAttributes::get_Item(System.Int32)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementAttribute_t27258549_il2cpp_TypeInfo_var;
extern const uint32_t XmlElementAttributes_get_Item_m280791570_MetadataUsageId;
extern "C" XmlElementAttribute_t27258549 * XmlElementAttributes_get_Item_m280791570 (XmlElementAttributes_t485582810 * __this, int32_t ___index, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttributes_get_Item_m280791570_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index;
NullCheck(L_0);
Il2CppObject * L_2 = InterfaceFuncInvoker1< Il2CppObject *, int32_t >::Invoke(2 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return ((XmlElementAttribute_t27258549 *)CastclassClass(L_2, XmlElementAttribute_t27258549_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Xml.Serialization.XmlElementAttributes::Add(System.Xml.Serialization.XmlElementAttribute)
extern TypeInfo* IList_t1612618265_il2cpp_TypeInfo_var;
extern const uint32_t XmlElementAttributes_Add_m1561453903_MetadataUsageId;
extern "C" int32_t XmlElementAttributes_Add_m1561453903 (XmlElementAttributes_t485582810 * __this, XmlElementAttribute_t27258549 * ___attribute, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttributes_Add_m1561453903_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = CollectionBase_get_List_m2531266242(__this, /*hidden argument*/NULL);
XmlElementAttribute_t27258549 * L_1 = ___attribute;
NullCheck(L_0);
int32_t L_2 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(4 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1612618265_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlElementAttributes::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral83390497;
extern const uint32_t XmlElementAttributes_AddKeyHash_m2031660523_MetadataUsageId;
extern "C" void XmlElementAttributes_AddKeyHash_m2031660523 (XmlElementAttributes_t485582810 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementAttributes_AddKeyHash_m2031660523_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
StringBuilder_t3822575854 * L_1 = ___sb;
NullCheck(L_1);
StringBuilder_Append_m3898090075(L_1, _stringLiteral83390497, /*hidden argument*/NULL);
V_0 = 0;
goto IL_0030;
}
IL_001f:
{
int32_t L_2 = V_0;
XmlElementAttribute_t27258549 * L_3 = XmlElementAttributes_get_Item_m280791570(__this, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_4 = ___sb;
NullCheck(L_3);
XmlElementAttribute_AddKeyHash_m3283382300(L_3, L_4, /*hidden argument*/NULL);
int32_t L_5 = V_0;
V_0 = ((int32_t)((int32_t)L_5+(int32_t)1));
}
IL_0030:
{
int32_t L_6 = V_0;
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, __this);
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_001f;
}
}
{
StringBuilder_t3822575854 * L_8 = ___sb;
NullCheck(L_8);
StringBuilder_Append_m2143093878(L_8, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementEventArgs::.ctor(System.Xml.XmlElement,System.Int32,System.Int32,System.Object)
extern TypeInfo* EventArgs_t516466188_il2cpp_TypeInfo_var;
extern const uint32_t XmlElementEventArgs__ctor_m1629867902_MetadataUsageId;
extern "C" void XmlElementEventArgs__ctor_m1629867902 (XmlElementEventArgs_t45031088 * __this, XmlElement_t3562928333 * ___attr, int32_t ___lineNum, int32_t ___linePos, Il2CppObject * ___source, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlElementEventArgs__ctor_m1629867902_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t516466188_il2cpp_TypeInfo_var);
EventArgs__ctor_m1904770202(__this, /*hidden argument*/NULL);
XmlElement_t3562928333 * L_0 = ___attr;
__this->set_attr_1(L_0);
int32_t L_1 = ___lineNum;
__this->set_lineNumber_2(L_1);
int32_t L_2 = ___linePos;
__this->set_linePosition_3(L_2);
Il2CppObject * L_3 = ___source;
__this->set_obj_4(L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementEventArgs::set_ExpectedElements(System.String)
extern "C" void XmlElementEventArgs_set_ExpectedElements_m1260204665 (XmlElementEventArgs_t45031088 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set_expectedElements_5(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlElementEventHandler::.ctor(System.Object,System.IntPtr)
extern "C" void XmlElementEventHandler__ctor_m905419850 (XmlElementEventHandler_t2494321811 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlElementEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlElementEventArgs)
extern "C" void XmlElementEventHandler_Invoke_m1452419704 (XmlElementEventHandler_t2494321811 * __this, Il2CppObject * ___sender, XmlElementEventArgs_t45031088 * ___e, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlElementEventHandler_Invoke_m1452419704((XmlElementEventHandler_t2494321811 *)__this->get_prev_9(),___sender, ___e, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___sender, XmlElementEventArgs_t45031088 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___sender, XmlElementEventArgs_t45031088 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, XmlElementEventArgs_t45031088 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlElementEventHandler_t2494321811(Il2CppObject* delegate, Il2CppObject * ___sender, XmlElementEventArgs_t45031088 * ___e)
{
// Marshaling of parameter '___sender' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlElementEventHandler::BeginInvoke(System.Object,System.Xml.Serialization.XmlElementEventArgs,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlElementEventHandler_BeginInvoke_m4261089987 (XmlElementEventHandler_t2494321811 * __this, Il2CppObject * ___sender, XmlElementEventArgs_t45031088 * ___e, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender;
__d_args[1] = ___e;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlElementEventHandler::EndInvoke(System.IAsyncResult)
extern "C" void XmlElementEventHandler_EndInvoke_m659080026 (XmlElementEventHandler_t2494321811 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlEnumAttribute::.ctor(System.String)
extern "C" void XmlEnumAttribute__ctor_m3270823257 (XmlEnumAttribute_t1057710466 * __this, String_t* ___name, const MethodInfo* method)
{
{
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
String_t* L_0 = ___name;
__this->set_name_0(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlEnumAttribute::get_Name()
extern "C" String_t* XmlEnumAttribute_get_Name_m3316519660 (XmlEnumAttribute_t1057710466 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_name_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlEnumAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral83402432;
extern const uint32_t XmlEnumAttribute_AddKeyHash_m1862241347_MetadataUsageId;
extern "C" void XmlEnumAttribute_AddKeyHash_m1862241347 (XmlEnumAttribute_t1057710466 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlEnumAttribute_AddKeyHash_m1862241347_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral83402432, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_name_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
NullCheck(L_3);
StringBuilder_Append_m2143093878(L_3, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlIgnoreAttribute::.ctor()
extern "C" void XmlIgnoreAttribute__ctor_m4005923482 (XmlIgnoreAttribute_t2523800977 * __this, const MethodInfo* method)
{
{
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
return;
}
}
// System.Type System.Xml.Serialization.XmlIncludeAttribute::get_Type()
extern "C" Type_t * XmlIncludeAttribute_get_Type_m2550346579 (XmlIncludeAttribute_t3812448905 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::.ctor(System.String,System.String)
extern "C" void XmlMapping__ctor_m1202900424 (XmlMapping_t2344951413 * __this, String_t* ___elementName, String_t* ___ns, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
String_t* L_0 = ___elementName;
__this->set__elementName_4(L_0);
String_t* L_1 = ___ns;
__this->set__namespace_5(L_1);
return;
}
}
// System.String System.Xml.Serialization.XmlMapping::get_ElementName()
extern "C" String_t* XmlMapping_get_ElementName_m2753779381 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__elementName_4();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlMapping::get_Namespace()
extern "C" String_t* XmlMapping_get_Namespace_m4151275177 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__namespace_5();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::SetKey(System.String)
extern "C" void XmlMapping_SetKey_m1466420855 (XmlMapping_t2344951413 * __this, String_t* ___key, const MethodInfo* method)
{
{
String_t* L_0 = ___key;
__this->set_key_6(L_0);
return;
}
}
// System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::get_ObjectMap()
extern "C" ObjectMap_t669501211 * XmlMapping_get_ObjectMap_m3032707184 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
ObjectMap_t669501211 * L_0 = __this->get_map_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_ObjectMap(System.Xml.Serialization.ObjectMap)
extern "C" void XmlMapping_set_ObjectMap_m639554027 (XmlMapping_t2344951413 * __this, ObjectMap_t669501211 * ___value, const MethodInfo* method)
{
{
ObjectMap_t669501211 * L_0 = ___value;
__this->set_map_0(L_0);
return;
}
}
// System.Collections.ArrayList System.Xml.Serialization.XmlMapping::get_RelatedMaps()
extern "C" ArrayList_t2121638921 * XmlMapping_get_RelatedMaps_m3510136543 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get_relatedMaps_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_RelatedMaps(System.Collections.ArrayList)
extern "C" void XmlMapping_set_RelatedMaps_m1674995290 (XmlMapping_t2344951413 * __this, ArrayList_t2121638921 * ___value, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = ___value;
__this->set_relatedMaps_1(L_0);
return;
}
}
// System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::get_Format()
extern "C" int32_t XmlMapping_get_Format_m561560336 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_format_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_Format(System.Xml.Serialization.SerializationFormat)
extern "C" void XmlMapping_set_Format_m1449275055 (XmlMapping_t2344951413 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set_format_2(L_0);
return;
}
}
// System.Xml.Serialization.SerializationSource System.Xml.Serialization.XmlMapping::get_Source()
extern "C" SerializationSource_t3475287465 * XmlMapping_get_Source_m4094841176 (XmlMapping_t2344951413 * __this, const MethodInfo* method)
{
{
SerializationSource_t3475287465 * L_0 = __this->get_source_3();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlMapping::set_Source(System.Xml.Serialization.SerializationSource)
extern "C" void XmlMapping_set_Source_m3193541679 (XmlMapping_t2344951413 * __this, SerializationSource_t3475287465 * ___value, const MethodInfo* method)
{
{
SerializationSource_t3475287465 * L_0 = ___value;
__this->set_source_3(L_0);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlMembersMapping::get_Count()
extern "C" int32_t XmlMembersMapping_get_Count_m3479698991 (XmlMembersMapping_t2913331946 * __this, const MethodInfo* method)
{
{
XmlMemberMappingU5BU5D_t311040762* L_0 = __this->get__mapping_8();
NullCheck(L_0);
return (((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length))));
}
}
// System.Boolean System.Xml.Serialization.XmlMembersMapping::get_HasWrapperElement()
extern "C" bool XmlMembersMapping_get_HasWrapperElement_m915764701 (XmlMembersMapping_t2913331946 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get__hasWrapperElement_7();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlNodeEventArgs::.ctor(System.Int32,System.Int32,System.String,System.String,System.String,System.Xml.XmlNodeType,System.Object,System.String)
extern TypeInfo* EventArgs_t516466188_il2cpp_TypeInfo_var;
extern const uint32_t XmlNodeEventArgs__ctor_m490603432_MetadataUsageId;
extern "C" void XmlNodeEventArgs__ctor_m490603432 (XmlNodeEventArgs_t619448732 * __this, int32_t ___linenumber, int32_t ___lineposition, String_t* ___localname, String_t* ___name, String_t* ___nsuri, int32_t ___nodetype, Il2CppObject * ___source, String_t* ___text, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlNodeEventArgs__ctor_m490603432_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t516466188_il2cpp_TypeInfo_var);
EventArgs__ctor_m1904770202(__this, /*hidden argument*/NULL);
int32_t L_0 = ___linenumber;
__this->set_linenumber_1(L_0);
int32_t L_1 = ___lineposition;
__this->set_lineposition_2(L_1);
String_t* L_2 = ___localname;
__this->set_localname_3(L_2);
String_t* L_3 = ___name;
__this->set_name_4(L_3);
String_t* L_4 = ___nsuri;
__this->set_nsuri_5(L_4);
int32_t L_5 = ___nodetype;
__this->set_nodetype_6(L_5);
Il2CppObject * L_6 = ___source;
__this->set_source_7(L_6);
String_t* L_7 = ___text;
__this->set_text_8(L_7);
return;
}
}
// System.Void System.Xml.Serialization.XmlNodeEventHandler::.ctor(System.Object,System.IntPtr)
extern "C" void XmlNodeEventHandler__ctor_m3101322098 (XmlNodeEventHandler_t3820646951 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlNodeEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlNodeEventArgs)
extern "C" void XmlNodeEventHandler_Invoke_m1420910658 (XmlNodeEventHandler_t3820646951 * __this, Il2CppObject * ___sender, XmlNodeEventArgs_t619448732 * ___e, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlNodeEventHandler_Invoke_m1420910658((XmlNodeEventHandler_t3820646951 *)__this->get_prev_9(),___sender, ___e, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___sender, XmlNodeEventArgs_t619448732 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___sender, XmlNodeEventArgs_t619448732 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, XmlNodeEventArgs_t619448732 * ___e, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___sender, ___e,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlNodeEventHandler_t3820646951(Il2CppObject* delegate, Il2CppObject * ___sender, XmlNodeEventArgs_t619448732 * ___e)
{
// Marshaling of parameter '___sender' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlNodeEventHandler::BeginInvoke(System.Object,System.Xml.Serialization.XmlNodeEventArgs,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlNodeEventHandler_BeginInvoke_m2560741487 (XmlNodeEventHandler_t3820646951 * __this, Il2CppObject * ___sender, XmlNodeEventArgs_t619448732 * ___e, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender;
__d_args[1] = ___e;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlNodeEventHandler::EndInvoke(System.IAsyncResult)
extern "C" void XmlNodeEventHandler_EndInvoke_m1258382978 (XmlNodeEventHandler_t3820646951 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::.ctor(System.Xml.Serialization.XmlAttributeOverrides,System.String)
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributeOverrides_t186122464_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter__ctor_m3546538387_MetadataUsageId;
extern "C" void XmlReflectionImporter__ctor_m3546538387 (XmlReflectionImporter_t3346079314 * __this, XmlAttributeOverrides_t186122464 * ___attributeOverrides, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter__ctor_m3546538387_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
ReflectionHelper_t3225254263 * L_0 = (ReflectionHelper_t3225254263 *)il2cpp_codegen_object_new(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ReflectionHelper__ctor_m3125697524(L_0, /*hidden argument*/NULL);
__this->set_helper_3(L_0);
__this->set_arrayChoiceCount_4(1);
ArrayList_t2121638921 * L_1 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_1, /*hidden argument*/NULL);
__this->set_relatedMaps_5(L_1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
String_t* L_2 = ___defaultNamespace;
if (L_2)
{
goto IL_0039;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_3 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
__this->set_initialDefaultNamespace_0(L_3);
goto IL_0040;
}
IL_0039:
{
String_t* L_4 = ___defaultNamespace;
__this->set_initialDefaultNamespace_0(L_4);
}
IL_0040:
{
XmlAttributeOverrides_t186122464 * L_5 = ___attributeOverrides;
if (L_5)
{
goto IL_0056;
}
}
{
XmlAttributeOverrides_t186122464 * L_6 = (XmlAttributeOverrides_t186122464 *)il2cpp_codegen_object_new(XmlAttributeOverrides_t186122464_il2cpp_TypeInfo_var);
XmlAttributeOverrides__ctor_m3813648023(L_6, /*hidden argument*/NULL);
__this->set_attributeOverrides_1(L_6);
goto IL_005d;
}
IL_0056:
{
XmlAttributeOverrides_t186122464 * L_7 = ___attributeOverrides;
__this->set_attributeOverrides_1(L_7);
}
IL_005d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::.cctor()
extern TypeInfo* XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral556583339;
extern Il2CppCodeGenString* _stringLiteral3980419948;
extern const uint32_t XmlReflectionImporter__cctor_m2165927656_MetadataUsageId;
extern "C" void XmlReflectionImporter__cctor_m2165927656 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter__cctor_m2165927656_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
((XmlReflectionImporter_t3346079314_StaticFields*)XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var->static_fields)->set_errSimple_7(_stringLiteral556583339);
((XmlReflectionImporter_t3346079314_StaticFields*)XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var->static_fields)->set_errSimple2_8(_stringLiteral3980419948);
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type)
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportTypeMapping_m1477374953 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, const MethodInfo* method)
{
{
Type_t * L_0 = ___type;
XmlTypeMapping_t988104027 * L_1 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_0, (XmlRootAttribute_t2483700417 *)NULL, (String_t*)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.String)
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportTypeMapping_m1184272485 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, String_t* ___defaultNamespace, const MethodInfo* method)
{
{
Type_t * L_0 = ___type;
String_t* L_1 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_2 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_0, (XmlRootAttribute_t2483700417 *)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String)
extern const Il2CppType* Void_t2779279689_0_0_0_var;
extern TypeInfo* ArgumentNullException_t3214793280_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3575610;
extern Il2CppCodeGenString* _stringLiteral4126831511;
extern Il2CppCodeGenString* _stringLiteral2610958965;
extern const uint32_t XmlReflectionImporter_ImportTypeMapping_m4129187674_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportTypeMapping_m4129187674 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportTypeMapping_m4129187674_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___type;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t3214793280 * L_1 = (ArgumentNullException_t3214793280 *)il2cpp_codegen_object_new(ArgumentNullException_t3214793280_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m135444188(L_1, _stringLiteral3575610, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
Type_t * L_2 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Void_t2779279689_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3))))
{
goto IL_003c;
}
}
{
Type_t * L_4 = ___type;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_4);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_6 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral4126831511, L_5, _stringLiteral2610958965, /*hidden argument*/NULL);
NotSupportedException_t1374155497 * L_7 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7);
}
IL_003c:
{
Type_t * L_8 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_9 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
XmlRootAttribute_t2483700417 * L_10 = ___root;
String_t* L_11 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_12 = XmlReflectionImporter_ImportTypeMapping_m3880975803(__this, L_9, L_10, L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern const Il2CppType* Type_t_0_0_0_var;
extern TypeInfo* ArgumentNullException_t3214793280_il2cpp_TypeInfo_var;
extern TypeInfo* ArgumentException_t124305799_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeSerializationSource_t3729967672_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3618162180;
extern Il2CppCodeGenString* _stringLiteral2819418031;
extern Il2CppCodeGenString* _stringLiteral81291270;
extern Il2CppCodeGenString* _stringLiteral221021168;
extern Il2CppCodeGenString* _stringLiteral4000264779;
extern const uint32_t XmlReflectionImporter_ImportTypeMapping_m3880975803_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportTypeMapping_m3880975803 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportTypeMapping_m3880975803_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapping_t988104027 * V_0 = NULL;
TypeU5BU5D_t3431720054* V_1 = NULL;
InvalidOperationException_t2420574324 * V_2 = NULL;
int32_t V_3 = 0;
XmlTypeMapping_t988104027 * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
TypeU5BU5D_t3431720054* G_B20_0 = NULL;
{
TypeData_t3837952962 * L_0 = ___typeData;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t3214793280 * L_1 = (ArgumentNullException_t3214793280 *)il2cpp_codegen_object_new(ArgumentNullException_t3214793280_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m135444188(L_1, _stringLiteral3618162180, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
TypeData_t3837952962 * L_2 = ___typeData;
NullCheck(L_2);
Type_t * L_3 = TypeData_get_Type_m2191724548(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0027;
}
}
{
ArgumentException_t124305799 * L_4 = (ArgumentException_t124305799 *)il2cpp_codegen_object_new(ArgumentException_t124305799_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3544856547(L_4, _stringLiteral2819418031, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4);
}
IL_0027:
{
String_t* L_5 = ___defaultNamespace;
if (L_5)
{
goto IL_0035;
}
}
{
String_t* L_6 = __this->get_initialDefaultNamespace_0();
___defaultNamespace = L_6;
}
IL_0035:
{
String_t* L_7 = ___defaultNamespace;
if (L_7)
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
___defaultNamespace = L_8;
}
IL_0042:
try
{ // begin try (depth: 1)
{
TypeData_t3837952962 * L_9 = ___typeData;
NullCheck(L_9);
int32_t L_10 = TypeData_get_SchemaType_m1693934194(L_9, /*hidden argument*/NULL);
V_3 = L_10;
int32_t L_11 = V_3;
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 0)
{
goto IL_009d;
}
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 1)
{
goto IL_00ac;
}
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 2)
{
goto IL_007d;
}
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 3)
{
goto IL_006e;
}
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 4)
{
goto IL_00bb;
}
if (((int32_t)((int32_t)L_11-(int32_t)1)) == 5)
{
goto IL_008e;
}
}
IL_0069:
{
goto IL_00ca;
}
IL_006e:
{
TypeData_t3837952962 * L_12 = ___typeData;
XmlRootAttribute_t2483700417 * L_13 = ___root;
String_t* L_14 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_15 = XmlReflectionImporter_ImportClassMapping_m1249078031(__this, L_12, L_13, L_14, /*hidden argument*/NULL);
V_0 = L_15;
goto IL_00ea;
}
IL_007d:
{
TypeData_t3837952962 * L_16 = ___typeData;
XmlRootAttribute_t2483700417 * L_17 = ___root;
String_t* L_18 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_19 = XmlReflectionImporter_ImportListMapping_m1868833002(__this, L_16, L_17, L_18, (XmlAttributes_t2892492364 *)NULL, 0, /*hidden argument*/NULL);
V_0 = L_19;
goto IL_00ea;
}
IL_008e:
{
TypeData_t3837952962 * L_20 = ___typeData;
XmlRootAttribute_t2483700417 * L_21 = ___root;
String_t* L_22 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_23 = XmlReflectionImporter_ImportXmlNodeMapping_m3126312272(__this, L_20, L_21, L_22, /*hidden argument*/NULL);
V_0 = L_23;
goto IL_00ea;
}
IL_009d:
{
TypeData_t3837952962 * L_24 = ___typeData;
XmlRootAttribute_t2483700417 * L_25 = ___root;
String_t* L_26 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_27 = XmlReflectionImporter_ImportPrimitiveMapping_m764540222(__this, L_24, L_25, L_26, /*hidden argument*/NULL);
V_0 = L_27;
goto IL_00ea;
}
IL_00ac:
{
TypeData_t3837952962 * L_28 = ___typeData;
XmlRootAttribute_t2483700417 * L_29 = ___root;
String_t* L_30 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_31 = XmlReflectionImporter_ImportEnumMapping_m3873708482(__this, L_28, L_29, L_30, /*hidden argument*/NULL);
V_0 = L_31;
goto IL_00ea;
}
IL_00bb:
{
TypeData_t3837952962 * L_32 = ___typeData;
XmlRootAttribute_t2483700417 * L_33 = ___root;
String_t* L_34 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_35 = XmlReflectionImporter_ImportXmlSerializableMapping_m2671709965(__this, L_32, L_33, L_34, /*hidden argument*/NULL);
V_0 = L_35;
goto IL_00ea;
}
IL_00ca:
{
TypeData_t3837952962 * L_36 = ___typeData;
NullCheck(L_36);
Type_t * L_37 = TypeData_get_Type_m2191724548(L_36, /*hidden argument*/NULL);
NullCheck(L_37);
String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_37);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_39 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral81291270, L_38, _stringLiteral221021168, /*hidden argument*/NULL);
NotSupportedException_t1374155497 * L_40 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_40, L_39, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40);
}
IL_00ea:
{
XmlTypeMapping_t988104027 * L_41 = V_0;
TypeData_t3837952962 * L_42 = ___typeData;
NullCheck(L_42);
Type_t * L_43 = TypeData_get_Type_m2191724548(L_42, /*hidden argument*/NULL);
NullCheck(L_43);
String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_43);
NullCheck(L_41);
XmlMapping_SetKey_m1466420855(L_41, L_44, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_45 = V_0;
ArrayList_t2121638921 * L_46 = __this->get_relatedMaps_5();
NullCheck(L_45);
XmlMapping_set_RelatedMaps_m1674995290(L_45, L_46, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_47 = V_0;
NullCheck(L_47);
XmlMapping_set_Format_m1449275055(L_47, 1, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_48 = __this->get_includedTypes_2();
if (!L_48)
{
goto IL_0138;
}
}
IL_0119:
{
ArrayList_t2121638921 * L_49 = __this->get_includedTypes_2();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_50 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_49);
Il2CppArray * L_51 = VirtFuncInvoker1< Il2CppArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_49, L_50);
G_B20_0 = ((TypeU5BU5D_t3431720054*)Castclass(L_51, TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var));
goto IL_0139;
}
IL_0138:
{
G_B20_0 = ((TypeU5BU5D_t3431720054*)(NULL));
}
IL_0139:
{
V_1 = G_B20_0;
XmlTypeMapping_t988104027 * L_52 = V_0;
TypeData_t3837952962 * L_53 = ___typeData;
NullCheck(L_53);
Type_t * L_54 = TypeData_get_Type_m2191724548(L_53, /*hidden argument*/NULL);
XmlRootAttribute_t2483700417 * L_55 = ___root;
XmlAttributeOverrides_t186122464 * L_56 = __this->get_attributeOverrides_1();
String_t* L_57 = ___defaultNamespace;
TypeU5BU5D_t3431720054* L_58 = V_1;
XmlTypeSerializationSource_t3729967672 * L_59 = (XmlTypeSerializationSource_t3729967672 *)il2cpp_codegen_object_new(XmlTypeSerializationSource_t3729967672_il2cpp_TypeInfo_var);
XmlTypeSerializationSource__ctor_m1341730730(L_59, L_54, L_55, L_56, L_57, L_58, /*hidden argument*/NULL);
NullCheck(L_52);
XmlMapping_set_Source_m3193541679(L_52, L_59, /*hidden argument*/NULL);
bool L_60 = __this->get_allowPrivateTypes_6();
if (!L_60)
{
goto IL_016b;
}
}
IL_015f:
{
XmlTypeMapping_t988104027 * L_61 = V_0;
NullCheck(L_61);
SerializationSource_t3475287465 * L_62 = XmlMapping_get_Source_m4094841176(L_61, /*hidden argument*/NULL);
NullCheck(L_62);
VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.Xml.Serialization.SerializationSource::set_CanBeGenerated(System.Boolean) */, L_62, (bool)0);
}
IL_016b:
{
XmlTypeMapping_t988104027 * L_63 = V_0;
V_4 = L_63;
goto IL_01a8;
}
IL_0173:
{
; // IL_0173: leave IL_01a8
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (InvalidOperationException_t2420574324_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_0178;
throw e;
}
CATCH_0178:
{ // begin catch(System.InvalidOperationException)
{
V_2 = ((InvalidOperationException_t2420574324 *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_64 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_65 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
TypeData_t3837952962 * L_66 = ___typeData;
NullCheck(L_66);
Type_t * L_67 = TypeData_get_Type_m2191724548(L_66, /*hidden argument*/NULL);
NullCheck(L_67);
String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_67);
NullCheck(L_65);
IL2CPP_ARRAY_BOUNDS_CHECK(L_65, 0);
ArrayElementTypeCheck (L_65, L_68);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_68);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_69 = String_Format_m3351777162(NULL /*static, unused*/, L_64, _stringLiteral4000264779, L_65, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_70 = V_2;
InvalidOperationException_t2420574324 * L_71 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2119621158(L_71, L_69, L_70, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_71);
}
IL_01a3:
{
goto IL_01a8;
}
} // end catch (depth: 1)
IL_01a8:
{
XmlTypeMapping_t988104027 * L_72 = V_4;
return L_72;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::CreateTypeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializableMapping_t3919399670_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral45119813;
extern Il2CppCodeGenString* _stringLiteral3407237249;
extern const uint32_t XmlReflectionImporter_CreateTypeMapping_m2215889550_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_CreateTypeMapping_m2215889550 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultXmlType, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_CreateTypeMapping_m2215889550_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
bool V_3 = false;
XmlAttributes_t2892492364 * V_4 = NULL;
bool V_5 = false;
XmlTypeMapping_t988104027 * V_6 = NULL;
int32_t V_7 = 0;
{
String_t* L_0 = ___defaultNamespace;
V_0 = L_0;
V_1 = (String_t*)NULL;
V_3 = (bool)1;
V_4 = (XmlAttributes_t2892492364 *)NULL;
TypeData_t3837952962 * L_1 = ___typeData;
bool L_2 = XmlReflectionImporter_CanBeNull_m8119077(__this, L_1, /*hidden argument*/NULL);
V_5 = L_2;
String_t* L_3 = ___defaultXmlType;
if (L_3)
{
goto IL_0021;
}
}
{
TypeData_t3837952962 * L_4 = ___typeData;
NullCheck(L_4);
String_t* L_5 = TypeData_get_XmlType_m3918246226(L_4, /*hidden argument*/NULL);
___defaultXmlType = L_5;
}
IL_0021:
{
TypeData_t3837952962 * L_6 = ___typeData;
NullCheck(L_6);
bool L_7 = TypeData_get_IsListType_m1977463454(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0073;
}
}
{
XmlAttributeOverrides_t186122464 * L_8 = __this->get_attributeOverrides_1();
if (!L_8)
{
goto IL_004a;
}
}
{
XmlAttributeOverrides_t186122464 * L_9 = __this->get_attributeOverrides_1();
TypeData_t3837952962 * L_10 = ___typeData;
NullCheck(L_10);
Type_t * L_11 = TypeData_get_Type_m2191724548(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
XmlAttributes_t2892492364 * L_12 = XmlAttributeOverrides_get_Item_m4109820025(L_9, L_11, /*hidden argument*/NULL);
V_4 = L_12;
}
IL_004a:
{
XmlAttributes_t2892492364 * L_13 = V_4;
if (!L_13)
{
goto IL_0073;
}
}
{
TypeData_t3837952962 * L_14 = ___typeData;
NullCheck(L_14);
int32_t L_15 = TypeData_get_SchemaType_m1693934194(L_14, /*hidden argument*/NULL);
if ((!(((uint32_t)L_15) == ((uint32_t)1))))
{
goto IL_0073;
}
}
{
TypeData_t3837952962 * L_16 = ___typeData;
NullCheck(L_16);
String_t* L_17 = TypeData_get_FullTypeName_m2969171957(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_18 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral45119813, L_17, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_19 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19);
}
IL_0073:
{
XmlAttributes_t2892492364 * L_20 = V_4;
if (L_20)
{
goto IL_0087;
}
}
{
TypeData_t3837952962 * L_21 = ___typeData;
NullCheck(L_21);
Type_t * L_22 = TypeData_get_Type_m2191724548(L_21, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_23 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m1209025076(L_23, L_22, /*hidden argument*/NULL);
V_4 = L_23;
}
IL_0087:
{
XmlAttributes_t2892492364 * L_24 = V_4;
NullCheck(L_24);
XmlRootAttribute_t2483700417 * L_25 = XmlAttributes_get_XmlRoot_m309037213(L_24, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_00a2;
}
}
{
XmlRootAttribute_t2483700417 * L_26 = ___root;
if (L_26)
{
goto IL_00a2;
}
}
{
XmlAttributes_t2892492364 * L_27 = V_4;
NullCheck(L_27);
XmlRootAttribute_t2483700417 * L_28 = XmlAttributes_get_XmlRoot_m309037213(L_27, /*hidden argument*/NULL);
___root = L_28;
}
IL_00a2:
{
XmlAttributes_t2892492364 * L_29 = V_4;
NullCheck(L_29);
XmlTypeAttribute_t43505513 * L_30 = XmlAttributes_get_XmlType_m3654346653(L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_0118;
}
}
{
XmlAttributes_t2892492364 * L_31 = V_4;
NullCheck(L_31);
XmlTypeAttribute_t43505513 * L_32 = XmlAttributes_get_XmlType_m3654346653(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
String_t* L_33 = XmlTypeAttribute_get_Namespace_m823455349(L_32, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00cc;
}
}
{
XmlAttributes_t2892492364 * L_34 = V_4;
NullCheck(L_34);
XmlTypeAttribute_t43505513 * L_35 = XmlAttributes_get_XmlType_m3654346653(L_34, /*hidden argument*/NULL);
NullCheck(L_35);
String_t* L_36 = XmlTypeAttribute_get_Namespace_m823455349(L_35, /*hidden argument*/NULL);
V_1 = L_36;
}
IL_00cc:
{
XmlAttributes_t2892492364 * L_37 = V_4;
NullCheck(L_37);
XmlTypeAttribute_t43505513 * L_38 = XmlAttributes_get_XmlType_m3654346653(L_37, /*hidden argument*/NULL);
NullCheck(L_38);
String_t* L_39 = XmlTypeAttribute_get_TypeName_m4236473005(L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_010b;
}
}
{
XmlAttributes_t2892492364 * L_40 = V_4;
NullCheck(L_40);
XmlTypeAttribute_t43505513 * L_41 = XmlAttributes_get_XmlType_m3654346653(L_40, /*hidden argument*/NULL);
NullCheck(L_41);
String_t* L_42 = XmlTypeAttribute_get_TypeName_m4236473005(L_41, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_43 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_44 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_42, L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_010b;
}
}
{
XmlAttributes_t2892492364 * L_45 = V_4;
NullCheck(L_45);
XmlTypeAttribute_t43505513 * L_46 = XmlAttributes_get_XmlType_m3654346653(L_45, /*hidden argument*/NULL);
NullCheck(L_46);
String_t* L_47 = XmlTypeAttribute_get_TypeName_m4236473005(L_46, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_48 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_47, /*hidden argument*/NULL);
___defaultXmlType = L_48;
}
IL_010b:
{
XmlAttributes_t2892492364 * L_49 = V_4;
NullCheck(L_49);
XmlTypeAttribute_t43505513 * L_50 = XmlAttributes_get_XmlType_m3654346653(L_49, /*hidden argument*/NULL);
NullCheck(L_50);
bool L_51 = XmlTypeAttribute_get_IncludeInSchema_m1947145965(L_50, /*hidden argument*/NULL);
V_3 = L_51;
}
IL_0118:
{
String_t* L_52 = ___defaultXmlType;
V_2 = L_52;
XmlRootAttribute_t2483700417 * L_53 = ___root;
if (!L_53)
{
goto IL_0156;
}
}
{
XmlRootAttribute_t2483700417 * L_54 = ___root;
NullCheck(L_54);
String_t* L_55 = XmlRootAttribute_get_ElementName_m2482075945(L_54, /*hidden argument*/NULL);
NullCheck(L_55);
int32_t L_56 = String_get_Length_m2979997331(L_55, /*hidden argument*/NULL);
if (!L_56)
{
goto IL_013c;
}
}
{
XmlRootAttribute_t2483700417 * L_57 = ___root;
NullCheck(L_57);
String_t* L_58 = XmlRootAttribute_get_ElementName_m2482075945(L_57, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_59 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_58, /*hidden argument*/NULL);
V_2 = L_59;
}
IL_013c:
{
XmlRootAttribute_t2483700417 * L_60 = ___root;
NullCheck(L_60);
String_t* L_61 = XmlRootAttribute_get_Namespace_m4253785629(L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_014e;
}
}
{
XmlRootAttribute_t2483700417 * L_62 = ___root;
NullCheck(L_62);
String_t* L_63 = XmlRootAttribute_get_Namespace_m4253785629(L_62, /*hidden argument*/NULL);
V_0 = L_63;
}
IL_014e:
{
XmlRootAttribute_t2483700417 * L_64 = ___root;
NullCheck(L_64);
bool L_65 = XmlRootAttribute_get_IsNullable_m850359814(L_64, /*hidden argument*/NULL);
V_5 = L_65;
}
IL_0156:
{
String_t* L_66 = V_0;
if (L_66)
{
goto IL_0162;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_67 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
V_0 = L_67;
}
IL_0162:
{
String_t* L_68 = V_1;
if (L_68)
{
goto IL_016a;
}
}
{
String_t* L_69 = V_0;
V_1 = L_69;
}
IL_016a:
{
TypeData_t3837952962 * L_70 = ___typeData;
NullCheck(L_70);
int32_t L_71 = TypeData_get_SchemaType_m1693934194(L_70, /*hidden argument*/NULL);
V_7 = L_71;
int32_t L_72 = V_7;
if ((((int32_t)L_72) == ((int32_t)1)))
{
goto IL_0198;
}
}
{
int32_t L_73 = V_7;
if ((((int32_t)L_73) == ((int32_t)5)))
{
goto IL_0187;
}
}
{
goto IL_01c9;
}
IL_0187:
{
String_t* L_74 = V_2;
String_t* L_75 = V_0;
TypeData_t3837952962 * L_76 = ___typeData;
String_t* L_77 = ___defaultXmlType;
String_t* L_78 = V_1;
XmlSerializableMapping_t3919399670 * L_79 = (XmlSerializableMapping_t3919399670 *)il2cpp_codegen_object_new(XmlSerializableMapping_t3919399670_il2cpp_TypeInfo_var);
XmlSerializableMapping__ctor_m1941425557(L_79, L_74, L_75, L_76, L_77, L_78, /*hidden argument*/NULL);
V_6 = L_79;
goto IL_01da;
}
IL_0198:
{
TypeData_t3837952962 * L_80 = ___typeData;
NullCheck(L_80);
bool L_81 = TypeData_get_IsXsdType_m3775213727(L_80, /*hidden argument*/NULL);
if (L_81)
{
goto IL_01b8;
}
}
{
String_t* L_82 = V_2;
String_t* L_83 = V_0;
TypeData_t3837952962 * L_84 = ___typeData;
String_t* L_85 = ___defaultXmlType;
XmlTypeMapping_t988104027 * L_86 = (XmlTypeMapping_t988104027 *)il2cpp_codegen_object_new(XmlTypeMapping_t988104027_il2cpp_TypeInfo_var);
XmlTypeMapping__ctor_m1515273402(L_86, L_82, L_83, L_84, L_85, _stringLiteral3407237249, /*hidden argument*/NULL);
V_6 = L_86;
goto IL_01c4;
}
IL_01b8:
{
String_t* L_87 = V_2;
String_t* L_88 = V_0;
TypeData_t3837952962 * L_89 = ___typeData;
String_t* L_90 = ___defaultXmlType;
String_t* L_91 = V_1;
XmlTypeMapping_t988104027 * L_92 = (XmlTypeMapping_t988104027 *)il2cpp_codegen_object_new(XmlTypeMapping_t988104027_il2cpp_TypeInfo_var);
XmlTypeMapping__ctor_m1515273402(L_92, L_87, L_88, L_89, L_90, L_91, /*hidden argument*/NULL);
V_6 = L_92;
}
IL_01c4:
{
goto IL_01da;
}
IL_01c9:
{
String_t* L_93 = V_2;
String_t* L_94 = V_0;
TypeData_t3837952962 * L_95 = ___typeData;
String_t* L_96 = ___defaultXmlType;
String_t* L_97 = V_1;
XmlTypeMapping_t988104027 * L_98 = (XmlTypeMapping_t988104027 *)il2cpp_codegen_object_new(XmlTypeMapping_t988104027_il2cpp_TypeInfo_var);
XmlTypeMapping__ctor_m1515273402(L_98, L_93, L_94, L_95, L_96, L_97, /*hidden argument*/NULL);
V_6 = L_98;
goto IL_01da;
}
IL_01da:
{
XmlTypeMapping_t988104027 * L_99 = V_6;
bool L_100 = V_3;
NullCheck(L_99);
XmlTypeMapping_set_IncludeInSchema_m3085381238(L_99, L_100, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_101 = V_6;
bool L_102 = V_5;
NullCheck(L_101);
XmlTypeMapping_set_IsNullable_m1376214419(L_101, L_102, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_103 = __this->get_relatedMaps_5();
XmlTypeMapping_t988104027 * L_104 = V_6;
NullCheck(L_103);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_103, L_104);
XmlTypeMapping_t988104027 * L_105 = V_6;
return L_105;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportClassMapping_m4281043886_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportClassMapping_m4281043886 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportClassMapping_m4281043886_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_1 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
V_0 = L_1;
TypeData_t3837952962 * L_2 = V_0;
XmlRootAttribute_t2483700417 * L_3 = ___root;
String_t* L_4 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_5 = XmlReflectionImporter_ImportClassMapping_m1249078031(__this, L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportClassMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern const Il2CppType* String_t_0_0_0_var;
extern const Il2CppType* StringU5BU5D_t2956870243_0_0_0_var;
extern const Il2CppType* ObjectU5BU5D_t11523773_0_0_0_var;
extern const Il2CppType* XmlNodeU5BU5D_t1808339196_0_0_0_var;
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlReflectionMember_t891190874_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* ICollection_t3761522009_il2cpp_TypeInfo_var;
extern TypeInfo* XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1314416945;
extern const uint32_t XmlReflectionImporter_ImportClassMapping_m1249078031_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportClassMapping_m1249078031 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportClassMapping_m1249078031_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
ClassMap_t912207490 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
XmlReflectionMember_t891190874 * V_4 = NULL;
Il2CppObject * V_5 = NULL;
String_t* V_6 = NULL;
XmlTypeMapping_t988104027 * V_7 = NULL;
XmlTypeMapMember_t757519331 * V_8 = NULL;
Exception_t1967233988 * V_9 = NULL;
Type_t * V_10 = NULL;
Il2CppObject * V_11 = NULL;
XmlTypeMapping_t988104027 * V_12 = NULL;
ClassMap_t912207490 * V_13 = NULL;
XmlTypeMapMember_t757519331 * V_14 = NULL;
Il2CppObject * V_15 = NULL;
Il2CppObject * V_16 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectionHelper_t3225254263 * L_2 = __this->get_helper_3();
Type_t * L_3 = V_0;
TypeData_t3837952962 * L_4 = ___typeData;
XmlRootAttribute_t2483700417 * L_5 = ___root;
String_t* L_6 = ___defaultNamespace;
String_t* L_7 = XmlReflectionImporter_GetTypeNamespace_m2770405118(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_2);
XmlTypeMapping_t988104027 * L_8 = ReflectionHelper_GetRegisteredClrType_m3155313564(L_2, L_3, L_7, /*hidden argument*/NULL);
V_1 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
if (!L_9)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_10 = V_1;
return L_10;
}
IL_0025:
{
bool L_11 = __this->get_allowPrivateTypes_6();
if (L_11)
{
goto IL_0037;
}
}
{
Type_t * L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m1100022263(NULL /*static, unused*/, L_12, (bool)0, /*hidden argument*/NULL);
}
IL_0037:
{
TypeData_t3837952962 * L_13 = ___typeData;
XmlRootAttribute_t2483700417 * L_14 = ___root;
String_t* L_15 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_16 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_13, L_14, (String_t*)NULL, L_15, /*hidden argument*/NULL);
V_1 = L_16;
ReflectionHelper_t3225254263 * L_17 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_18 = V_1;
Type_t * L_19 = V_0;
XmlTypeMapping_t988104027 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
ReflectionHelper_RegisterClrType_m131744798(L_17, L_18, L_19, L_21, /*hidden argument*/NULL);
ReflectionHelper_t3225254263 * L_22 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_23 = V_1;
XmlTypeMapping_t988104027 * L_24 = V_1;
NullCheck(L_24);
String_t* L_25 = XmlTypeMapping_get_XmlType_m1769290969(L_24, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_26 = V_1;
NullCheck(L_26);
String_t* L_27 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_26, /*hidden argument*/NULL);
NullCheck(L_22);
ReflectionHelper_RegisterSchemaType_m2450491211(L_22, L_23, L_25, L_27, /*hidden argument*/NULL);
ClassMap_t912207490 * L_28 = (ClassMap_t912207490 *)il2cpp_codegen_object_new(ClassMap_t912207490_il2cpp_TypeInfo_var);
ClassMap__ctor_m3728665929(L_28, /*hidden argument*/NULL);
V_2 = L_28;
XmlTypeMapping_t988104027 * L_29 = V_1;
ClassMap_t912207490 * L_30 = V_2;
NullCheck(L_29);
XmlMapping_set_ObjectMap_m639554027(L_29, L_30, /*hidden argument*/NULL);
Type_t * L_31 = V_0;
Il2CppObject * L_32 = XmlReflectionImporter_GetReflectionMembers_m3636222560(__this, L_31, /*hidden argument*/NULL);
V_3 = L_32;
Il2CppObject * L_33 = V_3;
NullCheck(L_33);
Il2CppObject * L_34 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_33);
V_5 = L_34;
}
IL_008a:
try
{ // begin try (depth: 1)
{
goto IL_013e;
}
IL_008f:
{
Il2CppObject * L_35 = V_5;
NullCheck(L_35);
Il2CppObject * L_36 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_35);
V_4 = ((XmlReflectionMember_t891190874 *)CastclassClass(L_36, XmlReflectionMember_t891190874_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_37 = V_1;
NullCheck(L_37);
String_t* L_38 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_37, /*hidden argument*/NULL);
V_6 = L_38;
XmlReflectionMember_t891190874 * L_39 = V_4;
NullCheck(L_39);
XmlAttributes_t2892492364 * L_40 = XmlReflectionMember_get_XmlAttributes_m4015138473(L_39, /*hidden argument*/NULL);
NullCheck(L_40);
bool L_41 = XmlAttributes_get_XmlIgnore_m2081611233(L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_00bb;
}
}
IL_00b6:
{
goto IL_013e;
}
IL_00bb:
{
XmlReflectionMember_t891190874 * L_42 = V_4;
NullCheck(L_42);
Type_t * L_43 = XmlReflectionMember_get_DeclaringType_m4174777977(L_42, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_00ee;
}
}
IL_00c7:
{
XmlReflectionMember_t891190874 * L_44 = V_4;
NullCheck(L_44);
Type_t * L_45 = XmlReflectionMember_get_DeclaringType_m4174777977(L_44, /*hidden argument*/NULL);
Type_t * L_46 = V_0;
if ((((Il2CppObject*)(Type_t *)L_45) == ((Il2CppObject*)(Type_t *)L_46)))
{
goto IL_00ee;
}
}
IL_00d4:
{
XmlReflectionMember_t891190874 * L_47 = V_4;
NullCheck(L_47);
Type_t * L_48 = XmlReflectionMember_get_DeclaringType_m4174777977(L_47, /*hidden argument*/NULL);
XmlRootAttribute_t2483700417 * L_49 = ___root;
String_t* L_50 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_51 = XmlReflectionImporter_ImportClassMapping_m4281043886(__this, L_48, L_49, L_50, /*hidden argument*/NULL);
V_7 = L_51;
XmlTypeMapping_t988104027 * L_52 = V_7;
NullCheck(L_52);
String_t* L_53 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_52, /*hidden argument*/NULL);
V_6 = L_53;
}
IL_00ee:
try
{ // begin try (depth: 2)
Type_t * L_54 = V_0;
XmlReflectionMember_t891190874 * L_55 = V_4;
String_t* L_56 = V_6;
XmlTypeMapMember_t757519331 * L_57 = XmlReflectionImporter_CreateMapMember_m1348048932(__this, L_54, L_55, L_56, /*hidden argument*/NULL);
V_8 = L_57;
XmlTypeMapMember_t757519331 * L_58 = V_8;
Type_t * L_59 = V_0;
NullCheck(L_58);
XmlTypeMapMember_CheckOptionalValueType_m1568711098(L_58, L_59, /*hidden argument*/NULL);
ClassMap_t912207490 * L_60 = V_2;
XmlTypeMapMember_t757519331 * L_61 = V_8;
NullCheck(L_60);
ClassMap_AddMember_m1875253975(L_60, L_61, /*hidden argument*/NULL);
goto IL_013e;
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t1967233988_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_0110;
throw e;
}
CATCH_0110:
{ // begin catch(System.Exception)
{
V_9 = ((Exception_t1967233988 *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_62 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_63 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
XmlReflectionMember_t891190874 * L_64 = V_4;
NullCheck(L_64);
String_t* L_65 = XmlReflectionMember_get_MemberName_m2282802424(L_64, /*hidden argument*/NULL);
NullCheck(L_63);
IL2CPP_ARRAY_BOUNDS_CHECK(L_63, 0);
ArrayElementTypeCheck (L_63, L_65);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_65);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_66 = String_Format_m3351777162(NULL /*static, unused*/, L_62, _stringLiteral1314416945, L_63, /*hidden argument*/NULL);
Exception_t1967233988 * L_67 = V_9;
InvalidOperationException_t2420574324 * L_68 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2119621158(L_68, L_66, L_67, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_68);
}
IL_0139:
{
goto IL_013e;
}
} // end catch (depth: 2)
IL_013e:
{
Il2CppObject * L_69 = V_5;
NullCheck(L_69);
bool L_70 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_69);
if (L_70)
{
goto IL_008f;
}
}
IL_014a:
{
IL2CPP_LEAVE(0x165, FINALLY_014f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_014f;
}
FINALLY_014f:
{ // begin finally (depth: 1)
{
Il2CppObject * L_71 = V_5;
V_15 = ((Il2CppObject *)IsInst(L_71, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_72 = V_15;
if (L_72)
{
goto IL_015d;
}
}
IL_015c:
{
IL2CPP_END_FINALLY(335)
}
IL_015d:
{
Il2CppObject * L_73 = V_15;
NullCheck(L_73);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_73);
IL2CPP_END_FINALLY(335)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(335)
{
IL2CPP_JUMP_TBL(0x165, IL_0165)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0165:
{
Type_t * L_74 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_75 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_74) == ((Il2CppObject*)(Type_t *)L_75))))
{
goto IL_01dc;
}
}
{
ArrayList_t2121638921 * L_76 = __this->get_includedTypes_2();
if (!L_76)
{
goto IL_01dc;
}
}
{
ArrayList_t2121638921 * L_77 = __this->get_includedTypes_2();
NullCheck(L_77);
Il2CppObject * L_78 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_77);
V_11 = L_78;
}
IL_018d:
try
{ // begin try (depth: 1)
{
goto IL_01b5;
}
IL_0192:
{
Il2CppObject * L_79 = V_11;
NullCheck(L_79);
Il2CppObject * L_80 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_79);
V_10 = ((Type_t *)CastclassClass(L_80, Type_t_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_81 = V_1;
NullCheck(L_81);
ArrayList_t2121638921 * L_82 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_81, /*hidden argument*/NULL);
Type_t * L_83 = V_10;
String_t* L_84 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_85 = XmlReflectionImporter_ImportTypeMapping_m1184272485(__this, L_83, L_84, /*hidden argument*/NULL);
NullCheck(L_82);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_82, L_85);
}
IL_01b5:
{
Il2CppObject * L_86 = V_11;
NullCheck(L_86);
bool L_87 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_86);
if (L_87)
{
goto IL_0192;
}
}
IL_01c1:
{
IL2CPP_LEAVE(0x1DC, FINALLY_01c6);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_01c6;
}
FINALLY_01c6:
{ // begin finally (depth: 1)
{
Il2CppObject * L_88 = V_11;
V_16 = ((Il2CppObject *)IsInst(L_88, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_89 = V_16;
if (L_89)
{
goto IL_01d4;
}
}
IL_01d3:
{
IL2CPP_END_FINALLY(454)
}
IL_01d4:
{
Il2CppObject * L_90 = V_16;
NullCheck(L_90);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_90);
IL2CPP_END_FINALLY(454)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(454)
{
IL2CPP_JUMP_TBL(0x1DC, IL_01dc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_01dc:
{
Type_t * L_91 = V_0;
NullCheck(L_91);
Type_t * L_92 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_91);
if (!L_92)
{
goto IL_0291;
}
}
{
Type_t * L_93 = V_0;
NullCheck(L_93);
Type_t * L_94 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_93);
XmlRootAttribute_t2483700417 * L_95 = ___root;
String_t* L_96 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_97 = XmlReflectionImporter_ImportClassMapping_m4281043886(__this, L_94, L_95, L_96, /*hidden argument*/NULL);
V_12 = L_97;
XmlTypeMapping_t988104027 * L_98 = V_12;
NullCheck(L_98);
ObjectMap_t669501211 * L_99 = XmlMapping_get_ObjectMap_m3032707184(L_98, /*hidden argument*/NULL);
V_13 = ((ClassMap_t912207490 *)IsInstClass(L_99, ClassMap_t912207490_il2cpp_TypeInfo_var));
Type_t * L_100 = V_0;
NullCheck(L_100);
Type_t * L_101 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_100);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_102 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_101) == ((Il2CppObject*)(Type_t *)L_102)))
{
goto IL_0235;
}
}
{
XmlTypeMapping_t988104027 * L_103 = V_1;
XmlTypeMapping_t988104027 * L_104 = V_12;
NullCheck(L_103);
XmlTypeMapping_set_BaseMap_m1571702341(L_103, L_104, /*hidden argument*/NULL);
ClassMap_t912207490 * L_105 = V_13;
NullCheck(L_105);
bool L_106 = ClassMap_get_HasSimpleContent_m3703916553(L_105, /*hidden argument*/NULL);
if (L_106)
{
goto IL_0235;
}
}
{
ClassMap_t912207490 * L_107 = V_2;
NullCheck(L_107);
ClassMap_SetCanBeSimpleType_m4038087023(L_107, (bool)0, /*hidden argument*/NULL);
}
IL_0235:
{
XmlTypeMapping_t988104027 * L_108 = V_12;
XmlTypeMapping_t988104027 * L_109 = V_1;
XmlReflectionImporter_RegisterDerivedMap_m3264893851(__this, L_108, L_109, /*hidden argument*/NULL);
ClassMap_t912207490 * L_110 = V_13;
NullCheck(L_110);
bool L_111 = ClassMap_get_HasSimpleContent_m3703916553(L_110, /*hidden argument*/NULL);
if (!L_111)
{
goto IL_0291;
}
}
{
ClassMap_t912207490 * L_112 = V_2;
NullCheck(L_112);
Il2CppObject * L_113 = ClassMap_get_ElementMembers_m1176036895(L_112, /*hidden argument*/NULL);
if (!L_113)
{
goto IL_0291;
}
}
{
ClassMap_t912207490 * L_114 = V_2;
NullCheck(L_114);
Il2CppObject * L_115 = ClassMap_get_ElementMembers_m1176036895(L_114, /*hidden argument*/NULL);
NullCheck(L_115);
int32_t L_116 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3761522009_il2cpp_TypeInfo_var, L_115);
if ((((int32_t)L_116) == ((int32_t)1)))
{
goto IL_0291;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var);
String_t* L_117 = ((XmlReflectionImporter_t3346079314_StaticFields*)XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var->static_fields)->get_errSimple_7();
XmlTypeMapping_t988104027 * L_118 = V_1;
NullCheck(L_118);
TypeData_t3837952962 * L_119 = XmlTypeMapping_get_TypeData_m3898113510(L_118, /*hidden argument*/NULL);
NullCheck(L_119);
String_t* L_120 = TypeData_get_TypeName_m1117343750(L_119, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_121 = V_1;
NullCheck(L_121);
XmlTypeMapping_t988104027 * L_122 = XmlTypeMapping_get_BaseMap_m1656586130(L_121, /*hidden argument*/NULL);
NullCheck(L_122);
TypeData_t3837952962 * L_123 = XmlTypeMapping_get_TypeData_m3898113510(L_122, /*hidden argument*/NULL);
NullCheck(L_123);
String_t* L_124 = TypeData_get_TypeName_m1117343750(L_123, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_125 = String_Format_m2398979370(NULL /*static, unused*/, L_117, L_120, L_124, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_126 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_126, L_125, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_126);
}
IL_0291:
{
Type_t * L_127 = V_0;
String_t* L_128 = ___defaultNamespace;
XmlReflectionImporter_ImportIncludedTypes_m4244823514(__this, L_127, L_128, /*hidden argument*/NULL);
ClassMap_t912207490 * L_129 = V_2;
NullCheck(L_129);
XmlTypeMapMember_t757519331 * L_130 = ClassMap_get_XmlTextCollector_m2750672627(L_129, /*hidden argument*/NULL);
if (!L_130)
{
goto IL_0351;
}
}
{
ClassMap_t912207490 * L_131 = V_2;
NullCheck(L_131);
bool L_132 = ClassMap_get_HasSimpleContent_m3703916553(L_131, /*hidden argument*/NULL);
if (L_132)
{
goto IL_0351;
}
}
{
ClassMap_t912207490 * L_133 = V_2;
NullCheck(L_133);
XmlTypeMapMember_t757519331 * L_134 = ClassMap_get_XmlTextCollector_m2750672627(L_133, /*hidden argument*/NULL);
V_14 = L_134;
XmlTypeMapMember_t757519331 * L_135 = V_14;
NullCheck(L_135);
TypeData_t3837952962 * L_136 = XmlTypeMapMember_get_TypeData_m3428473262(L_135, /*hidden argument*/NULL);
NullCheck(L_136);
Type_t * L_137 = TypeData_get_Type_m2191724548(L_136, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_138 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_137) == ((Il2CppObject*)(Type_t *)L_138)))
{
goto IL_0351;
}
}
{
XmlTypeMapMember_t757519331 * L_139 = V_14;
NullCheck(L_139);
TypeData_t3837952962 * L_140 = XmlTypeMapMember_get_TypeData_m3428473262(L_139, /*hidden argument*/NULL);
NullCheck(L_140);
Type_t * L_141 = TypeData_get_Type_m2191724548(L_140, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_142 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(StringU5BU5D_t2956870243_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_141) == ((Il2CppObject*)(Type_t *)L_142)))
{
goto IL_0351;
}
}
{
XmlTypeMapMember_t757519331 * L_143 = V_14;
NullCheck(L_143);
TypeData_t3837952962 * L_144 = XmlTypeMapMember_get_TypeData_m3428473262(L_143, /*hidden argument*/NULL);
NullCheck(L_144);
Type_t * L_145 = TypeData_get_Type_m2191724548(L_144, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_146 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ObjectU5BU5D_t11523773_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_145) == ((Il2CppObject*)(Type_t *)L_146)))
{
goto IL_0351;
}
}
{
XmlTypeMapMember_t757519331 * L_147 = V_14;
NullCheck(L_147);
TypeData_t3837952962 * L_148 = XmlTypeMapMember_get_TypeData_m3428473262(L_147, /*hidden argument*/NULL);
NullCheck(L_148);
Type_t * L_149 = TypeData_get_Type_m2191724548(L_148, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_150 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNodeU5BU5D_t1808339196_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_149) == ((Il2CppObject*)(Type_t *)L_150)))
{
goto IL_0351;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var);
String_t* L_151 = ((XmlReflectionImporter_t3346079314_StaticFields*)XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var->static_fields)->get_errSimple2_8();
XmlTypeMapping_t988104027 * L_152 = V_1;
NullCheck(L_152);
TypeData_t3837952962 * L_153 = XmlTypeMapping_get_TypeData_m3898113510(L_152, /*hidden argument*/NULL);
NullCheck(L_153);
String_t* L_154 = TypeData_get_TypeName_m1117343750(L_153, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_155 = V_14;
NullCheck(L_155);
String_t* L_156 = XmlTypeMapMember_get_Name_m466877389(L_155, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_157 = V_14;
NullCheck(L_157);
TypeData_t3837952962 * L_158 = XmlTypeMapMember_get_TypeData_m3428473262(L_157, /*hidden argument*/NULL);
NullCheck(L_158);
String_t* L_159 = TypeData_get_TypeName_m1117343750(L_158, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_160 = String_Format_m3928391288(NULL /*static, unused*/, L_151, L_154, L_156, L_159, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_161 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_161, L_160, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_161);
}
IL_0351:
{
XmlTypeMapping_t988104027 * L_162 = V_1;
return L_162;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::RegisterDerivedMap(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.XmlTypeMapping)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_RegisterDerivedMap_m3264893851_MetadataUsageId;
extern "C" void XmlReflectionImporter_RegisterDerivedMap_m3264893851 (XmlReflectionImporter_t3346079314 * __this, XmlTypeMapping_t988104027 * ___map, XmlTypeMapping_t988104027 * ___derivedMap, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_RegisterDerivedMap_m3264893851_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapping_t988104027 * V_0 = NULL;
{
XmlTypeMapping_t988104027 * L_0 = ___map;
NullCheck(L_0);
ArrayList_t2121638921 * L_1 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_0, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_2 = ___derivedMap;
NullCheck(L_1);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_1, L_2);
XmlTypeMapping_t988104027 * L_3 = ___map;
NullCheck(L_3);
ArrayList_t2121638921 * L_4 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_3, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_5 = ___derivedMap;
NullCheck(L_5);
ArrayList_t2121638921 * L_6 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_5, /*hidden argument*/NULL);
NullCheck(L_4);
VirtActionInvoker1< Il2CppObject * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_4, L_6);
XmlTypeMapping_t988104027 * L_7 = ___map;
NullCheck(L_7);
XmlTypeMapping_t988104027 * L_8 = XmlTypeMapping_get_BaseMap_m1656586130(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_003b;
}
}
{
XmlTypeMapping_t988104027 * L_9 = ___map;
NullCheck(L_9);
XmlTypeMapping_t988104027 * L_10 = XmlTypeMapping_get_BaseMap_m1656586130(L_9, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_11 = ___derivedMap;
XmlReflectionImporter_RegisterDerivedMap_m3264893851(__this, L_10, L_11, /*hidden argument*/NULL);
goto IL_0060;
}
IL_003b:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_13 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_12, /*hidden argument*/NULL);
V_0 = L_13;
XmlTypeMapping_t988104027 * L_14 = V_0;
XmlTypeMapping_t988104027 * L_15 = ___map;
if ((((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_14) == ((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_15)))
{
goto IL_0060;
}
}
{
XmlTypeMapping_t988104027 * L_16 = V_0;
NullCheck(L_16);
ArrayList_t2121638921 * L_17 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_16, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_18 = ___derivedMap;
NullCheck(L_17);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18);
}
IL_0060:
{
return;
}
}
// System.String System.Xml.Serialization.XmlReflectionImporter::GetTypeNamespace(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_GetTypeNamespace_m2770405118_MetadataUsageId;
extern "C" String_t* XmlReflectionImporter_GetTypeNamespace_m2770405118 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_GetTypeNamespace_m2770405118_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
XmlAttributes_t2892492364 * V_1 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = (XmlAttributes_t2892492364 *)NULL;
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
bool L_1 = TypeData_get_IsListType_m1977463454(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_002c;
}
}
{
XmlAttributeOverrides_t186122464 * L_2 = __this->get_attributeOverrides_1();
if (!L_2)
{
goto IL_002c;
}
}
{
XmlAttributeOverrides_t186122464 * L_3 = __this->get_attributeOverrides_1();
TypeData_t3837952962 * L_4 = ___typeData;
NullCheck(L_4);
Type_t * L_5 = TypeData_get_Type_m2191724548(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
XmlAttributes_t2892492364 * L_6 = XmlAttributeOverrides_get_Item_m4109820025(L_3, L_5, /*hidden argument*/NULL);
V_1 = L_6;
}
IL_002c:
{
XmlAttributes_t2892492364 * L_7 = V_1;
if (L_7)
{
goto IL_003e;
}
}
{
TypeData_t3837952962 * L_8 = ___typeData;
NullCheck(L_8);
Type_t * L_9 = TypeData_get_Type_m2191724548(L_8, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_10 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m1209025076(L_10, L_9, /*hidden argument*/NULL);
V_1 = L_10;
}
IL_003e:
{
XmlAttributes_t2892492364 * L_11 = V_1;
NullCheck(L_11);
XmlTypeAttribute_t43505513 * L_12 = XmlAttributes_get_XmlType_m3654346653(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0086;
}
}
{
XmlAttributes_t2892492364 * L_13 = V_1;
NullCheck(L_13);
XmlTypeAttribute_t43505513 * L_14 = XmlAttributes_get_XmlType_m3654346653(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
String_t* L_15 = XmlTypeAttribute_get_Namespace_m823455349(L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0086;
}
}
{
XmlAttributes_t2892492364 * L_16 = V_1;
NullCheck(L_16);
XmlTypeAttribute_t43505513 * L_17 = XmlAttributes_get_XmlType_m3654346653(L_16, /*hidden argument*/NULL);
NullCheck(L_17);
String_t* L_18 = XmlTypeAttribute_get_Namespace_m823455349(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
int32_t L_19 = String_get_Length_m2979997331(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0086;
}
}
{
TypeData_t3837952962 * L_20 = ___typeData;
NullCheck(L_20);
int32_t L_21 = TypeData_get_SchemaType_m1693934194(L_20, /*hidden argument*/NULL);
if ((((int32_t)L_21) == ((int32_t)2)))
{
goto IL_0086;
}
}
{
XmlAttributes_t2892492364 * L_22 = V_1;
NullCheck(L_22);
XmlTypeAttribute_t43505513 * L_23 = XmlAttributes_get_XmlType_m3654346653(L_22, /*hidden argument*/NULL);
NullCheck(L_23);
String_t* L_24 = XmlTypeAttribute_get_Namespace_m823455349(L_23, /*hidden argument*/NULL);
V_0 = L_24;
}
IL_0086:
{
String_t* L_25 = V_0;
if (!L_25)
{
goto IL_0099;
}
}
{
String_t* L_26 = V_0;
NullCheck(L_26);
int32_t L_27 = String_get_Length_m2979997331(L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_0099;
}
}
{
String_t* L_28 = V_0;
return L_28;
}
IL_0099:
{
XmlAttributes_t2892492364 * L_29 = V_1;
NullCheck(L_29);
XmlRootAttribute_t2483700417 * L_30 = XmlAttributes_get_XmlRoot_m309037213(L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00b2;
}
}
{
XmlRootAttribute_t2483700417 * L_31 = ___root;
if (L_31)
{
goto IL_00b2;
}
}
{
XmlAttributes_t2892492364 * L_32 = V_1;
NullCheck(L_32);
XmlRootAttribute_t2483700417 * L_33 = XmlAttributes_get_XmlRoot_m309037213(L_32, /*hidden argument*/NULL);
___root = L_33;
}
IL_00b2:
{
XmlRootAttribute_t2483700417 * L_34 = ___root;
if (!L_34)
{
goto IL_00da;
}
}
{
XmlRootAttribute_t2483700417 * L_35 = ___root;
NullCheck(L_35);
String_t* L_36 = XmlRootAttribute_get_Namespace_m4253785629(L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00da;
}
}
{
XmlRootAttribute_t2483700417 * L_37 = ___root;
NullCheck(L_37);
String_t* L_38 = XmlRootAttribute_get_Namespace_m4253785629(L_37, /*hidden argument*/NULL);
NullCheck(L_38);
int32_t L_39 = String_get_Length_m2979997331(L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00da;
}
}
{
XmlRootAttribute_t2483700417 * L_40 = ___root;
NullCheck(L_40);
String_t* L_41 = XmlRootAttribute_get_Namespace_m4253785629(L_40, /*hidden argument*/NULL);
return L_41;
}
IL_00da:
{
String_t* L_42 = ___defaultNamespace;
if (L_42)
{
goto IL_00e6;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_43 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_43;
}
IL_00e6:
{
String_t* L_44 = ___defaultNamespace;
return L_44;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportListMapping_m2090871817_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportListMapping_m2090871817 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, XmlAttributes_t2892492364 * ___atts, int32_t ___nestingLevel, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportListMapping_m2090871817_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_1 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
V_0 = L_1;
TypeData_t3837952962 * L_2 = V_0;
XmlRootAttribute_t2483700417 * L_3 = ___root;
String_t* L_4 = ___defaultNamespace;
XmlAttributes_t2892492364 * L_5 = ___atts;
int32_t L_6 = ___nestingLevel;
XmlTypeMapping_t988104027 * L_7 = XmlReflectionImporter_ImportListMapping_m1868833002(__this, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportListMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String,System.Xml.Serialization.XmlAttributes,System.Int32)
extern const Il2CppType* XmlIncludeAttribute_t3812448905_0_0_0_var;
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlIncludeAttributeU5BU5D_t2660312372_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1836984187;
extern Il2CppCodeGenString* _stringLiteral2296313777;
extern const uint32_t XmlReflectionImporter_ImportListMapping_m1868833002_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportListMapping_m1868833002 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, XmlAttributes_t2892492364 * ___atts, int32_t ___nestingLevel, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportListMapping_m1868833002_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
ListMap_t2001748316 * V_1 = NULL;
Type_t * V_2 = NULL;
bool V_3 = false;
XmlTypeMapElementInfoList_t3690603483 * V_4 = NULL;
XmlArrayItemAttribute_t2429429989 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
Type_t * V_7 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_8 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_9 = NULL;
String_t* V_10 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_11 = NULL;
int32_t V_12 = 0;
String_t* V_13 = NULL;
XmlTypeMapping_t988104027 * V_14 = NULL;
XmlTypeMapping_t988104027 * V_15 = NULL;
XmlIncludeAttributeU5BU5D_t2660312372* V_16 = NULL;
XmlTypeMapping_t988104027 * V_17 = NULL;
int32_t V_18 = 0;
Type_t * V_19 = NULL;
Il2CppObject * V_20 = NULL;
int32_t V_21 = 0;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
int32_t G_B8_0 = 0;
Type_t * G_B18_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B20_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B19_0 = NULL;
String_t* G_B21_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B21_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B27_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B26_0 = NULL;
int32_t G_B28_0 = 0;
XmlTypeMapElementInfo_t3184170653 * G_B28_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B53_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B52_0 = NULL;
String_t* G_B54_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B54_1 = NULL;
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ListMap_t2001748316 * L_2 = (ListMap_t2001748316 *)il2cpp_codegen_object_new(ListMap_t2001748316_il2cpp_TypeInfo_var);
ListMap__ctor_m3996758043(L_2, /*hidden argument*/NULL);
V_1 = L_2;
bool L_3 = __this->get_allowPrivateTypes_6();
if (L_3)
{
goto IL_001f;
}
}
{
Type_t * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m1100022263(NULL /*static, unused*/, L_4, (bool)1, /*hidden argument*/NULL);
}
IL_001f:
{
XmlAttributes_t2892492364 * L_5 = ___atts;
if (L_5)
{
goto IL_002d;
}
}
{
XmlAttributes_t2892492364 * L_6 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m2188740779(L_6, /*hidden argument*/NULL);
___atts = L_6;
}
IL_002d:
{
TypeData_t3837952962 * L_7 = ___typeData;
NullCheck(L_7);
Type_t * L_8 = TypeData_get_ListItemType_m2794988341(L_7, /*hidden argument*/NULL);
V_2 = L_8;
Type_t * L_9 = V_0;
NullCheck(L_9);
bool L_10 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_9);
if (!L_10)
{
goto IL_0058;
}
}
{
Type_t * L_11 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_12 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_11, /*hidden argument*/NULL);
NullCheck(L_12);
int32_t L_13 = TypeData_get_SchemaType_m1693934194(L_12, /*hidden argument*/NULL);
if ((!(((uint32_t)L_13) == ((uint32_t)3))))
{
goto IL_0058;
}
}
{
Type_t * L_14 = V_2;
NullCheck(L_14);
bool L_15 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_14);
G_B8_0 = ((int32_t)(L_15));
goto IL_0059;
}
IL_0058:
{
G_B8_0 = 0;
}
IL_0059:
{
V_3 = (bool)G_B8_0;
XmlTypeMapElementInfoList_t3690603483 * L_16 = (XmlTypeMapElementInfoList_t3690603483 *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var);
XmlTypeMapElementInfoList__ctor_m823538428(L_16, /*hidden argument*/NULL);
V_4 = L_16;
XmlAttributes_t2892492364 * L_17 = ___atts;
NullCheck(L_17);
XmlArrayItemAttributes_t1938453418 * L_18 = XmlAttributes_get_XmlArrayItems_m3228873483(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
Il2CppObject * L_19 = VirtFuncInvoker0< Il2CppObject * >::Invoke(4 /* System.Collections.IEnumerator System.Collections.CollectionBase::GetEnumerator() */, L_18);
V_6 = L_19;
}
IL_006f:
try
{ // begin try (depth: 1)
{
goto IL_0234;
}
IL_0074:
{
Il2CppObject * L_20 = V_6;
NullCheck(L_20);
Il2CppObject * L_21 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_20);
V_5 = ((XmlArrayItemAttribute_t2429429989 *)CastclassClass(L_21, XmlArrayItemAttribute_t2429429989_il2cpp_TypeInfo_var));
XmlArrayItemAttribute_t2429429989 * L_22 = V_5;
NullCheck(L_22);
String_t* L_23 = XmlArrayItemAttribute_get_Namespace_m4186821759(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00a6;
}
}
IL_008e:
{
XmlArrayItemAttribute_t2429429989 * L_24 = V_5;
NullCheck(L_24);
int32_t L_25 = XmlArrayItemAttribute_get_Form_m1937043213(L_24, /*hidden argument*/NULL);
if ((!(((uint32_t)L_25) == ((uint32_t)2))))
{
goto IL_00a6;
}
}
IL_009b:
{
InvalidOperationException_t2420574324 * L_26 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_26, _stringLiteral1836984187, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26);
}
IL_00a6:
{
XmlArrayItemAttribute_t2429429989 * L_27 = V_5;
NullCheck(L_27);
int32_t L_28 = XmlArrayItemAttribute_get_NestingLevel_m3108101463(L_27, /*hidden argument*/NULL);
int32_t L_29 = ___nestingLevel;
if ((((int32_t)L_28) == ((int32_t)L_29)))
{
goto IL_00b9;
}
}
IL_00b4:
{
goto IL_0234;
}
IL_00b9:
{
XmlArrayItemAttribute_t2429429989 * L_30 = V_5;
NullCheck(L_30);
Type_t * L_31 = XmlArrayItemAttribute_get_Type_m1254504111(L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00d1;
}
}
IL_00c5:
{
XmlArrayItemAttribute_t2429429989 * L_32 = V_5;
NullCheck(L_32);
Type_t * L_33 = XmlArrayItemAttribute_get_Type_m1254504111(L_32, /*hidden argument*/NULL);
G_B18_0 = L_33;
goto IL_00d2;
}
IL_00d1:
{
Type_t * L_34 = V_2;
G_B18_0 = L_34;
}
IL_00d2:
{
V_7 = G_B18_0;
Type_t * L_35 = V_7;
XmlArrayItemAttribute_t2429429989 * L_36 = V_5;
NullCheck(L_36);
String_t* L_37 = XmlArrayItemAttribute_get_DataType_m2251003074(L_36, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_38 = TypeTranslator_GetTypeData_m4275513353(NULL /*static, unused*/, L_35, L_37, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_39 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_39, (XmlTypeMapMember_t757519331 *)NULL, L_38, /*hidden argument*/NULL);
V_8 = L_39;
XmlTypeMapElementInfo_t3184170653 * L_40 = V_8;
XmlArrayItemAttribute_t2429429989 * L_41 = V_5;
NullCheck(L_41);
String_t* L_42 = XmlArrayItemAttribute_get_Namespace_m4186821759(L_41, /*hidden argument*/NULL);
G_B19_0 = L_40;
if (!L_42)
{
G_B20_0 = L_40;
goto IL_0104;
}
}
IL_00f8:
{
XmlArrayItemAttribute_t2429429989 * L_43 = V_5;
NullCheck(L_43);
String_t* L_44 = XmlArrayItemAttribute_get_Namespace_m4186821759(L_43, /*hidden argument*/NULL);
G_B21_0 = L_44;
G_B21_1 = G_B19_0;
goto IL_0105;
}
IL_0104:
{
String_t* L_45 = ___defaultNamespace;
G_B21_0 = L_45;
G_B21_1 = G_B20_0;
}
IL_0105:
{
NullCheck(G_B21_1);
XmlTypeMapElementInfo_set_Namespace_m2703770860(G_B21_1, G_B21_0, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_46 = V_8;
NullCheck(L_46);
String_t* L_47 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_46, /*hidden argument*/NULL);
if (L_47)
{
goto IL_0122;
}
}
IL_0116:
{
XmlTypeMapElementInfo_t3184170653 * L_48 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_49 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
NullCheck(L_48);
XmlTypeMapElementInfo_set_Namespace_m2703770860(L_48, L_49, /*hidden argument*/NULL);
}
IL_0122:
{
XmlTypeMapElementInfo_t3184170653 * L_50 = V_8;
XmlArrayItemAttribute_t2429429989 * L_51 = V_5;
NullCheck(L_51);
int32_t L_52 = XmlArrayItemAttribute_get_Form_m1937043213(L_51, /*hidden argument*/NULL);
NullCheck(L_50);
XmlTypeMapElementInfo_set_Form_m269726242(L_50, L_52, /*hidden argument*/NULL);
XmlArrayItemAttribute_t2429429989 * L_53 = V_5;
NullCheck(L_53);
int32_t L_54 = XmlArrayItemAttribute_get_Form_m1937043213(L_53, /*hidden argument*/NULL);
if ((!(((uint32_t)L_54) == ((uint32_t)2))))
{
goto IL_0149;
}
}
IL_013d:
{
XmlTypeMapElementInfo_t3184170653 * L_55 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_56 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
NullCheck(L_55);
XmlTypeMapElementInfo_set_Namespace_m2703770860(L_55, L_56, /*hidden argument*/NULL);
}
IL_0149:
{
XmlTypeMapElementInfo_t3184170653 * L_57 = V_8;
XmlArrayItemAttribute_t2429429989 * L_58 = V_5;
NullCheck(L_58);
bool L_59 = XmlArrayItemAttribute_get_IsNullable_m3406344654(L_58, /*hidden argument*/NULL);
G_B26_0 = L_57;
if (!L_59)
{
G_B27_0 = L_57;
goto IL_0166;
}
}
IL_0157:
{
XmlTypeMapElementInfo_t3184170653 * L_60 = V_8;
NullCheck(L_60);
TypeData_t3837952962 * L_61 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_60, /*hidden argument*/NULL);
bool L_62 = XmlReflectionImporter_CanBeNull_m8119077(__this, L_61, /*hidden argument*/NULL);
G_B28_0 = ((int32_t)(L_62));
G_B28_1 = G_B26_0;
goto IL_0167;
}
IL_0166:
{
G_B28_0 = 0;
G_B28_1 = G_B27_0;
}
IL_0167:
{
NullCheck(G_B28_1);
XmlTypeMapElementInfo_set_IsNullable_m75400169(G_B28_1, (bool)G_B28_0, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_63 = V_8;
XmlArrayItemAttribute_t2429429989 * L_64 = V_5;
NullCheck(L_64);
int32_t L_65 = XmlArrayItemAttribute_get_NestingLevel_m3108101463(L_64, /*hidden argument*/NULL);
NullCheck(L_63);
XmlTypeMapElementInfo_set_NestingLevel_m220994802(L_63, L_65, /*hidden argument*/NULL);
bool L_66 = V_3;
if (!L_66)
{
goto IL_01a2;
}
}
IL_0180:
{
XmlTypeMapElementInfo_t3184170653 * L_67 = V_8;
Type_t * L_68 = V_7;
XmlTypeMapElementInfo_t3184170653 * L_69 = V_8;
NullCheck(L_69);
String_t* L_70 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_69, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_71 = ___atts;
int32_t L_72 = ___nestingLevel;
XmlTypeMapping_t988104027 * L_73 = XmlReflectionImporter_ImportListMapping_m2090871817(__this, L_68, (XmlRootAttribute_t2483700417 *)NULL, L_70, L_71, ((int32_t)((int32_t)L_72+(int32_t)1)), /*hidden argument*/NULL);
NullCheck(L_67);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_67, L_73, /*hidden argument*/NULL);
goto IL_01ca;
}
IL_01a2:
{
XmlTypeMapElementInfo_t3184170653 * L_74 = V_8;
NullCheck(L_74);
TypeData_t3837952962 * L_75 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_74, /*hidden argument*/NULL);
NullCheck(L_75);
bool L_76 = TypeData_get_IsComplexType_m115025350(L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01ca;
}
}
IL_01b3:
{
XmlTypeMapElementInfo_t3184170653 * L_77 = V_8;
Type_t * L_78 = V_7;
XmlTypeMapElementInfo_t3184170653 * L_79 = V_8;
NullCheck(L_79);
String_t* L_80 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_79, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_81 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_78, (XmlRootAttribute_t2483700417 *)NULL, L_80, /*hidden argument*/NULL);
NullCheck(L_77);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_77, L_81, /*hidden argument*/NULL);
}
IL_01ca:
{
XmlArrayItemAttribute_t2429429989 * L_82 = V_5;
NullCheck(L_82);
String_t* L_83 = XmlArrayItemAttribute_get_ElementName_m2554306315(L_82, /*hidden argument*/NULL);
NullCheck(L_83);
int32_t L_84 = String_get_Length_m2979997331(L_83, /*hidden argument*/NULL);
if (!L_84)
{
goto IL_01f3;
}
}
IL_01db:
{
XmlTypeMapElementInfo_t3184170653 * L_85 = V_8;
XmlArrayItemAttribute_t2429429989 * L_86 = V_5;
NullCheck(L_86);
String_t* L_87 = XmlArrayItemAttribute_get_ElementName_m2554306315(L_86, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_88 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_87, /*hidden argument*/NULL);
NullCheck(L_85);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_85, L_88, /*hidden argument*/NULL);
goto IL_022a;
}
IL_01f3:
{
XmlTypeMapElementInfo_t3184170653 * L_89 = V_8;
NullCheck(L_89);
XmlTypeMapping_t988104027 * L_90 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_89, /*hidden argument*/NULL);
if (!L_90)
{
goto IL_0217;
}
}
IL_01ff:
{
XmlTypeMapElementInfo_t3184170653 * L_91 = V_8;
XmlTypeMapElementInfo_t3184170653 * L_92 = V_8;
NullCheck(L_92);
XmlTypeMapping_t988104027 * L_93 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_92, /*hidden argument*/NULL);
NullCheck(L_93);
String_t* L_94 = XmlMapping_get_ElementName_m2753779381(L_93, /*hidden argument*/NULL);
NullCheck(L_91);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_91, L_94, /*hidden argument*/NULL);
goto IL_022a;
}
IL_0217:
{
XmlTypeMapElementInfo_t3184170653 * L_95 = V_8;
Type_t * L_96 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_97 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_96, /*hidden argument*/NULL);
NullCheck(L_97);
String_t* L_98 = TypeData_get_XmlType_m3918246226(L_97, /*hidden argument*/NULL);
NullCheck(L_95);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_95, L_98, /*hidden argument*/NULL);
}
IL_022a:
{
XmlTypeMapElementInfoList_t3690603483 * L_99 = V_4;
XmlTypeMapElementInfo_t3184170653 * L_100 = V_8;
NullCheck(L_99);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_99, L_100);
}
IL_0234:
{
Il2CppObject * L_101 = V_6;
NullCheck(L_101);
bool L_102 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_101);
if (L_102)
{
goto IL_0074;
}
}
IL_0240:
{
IL2CPP_LEAVE(0x25B, FINALLY_0245);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0245;
}
FINALLY_0245:
{ // begin finally (depth: 1)
{
Il2CppObject * L_103 = V_6;
V_20 = ((Il2CppObject *)IsInst(L_103, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_104 = V_20;
if (L_104)
{
goto IL_0253;
}
}
IL_0252:
{
IL2CPP_END_FINALLY(581)
}
IL_0253:
{
Il2CppObject * L_105 = V_20;
NullCheck(L_105);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_105);
IL2CPP_END_FINALLY(581)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(581)
{
IL2CPP_JUMP_TBL(0x25B, IL_025b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_025b:
{
XmlTypeMapElementInfoList_t3690603483 * L_106 = V_4;
NullCheck(L_106);
int32_t L_107 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_106);
if (L_107)
{
goto IL_0323;
}
}
{
Type_t * L_108 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_109 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_108, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_110 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_110, (XmlTypeMapMember_t757519331 *)NULL, L_109, /*hidden argument*/NULL);
V_9 = L_110;
bool L_111 = V_3;
if (!L_111)
{
goto IL_0296;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_112 = V_9;
Type_t * L_113 = V_2;
String_t* L_114 = ___defaultNamespace;
XmlAttributes_t2892492364 * L_115 = ___atts;
int32_t L_116 = ___nestingLevel;
XmlTypeMapping_t988104027 * L_117 = XmlReflectionImporter_ImportListMapping_m2090871817(__this, L_113, (XmlRootAttribute_t2483700417 *)NULL, L_114, L_115, ((int32_t)((int32_t)L_116+(int32_t)1)), /*hidden argument*/NULL);
NullCheck(L_112);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_112, L_117, /*hidden argument*/NULL);
goto IL_02b7;
}
IL_0296:
{
XmlTypeMapElementInfo_t3184170653 * L_118 = V_9;
NullCheck(L_118);
TypeData_t3837952962 * L_119 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_118, /*hidden argument*/NULL);
NullCheck(L_119);
bool L_120 = TypeData_get_IsComplexType_m115025350(L_119, /*hidden argument*/NULL);
if (!L_120)
{
goto IL_02b7;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_121 = V_9;
Type_t * L_122 = V_2;
String_t* L_123 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_124 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_122, (XmlRootAttribute_t2483700417 *)NULL, L_123, /*hidden argument*/NULL);
NullCheck(L_121);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_121, L_124, /*hidden argument*/NULL);
}
IL_02b7:
{
XmlTypeMapElementInfo_t3184170653 * L_125 = V_9;
NullCheck(L_125);
XmlTypeMapping_t988104027 * L_126 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_125, /*hidden argument*/NULL);
if (!L_126)
{
goto IL_02db;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_127 = V_9;
XmlTypeMapElementInfo_t3184170653 * L_128 = V_9;
NullCheck(L_128);
XmlTypeMapping_t988104027 * L_129 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_128, /*hidden argument*/NULL);
NullCheck(L_129);
String_t* L_130 = XmlTypeMapping_get_XmlType_m1769290969(L_129, /*hidden argument*/NULL);
NullCheck(L_127);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_127, L_130, /*hidden argument*/NULL);
goto IL_02ed;
}
IL_02db:
{
XmlTypeMapElementInfo_t3184170653 * L_131 = V_9;
Type_t * L_132 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_133 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_132, /*hidden argument*/NULL);
NullCheck(L_133);
String_t* L_134 = TypeData_get_XmlType_m3918246226(L_133, /*hidden argument*/NULL);
NullCheck(L_131);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_131, L_134, /*hidden argument*/NULL);
}
IL_02ed:
{
XmlTypeMapElementInfo_t3184170653 * L_135 = V_9;
String_t* L_136 = ___defaultNamespace;
G_B52_0 = L_135;
if (!L_136)
{
G_B53_0 = L_135;
goto IL_02fb;
}
}
{
String_t* L_137 = ___defaultNamespace;
G_B54_0 = L_137;
G_B54_1 = G_B52_0;
goto IL_0300;
}
IL_02fb:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_138 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
G_B54_0 = L_138;
G_B54_1 = G_B53_0;
}
IL_0300:
{
NullCheck(G_B54_1);
XmlTypeMapElementInfo_set_Namespace_m2703770860(G_B54_1, G_B54_0, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_139 = V_9;
XmlTypeMapElementInfo_t3184170653 * L_140 = V_9;
NullCheck(L_140);
TypeData_t3837952962 * L_141 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_140, /*hidden argument*/NULL);
bool L_142 = XmlReflectionImporter_CanBeNull_m8119077(__this, L_141, /*hidden argument*/NULL);
NullCheck(L_139);
XmlTypeMapElementInfo_set_IsNullable_m75400169(L_139, L_142, /*hidden argument*/NULL);
XmlTypeMapElementInfoList_t3690603483 * L_143 = V_4;
XmlTypeMapElementInfo_t3184170653 * L_144 = V_9;
NullCheck(L_143);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_143, L_144);
}
IL_0323:
{
ListMap_t2001748316 * L_145 = V_1;
XmlTypeMapElementInfoList_t3690603483 * L_146 = V_4;
NullCheck(L_145);
ListMap_set_ItemInfo_m1163337726(L_145, L_146, /*hidden argument*/NULL);
XmlTypeMapElementInfoList_t3690603483 * L_147 = V_4;
NullCheck(L_147);
int32_t L_148 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_147);
if ((((int32_t)L_148) <= ((int32_t)1)))
{
goto IL_0361;
}
}
{
int32_t L_149 = __this->get_arrayChoiceCount_4();
int32_t L_150 = L_149;
V_21 = L_150;
__this->set_arrayChoiceCount_4(((int32_t)((int32_t)L_150+(int32_t)1)));
int32_t L_151 = V_21;
int32_t L_152 = L_151;
Il2CppObject * L_153 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_152);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_154 = String_Concat_m389863537(NULL /*static, unused*/, _stringLiteral2296313777, L_153, /*hidden argument*/NULL);
V_10 = L_154;
goto IL_03a2;
}
IL_0361:
{
XmlTypeMapElementInfoList_t3690603483 * L_155 = V_4;
NullCheck(L_155);
Il2CppObject * L_156 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_155, 0);
V_11 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_156, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_157 = V_11;
NullCheck(L_157);
XmlTypeMapping_t988104027 * L_158 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_157, /*hidden argument*/NULL);
if (!L_158)
{
goto IL_0394;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_159 = V_11;
NullCheck(L_159);
XmlTypeMapping_t988104027 * L_160 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_159, /*hidden argument*/NULL);
NullCheck(L_160);
String_t* L_161 = XmlTypeMapping_get_XmlType_m1769290969(L_160, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
String_t* L_162 = TypeTranslator_GetArrayName_m359787500(NULL /*static, unused*/, L_161, /*hidden argument*/NULL);
V_10 = L_162;
goto IL_03a2;
}
IL_0394:
{
XmlTypeMapElementInfo_t3184170653 * L_163 = V_11;
NullCheck(L_163);
String_t* L_164 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_163, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
String_t* L_165 = TypeTranslator_GetArrayName_m359787500(NULL /*static, unused*/, L_164, /*hidden argument*/NULL);
V_10 = L_165;
}
IL_03a2:
{
V_12 = 1;
String_t* L_166 = V_10;
V_13 = L_166;
}
IL_03a9:
{
ReflectionHelper_t3225254263 * L_167 = __this->get_helper_3();
String_t* L_168 = V_13;
String_t* L_169 = ___defaultNamespace;
NullCheck(L_167);
XmlTypeMapping_t988104027 * L_170 = ReflectionHelper_GetRegisteredSchemaType_m1200109303(L_167, L_168, L_169, /*hidden argument*/NULL);
V_14 = L_170;
XmlTypeMapping_t988104027 * L_171 = V_14;
if (L_171)
{
goto IL_03c8;
}
}
{
V_12 = (-1);
goto IL_0409;
}
IL_03c8:
{
ListMap_t2001748316 * L_172 = V_1;
XmlTypeMapping_t988104027 * L_173 = V_14;
NullCheck(L_173);
ObjectMap_t669501211 * L_174 = XmlMapping_get_ObjectMap_m3032707184(L_173, /*hidden argument*/NULL);
NullCheck(L_172);
bool L_175 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Xml.Serialization.ListMap::Equals(System.Object) */, L_172, L_174);
if (!L_175)
{
goto IL_03f4;
}
}
{
TypeData_t3837952962 * L_176 = ___typeData;
NullCheck(L_176);
Type_t * L_177 = TypeData_get_Type_m2191724548(L_176, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_178 = V_14;
NullCheck(L_178);
TypeData_t3837952962 * L_179 = XmlTypeMapping_get_TypeData_m3898113510(L_178, /*hidden argument*/NULL);
NullCheck(L_179);
Type_t * L_180 = TypeData_get_Type_m2191724548(L_179, /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_177) == ((Il2CppObject*)(Type_t *)L_180))))
{
goto IL_03f4;
}
}
{
XmlTypeMapping_t988104027 * L_181 = V_14;
return L_181;
}
IL_03f4:
{
String_t* L_182 = V_10;
int32_t L_183 = V_12;
int32_t L_184 = L_183;
V_12 = ((int32_t)((int32_t)L_184+(int32_t)1));
int32_t L_185 = L_184;
Il2CppObject * L_186 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_185);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_187 = String_Concat_m389863537(NULL /*static, unused*/, L_182, L_186, /*hidden argument*/NULL);
V_13 = L_187;
}
IL_0409:
{
int32_t L_188 = V_12;
if ((!(((uint32_t)L_188) == ((uint32_t)(-1)))))
{
goto IL_03a9;
}
}
{
TypeData_t3837952962 * L_189 = ___typeData;
XmlRootAttribute_t2483700417 * L_190 = ___root;
String_t* L_191 = V_13;
String_t* L_192 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_193 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_189, L_190, L_191, L_192, /*hidden argument*/NULL);
V_15 = L_193;
XmlTypeMapping_t988104027 * L_194 = V_15;
ListMap_t2001748316 * L_195 = V_1;
NullCheck(L_194);
XmlMapping_set_ObjectMap_m639554027(L_194, L_195, /*hidden argument*/NULL);
Type_t * L_196 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_197 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlIncludeAttribute_t3812448905_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_196);
ObjectU5BU5D_t11523773* L_198 = VirtFuncInvoker2< ObjectU5BU5D_t11523773*, Type_t *, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_196, L_197, (bool)0);
V_16 = ((XmlIncludeAttributeU5BU5D_t2660312372*)Castclass(L_198, XmlIncludeAttributeU5BU5D_t2660312372_il2cpp_TypeInfo_var));
Type_t * L_199 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_200 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_199, /*hidden argument*/NULL);
V_17 = L_200;
V_18 = 0;
goto IL_0481;
}
IL_0458:
{
XmlIncludeAttributeU5BU5D_t2660312372* L_201 = V_16;
int32_t L_202 = V_18;
NullCheck(L_201);
IL2CPP_ARRAY_BOUNDS_CHECK(L_201, L_202);
int32_t L_203 = L_202;
NullCheck(((L_201)->GetAt(static_cast<il2cpp_array_size_t>(L_203))));
Type_t * L_204 = XmlIncludeAttribute_get_Type_m2550346579(((L_201)->GetAt(static_cast<il2cpp_array_size_t>(L_203))), /*hidden argument*/NULL);
V_19 = L_204;
XmlTypeMapping_t988104027 * L_205 = V_17;
NullCheck(L_205);
ArrayList_t2121638921 * L_206 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_205, /*hidden argument*/NULL);
Type_t * L_207 = V_19;
String_t* L_208 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_209 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_207, (XmlRootAttribute_t2483700417 *)NULL, L_208, /*hidden argument*/NULL);
NullCheck(L_206);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_206, L_209);
int32_t L_210 = V_18;
V_18 = ((int32_t)((int32_t)L_210+(int32_t)1));
}
IL_0481:
{
int32_t L_211 = V_18;
XmlIncludeAttributeU5BU5D_t2660312372* L_212 = V_16;
NullCheck(L_212);
if ((((int32_t)L_211) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_212)->max_length)))))))
{
goto IL_0458;
}
}
{
ReflectionHelper_t3225254263 * L_213 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_214 = V_15;
String_t* L_215 = V_13;
String_t* L_216 = ___defaultNamespace;
NullCheck(L_213);
ReflectionHelper_RegisterSchemaType_m2450491211(L_213, L_214, L_215, L_216, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_217 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_218 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_217, /*hidden argument*/NULL);
NullCheck(L_218);
ArrayList_t2121638921 * L_219 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_218, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_220 = V_15;
NullCheck(L_219);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_219, L_220);
XmlTypeMapping_t988104027 * L_221 = V_15;
return L_221;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlNodeMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportXmlNodeMapping_m3126312272_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportXmlNodeMapping_m3126312272 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportXmlNodeMapping_m3126312272_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
XmlTypeMapping_t988104027 * V_2 = NULL;
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectionHelper_t3225254263 * L_2 = __this->get_helper_3();
Type_t * L_3 = V_0;
TypeData_t3837952962 * L_4 = ___typeData;
XmlRootAttribute_t2483700417 * L_5 = ___root;
String_t* L_6 = ___defaultNamespace;
String_t* L_7 = XmlReflectionImporter_GetTypeNamespace_m2770405118(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_2);
XmlTypeMapping_t988104027 * L_8 = ReflectionHelper_GetRegisteredClrType_m3155313564(L_2, L_3, L_7, /*hidden argument*/NULL);
V_1 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
if (!L_9)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_10 = V_1;
return L_10;
}
IL_0025:
{
TypeData_t3837952962 * L_11 = ___typeData;
XmlRootAttribute_t2483700417 * L_12 = ___root;
String_t* L_13 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_14 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_11, L_12, (String_t*)NULL, L_13, /*hidden argument*/NULL);
V_1 = L_14;
ReflectionHelper_t3225254263 * L_15 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_16 = V_1;
Type_t * L_17 = V_0;
XmlTypeMapping_t988104027 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_18, /*hidden argument*/NULL);
NullCheck(L_15);
ReflectionHelper_RegisterClrType_m131744798(L_15, L_16, L_17, L_19, /*hidden argument*/NULL);
Type_t * L_20 = V_0;
NullCheck(L_20);
Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_20);
if (!L_21)
{
goto IL_0081;
}
}
{
Type_t * L_22 = V_0;
NullCheck(L_22);
Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_22);
XmlRootAttribute_t2483700417 * L_24 = ___root;
String_t* L_25 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_26 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_23, L_24, L_25, /*hidden argument*/NULL);
V_2 = L_26;
Type_t * L_27 = V_0;
NullCheck(L_27);
Type_t * L_28 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_27);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))
{
goto IL_0079;
}
}
{
XmlTypeMapping_t988104027 * L_30 = V_1;
XmlTypeMapping_t988104027 * L_31 = V_2;
NullCheck(L_30);
XmlTypeMapping_set_BaseMap_m1571702341(L_30, L_31, /*hidden argument*/NULL);
}
IL_0079:
{
XmlTypeMapping_t988104027 * L_32 = V_2;
XmlTypeMapping_t988104027 * L_33 = V_1;
XmlReflectionImporter_RegisterDerivedMap_m3264893851(__this, L_32, L_33, /*hidden argument*/NULL);
}
IL_0081:
{
XmlTypeMapping_t988104027 * L_34 = V_1;
return L_34;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportPrimitiveMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportPrimitiveMapping_m764540222 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
Type_t * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectionHelper_t3225254263 * L_2 = __this->get_helper_3();
Type_t * L_3 = V_0;
TypeData_t3837952962 * L_4 = ___typeData;
XmlRootAttribute_t2483700417 * L_5 = ___root;
String_t* L_6 = ___defaultNamespace;
String_t* L_7 = XmlReflectionImporter_GetTypeNamespace_m2770405118(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_2);
XmlTypeMapping_t988104027 * L_8 = ReflectionHelper_GetRegisteredClrType_m3155313564(L_2, L_3, L_7, /*hidden argument*/NULL);
V_1 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
if (!L_9)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_10 = V_1;
return L_10;
}
IL_0025:
{
TypeData_t3837952962 * L_11 = ___typeData;
XmlRootAttribute_t2483700417 * L_12 = ___root;
String_t* L_13 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_14 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_11, L_12, (String_t*)NULL, L_13, /*hidden argument*/NULL);
V_1 = L_14;
ReflectionHelper_t3225254263 * L_15 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_16 = V_1;
Type_t * L_17 = V_0;
XmlTypeMapping_t988104027 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_18, /*hidden argument*/NULL);
NullCheck(L_15);
ReflectionHelper_RegisterClrType_m131744798(L_15, L_16, L_17, L_19, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_20 = V_1;
return L_20;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportEnumMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern const Il2CppType* XmlIgnoreAttribute_t2523800977_0_0_0_var;
extern const Il2CppType* XmlEnumAttribute_t1057710466_0_0_0_var;
extern const Il2CppType* FlagsAttribute_t251050890_0_0_0_var;
extern const Il2CppType* EnumMapMember_t1245278965_0_0_0_var;
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var;
extern TypeInfo* IConvertible_t4194222097_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* EnumMapMember_t1245278965_il2cpp_TypeInfo_var;
extern TypeInfo* EnumMapMemberU5BU5D_t3911606680_il2cpp_TypeInfo_var;
extern TypeInfo* EnumMap_t228974105_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportEnumMapping_m3873708482_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportEnumMapping_m3873708482 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportEnumMapping_m3873708482_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
StringU5BU5D_t2956870243* V_2 = NULL;
ArrayList_t2121638921 * V_3 = NULL;
String_t* V_4 = NULL;
StringU5BU5D_t2956870243* V_5 = NULL;
int32_t V_6 = 0;
FieldInfo_t * V_7 = NULL;
String_t* V_8 = NULL;
ObjectU5BU5D_t11523773* V_9 = NULL;
int64_t V_10 = 0;
bool V_11 = false;
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectionHelper_t3225254263 * L_2 = __this->get_helper_3();
Type_t * L_3 = V_0;
TypeData_t3837952962 * L_4 = ___typeData;
XmlRootAttribute_t2483700417 * L_5 = ___root;
String_t* L_6 = ___defaultNamespace;
String_t* L_7 = XmlReflectionImporter_GetTypeNamespace_m2770405118(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_2);
XmlTypeMapping_t988104027 * L_8 = ReflectionHelper_GetRegisteredClrType_m3155313564(L_2, L_3, L_7, /*hidden argument*/NULL);
V_1 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
if (!L_9)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_10 = V_1;
return L_10;
}
IL_0025:
{
bool L_11 = __this->get_allowPrivateTypes_6();
if (L_11)
{
goto IL_0037;
}
}
{
Type_t * L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m1100022263(NULL /*static, unused*/, L_12, (bool)0, /*hidden argument*/NULL);
}
IL_0037:
{
TypeData_t3837952962 * L_13 = ___typeData;
XmlRootAttribute_t2483700417 * L_14 = ___root;
String_t* L_15 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_16 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_13, L_14, (String_t*)NULL, L_15, /*hidden argument*/NULL);
V_1 = L_16;
XmlTypeMapping_t988104027 * L_17 = V_1;
NullCheck(L_17);
XmlTypeMapping_set_IsNullable_m1376214419(L_17, (bool)0, /*hidden argument*/NULL);
ReflectionHelper_t3225254263 * L_18 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_19 = V_1;
Type_t * L_20 = V_0;
XmlTypeMapping_t988104027 * L_21 = V_1;
NullCheck(L_21);
String_t* L_22 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_21, /*hidden argument*/NULL);
NullCheck(L_18);
ReflectionHelper_RegisterClrType_m131744798(L_18, L_19, L_20, L_22, /*hidden argument*/NULL);
Type_t * L_23 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
StringU5BU5D_t2956870243* L_24 = Enum_GetNames_m395897976(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
V_2 = L_24;
ArrayList_t2121638921 * L_25 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_25, /*hidden argument*/NULL);
V_3 = L_25;
StringU5BU5D_t2956870243* L_26 = V_2;
V_5 = L_26;
V_6 = 0;
goto IL_010e;
}
IL_0074:
{
StringU5BU5D_t2956870243* L_27 = V_5;
int32_t L_28 = V_6;
NullCheck(L_27);
IL2CPP_ARRAY_BOUNDS_CHECK(L_27, L_28);
int32_t L_29 = L_28;
V_4 = ((L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29)));
Type_t * L_30 = V_0;
String_t* L_31 = V_4;
NullCheck(L_30);
FieldInfo_t * L_32 = VirtFuncInvoker1< FieldInfo_t *, String_t* >::Invoke(48 /* System.Reflection.FieldInfo System.Type::GetField(System.String) */, L_30, L_31);
V_7 = L_32;
V_8 = (String_t*)NULL;
FieldInfo_t * L_33 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlIgnoreAttribute_t2523800977_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_33);
bool L_35 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_33, L_34, (bool)0);
if (!L_35)
{
goto IL_00a4;
}
}
{
goto IL_0108;
}
IL_00a4:
{
FieldInfo_t * L_36 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_37 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlEnumAttribute_t1057710466_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_36);
ObjectU5BU5D_t11523773* L_38 = VirtFuncInvoker2< ObjectU5BU5D_t11523773*, Type_t *, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_36, L_37, (bool)0);
V_9 = L_38;
ObjectU5BU5D_t11523773* L_39 = V_9;
NullCheck(L_39);
if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_39)->max_length))))) <= ((int32_t)0)))
{
goto IL_00d2;
}
}
{
ObjectU5BU5D_t11523773* L_40 = V_9;
NullCheck(L_40);
IL2CPP_ARRAY_BOUNDS_CHECK(L_40, 0);
int32_t L_41 = 0;
NullCheck(((XmlEnumAttribute_t1057710466 *)CastclassClass(((L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41))), XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var)));
String_t* L_42 = XmlEnumAttribute_get_Name_m3316519660(((XmlEnumAttribute_t1057710466 *)CastclassClass(((L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41))), XmlEnumAttribute_t1057710466_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_8 = L_42;
}
IL_00d2:
{
String_t* L_43 = V_8;
if (L_43)
{
goto IL_00dd;
}
}
{
String_t* L_44 = V_4;
V_8 = L_44;
}
IL_00dd:
{
FieldInfo_t * L_45 = V_7;
NullCheck(L_45);
Il2CppObject * L_46 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_45, NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_47 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
NullCheck(((Il2CppObject *)Castclass(L_46, IConvertible_t4194222097_il2cpp_TypeInfo_var)));
int64_t L_48 = InterfaceFuncInvoker1< int64_t, Il2CppObject * >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t4194222097_il2cpp_TypeInfo_var, ((Il2CppObject *)Castclass(L_46, IConvertible_t4194222097_il2cpp_TypeInfo_var)), L_47);
V_10 = L_48;
ArrayList_t2121638921 * L_49 = V_3;
String_t* L_50 = V_8;
String_t* L_51 = V_4;
int64_t L_52 = V_10;
EnumMapMember_t1245278965 * L_53 = (EnumMapMember_t1245278965 *)il2cpp_codegen_object_new(EnumMapMember_t1245278965_il2cpp_TypeInfo_var);
EnumMapMember__ctor_m2758750642(L_53, L_50, L_51, L_52, /*hidden argument*/NULL);
NullCheck(L_49);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_49, L_53);
}
IL_0108:
{
int32_t L_54 = V_6;
V_6 = ((int32_t)((int32_t)L_54+(int32_t)1));
}
IL_010e:
{
int32_t L_55 = V_6;
StringU5BU5D_t2956870243* L_56 = V_5;
NullCheck(L_56);
if ((((int32_t)L_55) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_56)->max_length)))))))
{
goto IL_0074;
}
}
{
Type_t * L_57 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_58 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(FlagsAttribute_t251050890_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_57);
bool L_59 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_57, L_58, (bool)0);
V_11 = L_59;
XmlTypeMapping_t988104027 * L_60 = V_1;
ArrayList_t2121638921 * L_61 = V_3;
Type_t * L_62 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(EnumMapMember_t1245278965_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_61);
Il2CppArray * L_63 = VirtFuncInvoker1< Il2CppArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_61, L_62);
bool L_64 = V_11;
EnumMap_t228974105 * L_65 = (EnumMap_t228974105 *)il2cpp_codegen_object_new(EnumMap_t228974105_il2cpp_TypeInfo_var);
EnumMap__ctor_m1389877646(L_65, ((EnumMapMemberU5BU5D_t3911606680*)Castclass(L_63, EnumMapMemberU5BU5D_t3911606680_il2cpp_TypeInfo_var)), L_64, /*hidden argument*/NULL);
NullCheck(L_60);
XmlMapping_set_ObjectMap_m639554027(L_60, L_65, /*hidden argument*/NULL);
Type_t * L_66 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_67 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_66, /*hidden argument*/NULL);
NullCheck(L_67);
ArrayList_t2121638921 * L_68 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_67, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_69 = V_1;
NullCheck(L_68);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_68, L_69);
XmlTypeMapping_t988104027 * L_70 = V_1;
return L_70;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportXmlSerializableMapping(System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlRootAttribute,System.String)
extern TypeInfo* ReflectionHelper_t3225254263_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportXmlSerializableMapping_m2671709965_MetadataUsageId;
extern "C" XmlTypeMapping_t988104027 * XmlReflectionImporter_ImportXmlSerializableMapping_m2671709965 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportXmlSerializableMapping_m2671709965_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ReflectionHelper_t3225254263 * L_2 = __this->get_helper_3();
Type_t * L_3 = V_0;
TypeData_t3837952962 * L_4 = ___typeData;
XmlRootAttribute_t2483700417 * L_5 = ___root;
String_t* L_6 = ___defaultNamespace;
String_t* L_7 = XmlReflectionImporter_GetTypeNamespace_m2770405118(__this, L_4, L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_2);
XmlTypeMapping_t988104027 * L_8 = ReflectionHelper_GetRegisteredClrType_m3155313564(L_2, L_3, L_7, /*hidden argument*/NULL);
V_1 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
if (!L_9)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_10 = V_1;
return L_10;
}
IL_0025:
{
bool L_11 = __this->get_allowPrivateTypes_6();
if (L_11)
{
goto IL_0037;
}
}
{
Type_t * L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ReflectionHelper_t3225254263_il2cpp_TypeInfo_var);
ReflectionHelper_CheckSerializableType_m1100022263(NULL /*static, unused*/, L_12, (bool)0, /*hidden argument*/NULL);
}
IL_0037:
{
TypeData_t3837952962 * L_13 = ___typeData;
XmlRootAttribute_t2483700417 * L_14 = ___root;
String_t* L_15 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_16 = XmlReflectionImporter_CreateTypeMapping_m2215889550(__this, L_13, L_14, (String_t*)NULL, L_15, /*hidden argument*/NULL);
V_1 = L_16;
ReflectionHelper_t3225254263 * L_17 = __this->get_helper_3();
XmlTypeMapping_t988104027 * L_18 = V_1;
Type_t * L_19 = V_0;
XmlTypeMapping_t988104027 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
ReflectionHelper_RegisterClrType_m131744798(L_17, L_18, L_19, L_21, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_22 = V_1;
return L_22;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportIncludedTypes(System.Type,System.String)
extern const Il2CppType* XmlIncludeAttribute_t3812448905_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlIncludeAttributeU5BU5D_t2660312372_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_ImportIncludedTypes_m4244823514_MetadataUsageId;
extern "C" void XmlReflectionImporter_ImportIncludedTypes_m4244823514 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportIncludedTypes_m4244823514_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlIncludeAttributeU5BU5D_t2660312372* V_0 = NULL;
int32_t V_1 = 0;
Type_t * V_2 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlIncludeAttribute_t3812448905_0_0_0_var), /*hidden argument*/NULL);
NullCheck(L_0);
ObjectU5BU5D_t11523773* L_2 = VirtFuncInvoker2< ObjectU5BU5D_t11523773*, Type_t *, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, (bool)0);
V_0 = ((XmlIncludeAttributeU5BU5D_t2660312372*)Castclass(L_2, XmlIncludeAttributeU5BU5D_t2660312372_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0035;
}
IL_001e:
{
XmlIncludeAttributeU5BU5D_t2660312372* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, L_4);
int32_t L_5 = L_4;
NullCheck(((L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5))));
Type_t * L_6 = XmlIncludeAttribute_get_Type_m2550346579(((L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5))), /*hidden argument*/NULL);
V_2 = L_6;
Type_t * L_7 = V_2;
String_t* L_8 = ___defaultNamespace;
XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_7, (XmlRootAttribute_t2483700417 *)NULL, L_8, /*hidden argument*/NULL);
int32_t L_9 = V_1;
V_1 = ((int32_t)((int32_t)L_9+(int32_t)1));
}
IL_0035:
{
int32_t L_10 = V_1;
XmlIncludeAttributeU5BU5D_t2660312372* L_11 = V_0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_11)->max_length)))))))
{
goto IL_001e;
}
}
{
return;
}
}
// System.Collections.ICollection System.Xml.Serialization.XmlReflectionImporter::GetReflectionMembers(System.Type)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern TypeInfo* XmlReflectionMember_t891190874_il2cpp_TypeInfo_var;
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionImporter_GetReflectionMembers_m3636222560_MetadataUsageId;
extern "C" Il2CppObject * XmlReflectionImporter_GetReflectionMembers_m3636222560 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_GetReflectionMembers_m3636222560_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
ArrayList_t2121638921 * V_1 = NULL;
ArrayList_t2121638921 * V_2 = NULL;
FieldInfoU5BU5D_t1144794227* V_3 = NULL;
int32_t V_4 = 0;
FieldInfo_t * V_5 = NULL;
FieldInfoU5BU5D_t1144794227* V_6 = NULL;
int32_t V_7 = 0;
ArrayList_t2121638921 * V_8 = NULL;
PropertyInfoU5BU5D_t1348579340* V_9 = NULL;
PropertyInfo_t * V_10 = NULL;
PropertyInfoU5BU5D_t1348579340* V_11 = NULL;
int32_t V_12 = 0;
ArrayList_t2121638921 * V_13 = NULL;
int32_t V_14 = 0;
int32_t V_15 = 0;
Type_t * V_16 = NULL;
Il2CppObject * V_17 = NULL;
FieldInfo_t * V_18 = NULL;
XmlAttributes_t2892492364 * V_19 = NULL;
XmlReflectionMember_t891190874 * V_20 = NULL;
PropertyInfo_t * V_21 = NULL;
XmlAttributes_t2892492364 * V_22 = NULL;
XmlReflectionMember_t891190874 * V_23 = NULL;
Il2CppObject * V_24 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Type_t * L_0 = ___type;
V_0 = L_0;
ArrayList_t2121638921 * L_1 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_1, /*hidden argument*/NULL);
V_1 = L_1;
ArrayList_t2121638921 * L_2 = V_1;
Type_t * L_3 = V_0;
NullCheck(L_2);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
goto IL_0024;
}
IL_0015:
{
Type_t * L_4 = V_0;
NullCheck(L_4);
Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_4);
V_0 = L_5;
ArrayList_t2121638921 * L_6 = V_1;
Type_t * L_7 = V_0;
NullCheck(L_6);
VirtActionInvoker2< int32_t, Il2CppObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_6, 0, L_7);
}
IL_0024:
{
Type_t * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_8) == ((Il2CppObject*)(Type_t *)L_9))))
{
goto IL_0015;
}
}
{
ArrayList_t2121638921 * L_10 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_10, /*hidden argument*/NULL);
V_2 = L_10;
Type_t * L_11 = ___type;
NullCheck(L_11);
FieldInfoU5BU5D_t1144794227* L_12 = VirtFuncInvoker1< FieldInfoU5BU5D_t1144794227*, int32_t >::Invoke(50 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_11, ((int32_t)20));
V_3 = L_12;
V_0 = (Type_t *)NULL;
V_4 = 0;
FieldInfoU5BU5D_t1144794227* L_13 = V_3;
V_6 = L_13;
V_7 = 0;
goto IL_0087;
}
IL_0053:
{
FieldInfoU5BU5D_t1144794227* L_14 = V_6;
int32_t L_15 = V_7;
NullCheck(L_14);
IL2CPP_ARRAY_BOUNDS_CHECK(L_14, L_15);
int32_t L_16 = L_15;
V_5 = ((L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)));
Type_t * L_17 = V_0;
FieldInfo_t * L_18 = V_5;
NullCheck(L_18);
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_18);
if ((((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_19)))
{
goto IL_0072;
}
}
{
FieldInfo_t * L_20 = V_5;
NullCheck(L_20);
Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_20);
V_0 = L_21;
V_4 = 0;
}
IL_0072:
{
ArrayList_t2121638921 * L_22 = V_2;
int32_t L_23 = V_4;
int32_t L_24 = L_23;
V_4 = ((int32_t)((int32_t)L_24+(int32_t)1));
FieldInfo_t * L_25 = V_5;
NullCheck(L_22);
VirtActionInvoker2< int32_t, Il2CppObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_22, L_24, L_25);
int32_t L_26 = V_7;
V_7 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_0087:
{
int32_t L_27 = V_7;
FieldInfoU5BU5D_t1144794227* L_28 = V_6;
NullCheck(L_28);
if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_28)->max_length)))))))
{
goto IL_0053;
}
}
{
ArrayList_t2121638921 * L_29 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_29, /*hidden argument*/NULL);
V_8 = L_29;
Type_t * L_30 = ___type;
NullCheck(L_30);
PropertyInfoU5BU5D_t1348579340* L_31 = VirtFuncInvoker1< PropertyInfoU5BU5D_t1348579340*, int32_t >::Invoke(61 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_30, ((int32_t)20));
V_9 = L_31;
V_0 = (Type_t *)NULL;
V_4 = 0;
PropertyInfoU5BU5D_t1348579340* L_32 = V_9;
V_11 = L_32;
V_12 = 0;
goto IL_010e;
}
IL_00b4:
{
PropertyInfoU5BU5D_t1348579340* L_33 = V_11;
int32_t L_34 = V_12;
NullCheck(L_33);
IL2CPP_ARRAY_BOUNDS_CHECK(L_33, L_34);
int32_t L_35 = L_34;
V_10 = ((L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35)));
Type_t * L_36 = V_0;
PropertyInfo_t * L_37 = V_10;
NullCheck(L_37);
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_37);
if ((((Il2CppObject*)(Type_t *)L_36) == ((Il2CppObject*)(Type_t *)L_38)))
{
goto IL_00d3;
}
}
{
PropertyInfo_t * L_39 = V_10;
NullCheck(L_39);
Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_39);
V_0 = L_40;
V_4 = 0;
}
IL_00d3:
{
PropertyInfo_t * L_41 = V_10;
NullCheck(L_41);
bool L_42 = VirtFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_41);
if (L_42)
{
goto IL_00e4;
}
}
{
goto IL_0108;
}
IL_00e4:
{
PropertyInfo_t * L_43 = V_10;
NullCheck(L_43);
ParameterInfoU5BU5D_t1127461800* L_44 = VirtFuncInvoker0< ParameterInfoU5BU5D_t1127461800* >::Invoke(21 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_43);
NullCheck(L_44);
if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_44)->max_length))))) <= ((int32_t)0)))
{
goto IL_00f8;
}
}
{
goto IL_0108;
}
IL_00f8:
{
ArrayList_t2121638921 * L_45 = V_8;
int32_t L_46 = V_4;
int32_t L_47 = L_46;
V_4 = ((int32_t)((int32_t)L_47+(int32_t)1));
PropertyInfo_t * L_48 = V_10;
NullCheck(L_45);
VirtActionInvoker2< int32_t, Il2CppObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_45, L_47, L_48);
}
IL_0108:
{
int32_t L_49 = V_12;
V_12 = ((int32_t)((int32_t)L_49+(int32_t)1));
}
IL_010e:
{
int32_t L_50 = V_12;
PropertyInfoU5BU5D_t1348579340* L_51 = V_11;
NullCheck(L_51);
if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_51)->max_length)))))))
{
goto IL_00b4;
}
}
{
ArrayList_t2121638921 * L_52 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_52, /*hidden argument*/NULL);
V_13 = L_52;
V_14 = 0;
V_15 = 0;
ArrayList_t2121638921 * L_53 = V_1;
NullCheck(L_53);
Il2CppObject * L_54 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_53);
V_17 = L_54;
}
IL_012e:
try
{ // begin try (depth: 1)
{
goto IL_02c4;
}
IL_0133:
{
Il2CppObject * L_55 = V_17;
NullCheck(L_55);
Il2CppObject * L_56 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_55);
V_16 = ((Type_t *)CastclassClass(L_56, Type_t_il2cpp_TypeInfo_var));
goto IL_01d8;
}
IL_0146:
{
ArrayList_t2121638921 * L_57 = V_2;
int32_t L_58 = V_14;
NullCheck(L_57);
Il2CppObject * L_59 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_57, L_58);
V_18 = ((FieldInfo_t *)CastclassClass(L_59, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t * L_60 = V_18;
NullCheck(L_60);
Type_t * L_61 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_60);
Type_t * L_62 = V_16;
if ((!(((Il2CppObject*)(Type_t *)L_61) == ((Il2CppObject*)(Type_t *)L_62))))
{
goto IL_01d3;
}
}
IL_0163:
{
int32_t L_63 = V_14;
V_14 = ((int32_t)((int32_t)L_63+(int32_t)1));
XmlAttributeOverrides_t186122464 * L_64 = __this->get_attributeOverrides_1();
Type_t * L_65 = ___type;
FieldInfo_t * L_66 = V_18;
NullCheck(L_66);
String_t* L_67 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_66);
NullCheck(L_64);
XmlAttributes_t2892492364 * L_68 = XmlAttributeOverrides_get_Item_m2493333749(L_64, L_65, L_67, /*hidden argument*/NULL);
V_19 = L_68;
XmlAttributes_t2892492364 * L_69 = V_19;
if (L_69)
{
goto IL_018e;
}
}
IL_0185:
{
FieldInfo_t * L_70 = V_18;
XmlAttributes_t2892492364 * L_71 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m1209025076(L_71, L_70, /*hidden argument*/NULL);
V_19 = L_71;
}
IL_018e:
{
XmlAttributes_t2892492364 * L_72 = V_19;
NullCheck(L_72);
bool L_73 = XmlAttributes_get_XmlIgnore_m2081611233(L_72, /*hidden argument*/NULL);
if (!L_73)
{
goto IL_019f;
}
}
IL_019a:
{
goto IL_01d8;
}
IL_019f:
{
FieldInfo_t * L_74 = V_18;
NullCheck(L_74);
String_t* L_75 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_74);
FieldInfo_t * L_76 = V_18;
NullCheck(L_76);
Type_t * L_77 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_76);
XmlAttributes_t2892492364 * L_78 = V_19;
XmlReflectionMember_t891190874 * L_79 = (XmlReflectionMember_t891190874 *)il2cpp_codegen_object_new(XmlReflectionMember_t891190874_il2cpp_TypeInfo_var);
XmlReflectionMember__ctor_m561245972(L_79, L_75, L_77, L_78, /*hidden argument*/NULL);
V_20 = L_79;
XmlReflectionMember_t891190874 * L_80 = V_20;
FieldInfo_t * L_81 = V_18;
NullCheck(L_81);
Type_t * L_82 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_81);
NullCheck(L_80);
XmlReflectionMember_set_DeclaringType_m3595081402(L_80, L_82, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_83 = V_13;
XmlReflectionMember_t891190874 * L_84 = V_20;
NullCheck(L_83);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_83, L_84);
goto IL_01d8;
}
IL_01d3:
{
goto IL_01e5;
}
IL_01d8:
{
int32_t L_85 = V_14;
ArrayList_t2121638921 * L_86 = V_2;
NullCheck(L_86);
int32_t L_87 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_86);
if ((((int32_t)L_85) < ((int32_t)L_87)))
{
goto IL_0146;
}
}
IL_01e5:
{
goto IL_02b6;
}
IL_01ea:
{
ArrayList_t2121638921 * L_88 = V_8;
int32_t L_89 = V_15;
NullCheck(L_88);
Il2CppObject * L_90 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_88, L_89);
V_21 = ((PropertyInfo_t *)CastclassClass(L_90, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t * L_91 = V_21;
NullCheck(L_91);
Type_t * L_92 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_91);
Type_t * L_93 = V_16;
if ((!(((Il2CppObject*)(Type_t *)L_92) == ((Il2CppObject*)(Type_t *)L_93))))
{
goto IL_02b1;
}
}
IL_0208:
{
int32_t L_94 = V_15;
V_15 = ((int32_t)((int32_t)L_94+(int32_t)1));
XmlAttributeOverrides_t186122464 * L_95 = __this->get_attributeOverrides_1();
Type_t * L_96 = ___type;
PropertyInfo_t * L_97 = V_21;
NullCheck(L_97);
String_t* L_98 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_97);
NullCheck(L_95);
XmlAttributes_t2892492364 * L_99 = XmlAttributeOverrides_get_Item_m2493333749(L_95, L_96, L_98, /*hidden argument*/NULL);
V_22 = L_99;
XmlAttributes_t2892492364 * L_100 = V_22;
if (L_100)
{
goto IL_0233;
}
}
IL_022a:
{
PropertyInfo_t * L_101 = V_21;
XmlAttributes_t2892492364 * L_102 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m1209025076(L_102, L_101, /*hidden argument*/NULL);
V_22 = L_102;
}
IL_0233:
{
XmlAttributes_t2892492364 * L_103 = V_22;
NullCheck(L_103);
bool L_104 = XmlAttributes_get_XmlIgnore_m2081611233(L_103, /*hidden argument*/NULL);
if (!L_104)
{
goto IL_0244;
}
}
IL_023f:
{
goto IL_02b6;
}
IL_0244:
{
PropertyInfo_t * L_105 = V_21;
NullCheck(L_105);
bool L_106 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_105);
if (L_106)
{
goto IL_027d;
}
}
IL_0250:
{
PropertyInfo_t * L_107 = V_21;
NullCheck(L_107);
Type_t * L_108 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_107);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_109 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_108, /*hidden argument*/NULL);
NullCheck(L_109);
int32_t L_110 = TypeData_get_SchemaType_m1693934194(L_109, /*hidden argument*/NULL);
if ((!(((uint32_t)L_110) == ((uint32_t)3))))
{
goto IL_0278;
}
}
IL_0267:
{
PropertyInfo_t * L_111 = V_21;
NullCheck(L_111);
Type_t * L_112 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_111);
NullCheck(L_112);
bool L_113 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_112);
if (!L_113)
{
goto IL_027d;
}
}
IL_0278:
{
goto IL_02b6;
}
IL_027d:
{
PropertyInfo_t * L_114 = V_21;
NullCheck(L_114);
String_t* L_115 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_114);
PropertyInfo_t * L_116 = V_21;
NullCheck(L_116);
Type_t * L_117 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_116);
XmlAttributes_t2892492364 * L_118 = V_22;
XmlReflectionMember_t891190874 * L_119 = (XmlReflectionMember_t891190874 *)il2cpp_codegen_object_new(XmlReflectionMember_t891190874_il2cpp_TypeInfo_var);
XmlReflectionMember__ctor_m561245972(L_119, L_115, L_117, L_118, /*hidden argument*/NULL);
V_23 = L_119;
XmlReflectionMember_t891190874 * L_120 = V_23;
PropertyInfo_t * L_121 = V_21;
NullCheck(L_121);
Type_t * L_122 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_121);
NullCheck(L_120);
XmlReflectionMember_set_DeclaringType_m3595081402(L_120, L_122, /*hidden argument*/NULL);
ArrayList_t2121638921 * L_123 = V_13;
XmlReflectionMember_t891190874 * L_124 = V_23;
NullCheck(L_123);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_123, L_124);
goto IL_02b6;
}
IL_02b1:
{
goto IL_02c4;
}
IL_02b6:
{
int32_t L_125 = V_15;
ArrayList_t2121638921 * L_126 = V_8;
NullCheck(L_126);
int32_t L_127 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_126);
if ((((int32_t)L_125) < ((int32_t)L_127)))
{
goto IL_01ea;
}
}
IL_02c4:
{
Il2CppObject * L_128 = V_17;
NullCheck(L_128);
bool L_129 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_128);
if (L_129)
{
goto IL_0133;
}
}
IL_02d0:
{
IL2CPP_LEAVE(0x2EB, FINALLY_02d5);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_02d5;
}
FINALLY_02d5:
{ // begin finally (depth: 1)
{
Il2CppObject * L_130 = V_17;
V_24 = ((Il2CppObject *)IsInst(L_130, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_131 = V_24;
if (L_131)
{
goto IL_02e3;
}
}
IL_02e2:
{
IL2CPP_END_FINALLY(725)
}
IL_02e3:
{
Il2CppObject * L_132 = V_24;
NullCheck(L_132);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_132);
IL2CPP_END_FINALLY(725)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(725)
{
IL2CPP_JUMP_TBL(0x2EB, IL_02eb)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_02eb:
{
ArrayList_t2121638921 * L_133 = V_13;
return L_133;
}
}
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlReflectionImporter::CreateMapMember(System.Type,System.Xml.Serialization.XmlReflectionMember,System.String)
extern const Il2CppType* ByteU5BU5D_t58506160_0_0_0_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyAttribute_t576758419_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberNamespaces_t1473492027_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var;
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberList_t2630503969_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral558787086;
extern Il2CppCodeGenString* _stringLiteral3227045441;
extern Il2CppCodeGenString* _stringLiteral3380513629;
extern Il2CppCodeGenString* _stringLiteral144487717;
extern Il2CppCodeGenString* _stringLiteral1209034997;
extern Il2CppCodeGenString* _stringLiteral156496765;
extern Il2CppCodeGenString* _stringLiteral701838043;
extern Il2CppCodeGenString* _stringLiteral4251725532;
extern Il2CppCodeGenString* _stringLiteral689139262;
extern Il2CppCodeGenString* _stringLiteral2619456568;
extern Il2CppCodeGenString* _stringLiteral2412857238;
extern const uint32_t XmlReflectionImporter_CreateMapMember_m1348048932_MetadataUsageId;
extern "C" XmlTypeMapMember_t757519331 * XmlReflectionImporter_CreateMapMember_m1348048932 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___declaringType, XmlReflectionMember_t891190874 * ___rmember, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_CreateMapMember_m1348048932_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMember_t757519331 * V_0 = NULL;
XmlAttributes_t2892492364 * V_1 = NULL;
TypeData_t3837952962 * V_2 = NULL;
XmlTypeMapMemberAnyElement_t2899433779 * V_3 = NULL;
XmlTypeMapMemberNamespaces_t1473492027 * V_4 = NULL;
XmlTypeMapMemberAttribute_t2837866357 * V_5 = NULL;
XmlTypeMapMemberFlatList_t1312744122 * V_6 = NULL;
XmlTypeMapMemberList_t2630503969 * V_7 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_8 = NULL;
XmlTypeMapMemberElement_t1386704533 * V_9 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B53_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B51_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B52_0 = NULL;
String_t* G_B54_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B54_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B57_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B55_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B56_0 = NULL;
String_t* G_B58_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B58_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B60_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B59_0 = NULL;
int32_t G_B61_0 = 0;
XmlTypeMapElementInfo_t3184170653 * G_B61_1 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B63_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B62_0 = NULL;
int32_t G_B64_0 = 0;
XmlTypeMapElementInfo_t3184170653 * G_B64_1 = NULL;
{
XmlReflectionMember_t891190874 * L_0 = ___rmember;
NullCheck(L_0);
XmlAttributes_t2892492364 * L_1 = XmlReflectionMember_get_XmlAttributes_m4015138473(L_0, /*hidden argument*/NULL);
V_1 = L_1;
XmlReflectionMember_t891190874 * L_2 = ___rmember;
NullCheck(L_2);
Type_t * L_3 = XmlReflectionMember_get_MemberType_m2020503070(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_4 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
V_2 = L_4;
XmlAttributes_t2892492364 * L_5 = V_1;
NullCheck(L_5);
XmlArrayAttribute_t229420472 * L_6 = XmlAttributes_get_XmlArray_m1744444079(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0082;
}
}
{
XmlAttributes_t2892492364 * L_7 = V_1;
NullCheck(L_7);
XmlArrayAttribute_t229420472 * L_8 = XmlAttributes_get_XmlArray_m1744444079(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
String_t* L_9 = XmlArrayAttribute_get_Namespace_m1975136652(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_004a;
}
}
{
XmlAttributes_t2892492364 * L_10 = V_1;
NullCheck(L_10);
XmlArrayAttribute_t229420472 * L_11 = XmlAttributes_get_XmlArray_m1744444079(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
int32_t L_12 = XmlArrayAttribute_get_Form_m3906345824(L_11, /*hidden argument*/NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_004a;
}
}
{
InvalidOperationException_t2420574324 * L_13 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_13, _stringLiteral558787086, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13);
}
IL_004a:
{
TypeData_t3837952962 * L_14 = V_2;
NullCheck(L_14);
int32_t L_15 = TypeData_get_SchemaType_m1693934194(L_14, /*hidden argument*/NULL);
if ((((int32_t)L_15) == ((int32_t)3)))
{
goto IL_0082;
}
}
{
TypeData_t3837952962 * L_16 = V_2;
NullCheck(L_16);
int32_t L_17 = TypeData_get_SchemaType_m1693934194(L_16, /*hidden argument*/NULL);
if ((!(((uint32_t)L_17) == ((uint32_t)1))))
{
goto IL_0077;
}
}
{
TypeData_t3837952962 * L_18 = V_2;
NullCheck(L_18);
Type_t * L_19 = TypeData_get_Type_m2191724548(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t58506160_0_0_0_var), /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_19) == ((Il2CppObject*)(Type_t *)L_20)))
{
goto IL_0082;
}
}
IL_0077:
{
InvalidOperationException_t2420574324 * L_21 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_21, _stringLiteral3227045441, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
IL_0082:
{
XmlAttributes_t2892492364 * L_22 = V_1;
NullCheck(L_22);
XmlAnyAttributeAttribute_t1747985491 * L_23 = XmlAttributes_get_XmlAnyAttribute_m3622137693(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00dc;
}
}
{
XmlReflectionMember_t891190874 * L_24 = ___rmember;
NullCheck(L_24);
Type_t * L_25 = XmlReflectionMember_get_MemberType_m2020503070(L_24, /*hidden argument*/NULL);
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_25);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_27 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_26, _stringLiteral3380513629, /*hidden argument*/NULL);
if (L_27)
{
goto IL_00c1;
}
}
{
XmlReflectionMember_t891190874 * L_28 = ___rmember;
NullCheck(L_28);
Type_t * L_29 = XmlReflectionMember_get_MemberType_m2020503070(L_28, /*hidden argument*/NULL);
NullCheck(L_29);
String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_29);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_31 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_30, _stringLiteral144487717, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00cc;
}
}
IL_00c1:
{
XmlTypeMapMemberAnyAttribute_t576758419 * L_32 = (XmlTypeMapMemberAnyAttribute_t576758419 *)il2cpp_codegen_object_new(XmlTypeMapMemberAnyAttribute_t576758419_il2cpp_TypeInfo_var);
XmlTypeMapMemberAnyAttribute__ctor_m1700938584(L_32, /*hidden argument*/NULL);
V_0 = L_32;
goto IL_00d7;
}
IL_00cc:
{
InvalidOperationException_t2420574324 * L_33 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_33, _stringLiteral1209034997, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33);
}
IL_00d7:
{
goto IL_0523;
}
IL_00dc:
{
XmlAttributes_t2892492364 * L_34 = V_1;
NullCheck(L_34);
XmlAnyElementAttributes_t788445468 * L_35 = XmlAttributes_get_XmlAnyElements_m2687952373(L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_0173;
}
}
{
XmlAttributes_t2892492364 * L_36 = V_1;
NullCheck(L_36);
XmlAnyElementAttributes_t788445468 * L_37 = XmlAttributes_get_XmlAnyElements_m2687952373(L_36, /*hidden argument*/NULL);
NullCheck(L_37);
int32_t L_38 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_37);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_0173;
}
}
{
XmlReflectionMember_t891190874 * L_39 = ___rmember;
NullCheck(L_39);
Type_t * L_40 = XmlReflectionMember_get_MemberType_m2020503070(L_39, /*hidden argument*/NULL);
NullCheck(L_40);
String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_40);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_42 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_41, _stringLiteral156496765, /*hidden argument*/NULL);
if (L_42)
{
goto IL_0146;
}
}
{
XmlReflectionMember_t891190874 * L_43 = ___rmember;
NullCheck(L_43);
Type_t * L_44 = XmlReflectionMember_get_MemberType_m2020503070(L_43, /*hidden argument*/NULL);
NullCheck(L_44);
String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_44);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_46 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_45, _stringLiteral144487717, /*hidden argument*/NULL);
if (L_46)
{
goto IL_0146;
}
}
{
XmlReflectionMember_t891190874 * L_47 = ___rmember;
NullCheck(L_47);
Type_t * L_48 = XmlReflectionMember_get_MemberType_m2020503070(L_47, /*hidden argument*/NULL);
NullCheck(L_48);
String_t* L_49 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_48);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_50 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_49, _stringLiteral701838043, /*hidden argument*/NULL);
if (!L_50)
{
goto IL_0163;
}
}
IL_0146:
{
XmlTypeMapMemberAnyElement_t2899433779 * L_51 = (XmlTypeMapMemberAnyElement_t2899433779 *)il2cpp_codegen_object_new(XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var);
XmlTypeMapMemberAnyElement__ctor_m603620152(L_51, /*hidden argument*/NULL);
V_3 = L_51;
XmlTypeMapMemberAnyElement_t2899433779 * L_52 = V_3;
String_t* L_53 = ___defaultNamespace;
XmlReflectionMember_t891190874 * L_54 = ___rmember;
XmlTypeMapMemberAnyElement_t2899433779 * L_55 = V_3;
XmlAttributes_t2892492364 * L_56 = V_1;
XmlTypeMapElementInfoList_t3690603483 * L_57 = XmlReflectionImporter_ImportAnyElementInfo_m2490486255(__this, L_53, L_54, L_55, L_56, /*hidden argument*/NULL);
NullCheck(L_52);
XmlTypeMapMemberElement_set_ElementInfo_m2588514852(L_52, L_57, /*hidden argument*/NULL);
XmlTypeMapMemberAnyElement_t2899433779 * L_58 = V_3;
V_0 = L_58;
goto IL_016e;
}
IL_0163:
{
InvalidOperationException_t2420574324 * L_59 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_59, _stringLiteral4251725532, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_59);
}
IL_016e:
{
goto IL_0523;
}
IL_0173:
{
XmlAttributes_t2892492364 * L_60 = V_1;
NullCheck(L_60);
bool L_61 = XmlAttributes_get_Xmlns_m690962420(L_60, /*hidden argument*/NULL);
if (!L_61)
{
goto IL_018d;
}
}
{
XmlTypeMapMemberNamespaces_t1473492027 * L_62 = (XmlTypeMapMemberNamespaces_t1473492027 *)il2cpp_codegen_object_new(XmlTypeMapMemberNamespaces_t1473492027_il2cpp_TypeInfo_var);
XmlTypeMapMemberNamespaces__ctor_m3224015152(L_62, /*hidden argument*/NULL);
V_4 = L_62;
XmlTypeMapMemberNamespaces_t1473492027 * L_63 = V_4;
V_0 = L_63;
goto IL_0523;
}
IL_018d:
{
XmlAttributes_t2892492364 * L_64 = V_1;
NullCheck(L_64);
XmlAttributeAttribute_t949177685 * L_65 = XmlAttributes_get_XmlAttribute_m2125970549(L_64, /*hidden argument*/NULL);
if (!L_65)
{
goto IL_02ee;
}
}
{
XmlAttributes_t2892492364 * L_66 = V_1;
NullCheck(L_66);
XmlElementAttributes_t485582810 * L_67 = XmlAttributes_get_XmlElements_m757527755(L_66, /*hidden argument*/NULL);
if (!L_67)
{
goto IL_01bf;
}
}
{
XmlAttributes_t2892492364 * L_68 = V_1;
NullCheck(L_68);
XmlElementAttributes_t485582810 * L_69 = XmlAttributes_get_XmlElements_m757527755(L_68, /*hidden argument*/NULL);
NullCheck(L_69);
int32_t L_70 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_69);
if ((((int32_t)L_70) <= ((int32_t)0)))
{
goto IL_01bf;
}
}
{
Exception_t1967233988 * L_71 = (Exception_t1967233988 *)il2cpp_codegen_object_new(Exception_t1967233988_il2cpp_TypeInfo_var);
Exception__ctor_m3870771296(L_71, _stringLiteral689139262, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_71);
}
IL_01bf:
{
XmlTypeMapMemberAttribute_t2837866357 * L_72 = (XmlTypeMapMemberAttribute_t2837866357 *)il2cpp_codegen_object_new(XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var);
XmlTypeMapMemberAttribute__ctor_m2721275042(L_72, /*hidden argument*/NULL);
V_5 = L_72;
XmlAttributes_t2892492364 * L_73 = V_1;
NullCheck(L_73);
XmlAttributeAttribute_t949177685 * L_74 = XmlAttributes_get_XmlAttribute_m2125970549(L_73, /*hidden argument*/NULL);
NullCheck(L_74);
String_t* L_75 = XmlAttributeAttribute_get_AttributeName_m3405936507(L_74, /*hidden argument*/NULL);
NullCheck(L_75);
int32_t L_76 = String_get_Length_m2979997331(L_75, /*hidden argument*/NULL);
if (L_76)
{
goto IL_01ed;
}
}
{
XmlTypeMapMemberAttribute_t2837866357 * L_77 = V_5;
XmlReflectionMember_t891190874 * L_78 = ___rmember;
NullCheck(L_78);
String_t* L_79 = XmlReflectionMember_get_MemberName_m2282802424(L_78, /*hidden argument*/NULL);
NullCheck(L_77);
XmlTypeMapMemberAttribute_set_AttributeName_m4039826520(L_77, L_79, /*hidden argument*/NULL);
goto IL_01ff;
}
IL_01ed:
{
XmlTypeMapMemberAttribute_t2837866357 * L_80 = V_5;
XmlAttributes_t2892492364 * L_81 = V_1;
NullCheck(L_81);
XmlAttributeAttribute_t949177685 * L_82 = XmlAttributes_get_XmlAttribute_m2125970549(L_81, /*hidden argument*/NULL);
NullCheck(L_82);
String_t* L_83 = XmlAttributeAttribute_get_AttributeName_m3405936507(L_82, /*hidden argument*/NULL);
NullCheck(L_80);
XmlTypeMapMemberAttribute_set_AttributeName_m4039826520(L_80, L_83, /*hidden argument*/NULL);
}
IL_01ff:
{
XmlTypeMapMemberAttribute_t2837866357 * L_84 = V_5;
XmlTypeMapMemberAttribute_t2837866357 * L_85 = V_5;
NullCheck(L_85);
String_t* L_86 = XmlTypeMapMemberAttribute_get_AttributeName_m2749329371(L_85, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_87 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_86, /*hidden argument*/NULL);
NullCheck(L_84);
XmlTypeMapMemberAttribute_set_AttributeName_m4039826520(L_84, L_87, /*hidden argument*/NULL);
TypeData_t3837952962 * L_88 = V_2;
NullCheck(L_88);
bool L_89 = TypeData_get_IsComplexType_m115025350(L_88, /*hidden argument*/NULL);
if (!L_89)
{
goto IL_0232;
}
}
{
XmlTypeMapMemberAttribute_t2837866357 * L_90 = V_5;
TypeData_t3837952962 * L_91 = V_2;
NullCheck(L_91);
Type_t * L_92 = TypeData_get_Type_m2191724548(L_91, /*hidden argument*/NULL);
String_t* L_93 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_94 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_92, (XmlRootAttribute_t2483700417 *)NULL, L_93, /*hidden argument*/NULL);
NullCheck(L_90);
XmlTypeMapMemberAttribute_set_MappedType_m3674658933(L_90, L_94, /*hidden argument*/NULL);
}
IL_0232:
{
XmlAttributes_t2892492364 * L_95 = V_1;
NullCheck(L_95);
XmlAttributeAttribute_t949177685 * L_96 = XmlAttributes_get_XmlAttribute_m2125970549(L_95, /*hidden argument*/NULL);
NullCheck(L_96);
String_t* L_97 = XmlAttributeAttribute_get_Namespace_m3087539727(L_96, /*hidden argument*/NULL);
if (!L_97)
{
goto IL_0293;
}
}
{
XmlAttributes_t2892492364 * L_98 = V_1;
NullCheck(L_98);
XmlAttributeAttribute_t949177685 * L_99 = XmlAttributes_get_XmlAttribute_m2125970549(L_98, /*hidden argument*/NULL);
NullCheck(L_99);
String_t* L_100 = XmlAttributeAttribute_get_Namespace_m3087539727(L_99, /*hidden argument*/NULL);
String_t* L_101 = ___defaultNamespace;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_102 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_100, L_101, /*hidden argument*/NULL);
if (!L_102)
{
goto IL_0293;
}
}
{
XmlAttributes_t2892492364 * L_103 = V_1;
NullCheck(L_103);
XmlAttributeAttribute_t949177685 * L_104 = XmlAttributes_get_XmlAttribute_m2125970549(L_103, /*hidden argument*/NULL);
NullCheck(L_104);
int32_t L_105 = XmlAttributeAttribute_get_Form_m1643572093(L_104, /*hidden argument*/NULL);
if ((!(((uint32_t)L_105) == ((uint32_t)2))))
{
goto IL_0274;
}
}
{
InvalidOperationException_t2420574324 * L_106 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_106, _stringLiteral2619456568, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_106);
}
IL_0274:
{
XmlTypeMapMemberAttribute_t2837866357 * L_107 = V_5;
NullCheck(L_107);
XmlTypeMapMemberAttribute_set_Form_m99487562(L_107, 1, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_108 = V_5;
XmlAttributes_t2892492364 * L_109 = V_1;
NullCheck(L_109);
XmlAttributeAttribute_t949177685 * L_110 = XmlAttributes_get_XmlAttribute_m2125970549(L_109, /*hidden argument*/NULL);
NullCheck(L_110);
String_t* L_111 = XmlAttributeAttribute_get_Namespace_m3087539727(L_110, /*hidden argument*/NULL);
NullCheck(L_108);
XmlTypeMapMemberAttribute_set_Namespace_m2633344708(L_108, L_111, /*hidden argument*/NULL);
goto IL_02cf;
}
IL_0293:
{
XmlTypeMapMemberAttribute_t2837866357 * L_112 = V_5;
XmlAttributes_t2892492364 * L_113 = V_1;
NullCheck(L_113);
XmlAttributeAttribute_t949177685 * L_114 = XmlAttributes_get_XmlAttribute_m2125970549(L_113, /*hidden argument*/NULL);
NullCheck(L_114);
int32_t L_115 = XmlAttributeAttribute_get_Form_m1643572093(L_114, /*hidden argument*/NULL);
NullCheck(L_112);
XmlTypeMapMemberAttribute_set_Form_m99487562(L_112, L_115, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_116 = V_1;
NullCheck(L_116);
XmlAttributeAttribute_t949177685 * L_117 = XmlAttributes_get_XmlAttribute_m2125970549(L_116, /*hidden argument*/NULL);
NullCheck(L_117);
int32_t L_118 = XmlAttributeAttribute_get_Form_m1643572093(L_117, /*hidden argument*/NULL);
if ((!(((uint32_t)L_118) == ((uint32_t)1))))
{
goto IL_02c3;
}
}
{
XmlTypeMapMemberAttribute_t2837866357 * L_119 = V_5;
String_t* L_120 = ___defaultNamespace;
NullCheck(L_119);
XmlTypeMapMemberAttribute_set_Namespace_m2633344708(L_119, L_120, /*hidden argument*/NULL);
goto IL_02cf;
}
IL_02c3:
{
XmlTypeMapMemberAttribute_t2837866357 * L_121 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_122 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
NullCheck(L_121);
XmlTypeMapMemberAttribute_set_Namespace_m2633344708(L_121, L_122, /*hidden argument*/NULL);
}
IL_02cf:
{
XmlReflectionMember_t891190874 * L_123 = ___rmember;
NullCheck(L_123);
Type_t * L_124 = XmlReflectionMember_get_MemberType_m2020503070(L_123, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_125 = V_1;
NullCheck(L_125);
XmlAttributeAttribute_t949177685 * L_126 = XmlAttributes_get_XmlAttribute_m2125970549(L_125, /*hidden argument*/NULL);
NullCheck(L_126);
String_t* L_127 = XmlAttributeAttribute_get_DataType_m830069042(L_126, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_128 = TypeTranslator_GetTypeData_m4275513353(NULL /*static, unused*/, L_124, L_127, /*hidden argument*/NULL);
V_2 = L_128;
XmlTypeMapMemberAttribute_t2837866357 * L_129 = V_5;
V_0 = L_129;
goto IL_0523;
}
IL_02ee:
{
TypeData_t3837952962 * L_130 = V_2;
NullCheck(L_130);
int32_t L_131 = TypeData_get_SchemaType_m1693934194(L_130, /*hidden argument*/NULL);
if ((!(((uint32_t)L_131) == ((uint32_t)3))))
{
goto IL_04f6;
}
}
{
XmlAttributes_t2892492364 * L_132 = V_1;
NullCheck(L_132);
XmlElementAttributes_t485582810 * L_133 = XmlAttributes_get_XmlElements_m757527755(L_132, /*hidden argument*/NULL);
NullCheck(L_133);
int32_t L_134 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_133);
if ((((int32_t)L_134) > ((int32_t)1)))
{
goto IL_0343;
}
}
{
XmlAttributes_t2892492364 * L_135 = V_1;
NullCheck(L_135);
XmlElementAttributes_t485582810 * L_136 = XmlAttributes_get_XmlElements_m757527755(L_135, /*hidden argument*/NULL);
NullCheck(L_136);
int32_t L_137 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_136);
if ((!(((uint32_t)L_137) == ((uint32_t)1))))
{
goto IL_0338;
}
}
{
XmlAttributes_t2892492364 * L_138 = V_1;
NullCheck(L_138);
XmlElementAttributes_t485582810 * L_139 = XmlAttributes_get_XmlElements_m757527755(L_138, /*hidden argument*/NULL);
NullCheck(L_139);
XmlElementAttribute_t27258549 * L_140 = XmlElementAttributes_get_Item_m280791570(L_139, 0, /*hidden argument*/NULL);
NullCheck(L_140);
Type_t * L_141 = XmlElementAttribute_get_Type_m4054639999(L_140, /*hidden argument*/NULL);
TypeData_t3837952962 * L_142 = V_2;
NullCheck(L_142);
Type_t * L_143 = TypeData_get_Type_m2191724548(L_142, /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_141) == ((Il2CppObject*)(Type_t *)L_143))))
{
goto IL_0343;
}
}
IL_0338:
{
XmlAttributes_t2892492364 * L_144 = V_1;
NullCheck(L_144);
XmlTextAttribute_t1613374166 * L_145 = XmlAttributes_get_XmlText_m1655653501(L_144, /*hidden argument*/NULL);
if (!L_145)
{
goto IL_03c2;
}
}
IL_0343:
{
XmlAttributes_t2892492364 * L_146 = V_1;
NullCheck(L_146);
XmlArrayAttribute_t229420472 * L_147 = XmlAttributes_get_XmlArray_m1744444079(L_146, /*hidden argument*/NULL);
if (!L_147)
{
goto IL_0359;
}
}
{
InvalidOperationException_t2420574324 * L_148 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_148, _stringLiteral2412857238, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_148);
}
IL_0359:
{
XmlTypeMapMemberFlatList_t1312744122 * L_149 = (XmlTypeMapMemberFlatList_t1312744122 *)il2cpp_codegen_object_new(XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var);
XmlTypeMapMemberFlatList__ctor_m1101456401(L_149, /*hidden argument*/NULL);
V_6 = L_149;
XmlTypeMapMemberFlatList_t1312744122 * L_150 = V_6;
ListMap_t2001748316 * L_151 = (ListMap_t2001748316 *)il2cpp_codegen_object_new(ListMap_t2001748316_il2cpp_TypeInfo_var);
ListMap__ctor_m3996758043(L_151, /*hidden argument*/NULL);
NullCheck(L_150);
XmlTypeMapMemberFlatList_set_ListMap_m2363063974(L_150, L_151, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_152 = V_6;
NullCheck(L_152);
ListMap_t2001748316 * L_153 = XmlTypeMapMemberFlatList_get_ListMap_m1043078955(L_152, /*hidden argument*/NULL);
Type_t * L_154 = ___declaringType;
XmlReflectionMember_t891190874 * L_155 = ___rmember;
NullCheck(L_155);
String_t* L_156 = XmlReflectionMember_get_MemberName_m2282802424(L_155, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_157 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_156, /*hidden argument*/NULL);
String_t* L_158 = ___defaultNamespace;
TypeData_t3837952962 * L_159 = V_2;
NullCheck(L_159);
Type_t * L_160 = TypeData_get_ListItemType_m2794988341(L_159, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_161 = V_6;
XmlAttributes_t2892492364 * L_162 = V_1;
XmlTypeMapElementInfoList_t3690603483 * L_163 = XmlReflectionImporter_ImportElementInfo_m2490944109(__this, L_154, L_157, L_158, L_160, L_161, L_162, /*hidden argument*/NULL);
NullCheck(L_153);
ListMap_set_ItemInfo_m1163337726(L_153, L_163, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_164 = V_6;
XmlTypeMapMemberFlatList_t1312744122 * L_165 = V_6;
NullCheck(L_165);
ListMap_t2001748316 * L_166 = XmlTypeMapMemberFlatList_get_ListMap_m1043078955(L_165, /*hidden argument*/NULL);
NullCheck(L_166);
XmlTypeMapElementInfoList_t3690603483 * L_167 = ListMap_get_ItemInfo_m2242411739(L_166, /*hidden argument*/NULL);
NullCheck(L_164);
XmlTypeMapMemberElement_set_ElementInfo_m2588514852(L_164, L_167, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_168 = V_6;
NullCheck(L_168);
ListMap_t2001748316 * L_169 = XmlTypeMapMemberFlatList_get_ListMap_m1043078955(L_168, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_170 = V_6;
NullCheck(L_170);
String_t* L_171 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_170, /*hidden argument*/NULL);
NullCheck(L_169);
ListMap_set_ChoiceMember_m1475177601(L_169, L_171, /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_172 = V_6;
V_0 = L_172;
goto IL_04f1;
}
IL_03c2:
{
XmlTypeMapMemberList_t2630503969 * L_173 = (XmlTypeMapMemberList_t2630503969 *)il2cpp_codegen_object_new(XmlTypeMapMemberList_t2630503969_il2cpp_TypeInfo_var);
XmlTypeMapMemberList__ctor_m2538963338(L_173, /*hidden argument*/NULL);
V_7 = L_173;
XmlTypeMapMemberList_t2630503969 * L_174 = V_7;
XmlTypeMapElementInfoList_t3690603483 * L_175 = (XmlTypeMapElementInfoList_t3690603483 *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var);
XmlTypeMapElementInfoList__ctor_m823538428(L_175, /*hidden argument*/NULL);
NullCheck(L_174);
XmlTypeMapMemberElement_set_ElementInfo_m2588514852(L_174, L_175, /*hidden argument*/NULL);
XmlTypeMapMemberList_t2630503969 * L_176 = V_7;
TypeData_t3837952962 * L_177 = V_2;
XmlTypeMapElementInfo_t3184170653 * L_178 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_178, L_176, L_177, /*hidden argument*/NULL);
V_8 = L_178;
XmlTypeMapElementInfo_t3184170653 * L_179 = V_8;
XmlAttributes_t2892492364 * L_180 = V_1;
NullCheck(L_180);
XmlArrayAttribute_t229420472 * L_181 = XmlAttributes_get_XmlArray_m1744444079(L_180, /*hidden argument*/NULL);
G_B51_0 = L_179;
if (!L_181)
{
G_B53_0 = L_179;
goto IL_0411;
}
}
{
XmlAttributes_t2892492364 * L_182 = V_1;
NullCheck(L_182);
XmlArrayAttribute_t229420472 * L_183 = XmlAttributes_get_XmlArray_m1744444079(L_182, /*hidden argument*/NULL);
NullCheck(L_183);
String_t* L_184 = XmlArrayAttribute_get_ElementName_m3133730008(L_183, /*hidden argument*/NULL);
NullCheck(L_184);
int32_t L_185 = String_get_Length_m2979997331(L_184, /*hidden argument*/NULL);
G_B52_0 = G_B51_0;
if (!L_185)
{
G_B53_0 = G_B51_0;
goto IL_0411;
}
}
{
XmlAttributes_t2892492364 * L_186 = V_1;
NullCheck(L_186);
XmlArrayAttribute_t229420472 * L_187 = XmlAttributes_get_XmlArray_m1744444079(L_186, /*hidden argument*/NULL);
NullCheck(L_187);
String_t* L_188 = XmlArrayAttribute_get_ElementName_m3133730008(L_187, /*hidden argument*/NULL);
G_B54_0 = L_188;
G_B54_1 = G_B52_0;
goto IL_0417;
}
IL_0411:
{
XmlReflectionMember_t891190874 * L_189 = ___rmember;
NullCheck(L_189);
String_t* L_190 = XmlReflectionMember_get_MemberName_m2282802424(L_189, /*hidden argument*/NULL);
G_B54_0 = L_190;
G_B54_1 = G_B53_0;
}
IL_0417:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_191 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, G_B54_0, /*hidden argument*/NULL);
NullCheck(G_B54_1);
XmlTypeMapElementInfo_set_ElementName_m3071025056(G_B54_1, L_191, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_192 = V_8;
XmlAttributes_t2892492364 * L_193 = V_1;
NullCheck(L_193);
XmlArrayAttribute_t229420472 * L_194 = XmlAttributes_get_XmlArray_m1744444079(L_193, /*hidden argument*/NULL);
G_B55_0 = L_192;
if (!L_194)
{
G_B57_0 = L_192;
goto IL_044e;
}
}
{
XmlAttributes_t2892492364 * L_195 = V_1;
NullCheck(L_195);
XmlArrayAttribute_t229420472 * L_196 = XmlAttributes_get_XmlArray_m1744444079(L_195, /*hidden argument*/NULL);
NullCheck(L_196);
String_t* L_197 = XmlArrayAttribute_get_Namespace_m1975136652(L_196, /*hidden argument*/NULL);
G_B56_0 = G_B55_0;
if (!L_197)
{
G_B57_0 = G_B55_0;
goto IL_044e;
}
}
{
XmlAttributes_t2892492364 * L_198 = V_1;
NullCheck(L_198);
XmlArrayAttribute_t229420472 * L_199 = XmlAttributes_get_XmlArray_m1744444079(L_198, /*hidden argument*/NULL);
NullCheck(L_199);
String_t* L_200 = XmlArrayAttribute_get_Namespace_m1975136652(L_199, /*hidden argument*/NULL);
G_B58_0 = L_200;
G_B58_1 = G_B56_0;
goto IL_044f;
}
IL_044e:
{
String_t* L_201 = ___defaultNamespace;
G_B58_0 = L_201;
G_B58_1 = G_B57_0;
}
IL_044f:
{
NullCheck(G_B58_1);
XmlTypeMapElementInfo_set_Namespace_m2703770860(G_B58_1, G_B58_0, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_202 = V_8;
XmlReflectionMember_t891190874 * L_203 = ___rmember;
NullCheck(L_203);
Type_t * L_204 = XmlReflectionMember_get_MemberType_m2020503070(L_203, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_205 = V_8;
NullCheck(L_205);
String_t* L_206 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_205, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_207 = V_1;
XmlTypeMapping_t988104027 * L_208 = XmlReflectionImporter_ImportListMapping_m2090871817(__this, L_204, (XmlRootAttribute_t2483700417 *)NULL, L_206, L_207, 0, /*hidden argument*/NULL);
NullCheck(L_202);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_202, L_208, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_209 = V_8;
XmlAttributes_t2892492364 * L_210 = V_1;
NullCheck(L_210);
XmlArrayAttribute_t229420472 * L_211 = XmlAttributes_get_XmlArray_m1744444079(L_210, /*hidden argument*/NULL);
G_B59_0 = L_209;
if (!L_211)
{
G_B60_0 = L_209;
goto IL_048e;
}
}
{
XmlAttributes_t2892492364 * L_212 = V_1;
NullCheck(L_212);
XmlArrayAttribute_t229420472 * L_213 = XmlAttributes_get_XmlArray_m1744444079(L_212, /*hidden argument*/NULL);
NullCheck(L_213);
bool L_214 = XmlArrayAttribute_get_IsNullable_m2175299809(L_213, /*hidden argument*/NULL);
G_B61_0 = ((int32_t)(L_214));
G_B61_1 = G_B59_0;
goto IL_048f;
}
IL_048e:
{
G_B61_0 = 0;
G_B61_1 = G_B60_0;
}
IL_048f:
{
NullCheck(G_B61_1);
XmlTypeMapElementInfo_set_IsNullable_m75400169(G_B61_1, (bool)G_B61_0, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_215 = V_8;
XmlAttributes_t2892492364 * L_216 = V_1;
NullCheck(L_216);
XmlArrayAttribute_t229420472 * L_217 = XmlAttributes_get_XmlArray_m1744444079(L_216, /*hidden argument*/NULL);
G_B62_0 = L_215;
if (!L_217)
{
G_B63_0 = L_215;
goto IL_04b1;
}
}
{
XmlAttributes_t2892492364 * L_218 = V_1;
NullCheck(L_218);
XmlArrayAttribute_t229420472 * L_219 = XmlAttributes_get_XmlArray_m1744444079(L_218, /*hidden argument*/NULL);
NullCheck(L_219);
int32_t L_220 = XmlArrayAttribute_get_Form_m3906345824(L_219, /*hidden argument*/NULL);
G_B64_0 = ((int32_t)(L_220));
G_B64_1 = G_B62_0;
goto IL_04b2;
}
IL_04b1:
{
G_B64_0 = 1;
G_B64_1 = G_B63_0;
}
IL_04b2:
{
NullCheck(G_B64_1);
XmlTypeMapElementInfo_set_Form_m269726242(G_B64_1, G_B64_0, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_221 = V_1;
NullCheck(L_221);
XmlArrayAttribute_t229420472 * L_222 = XmlAttributes_get_XmlArray_m1744444079(L_221, /*hidden argument*/NULL);
if (!L_222)
{
goto IL_04df;
}
}
{
XmlAttributes_t2892492364 * L_223 = V_1;
NullCheck(L_223);
XmlArrayAttribute_t229420472 * L_224 = XmlAttributes_get_XmlArray_m1744444079(L_223, /*hidden argument*/NULL);
NullCheck(L_224);
int32_t L_225 = XmlArrayAttribute_get_Form_m3906345824(L_224, /*hidden argument*/NULL);
if ((!(((uint32_t)L_225) == ((uint32_t)2))))
{
goto IL_04df;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_226 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_227 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
NullCheck(L_226);
XmlTypeMapElementInfo_set_Namespace_m2703770860(L_226, L_227, /*hidden argument*/NULL);
}
IL_04df:
{
XmlTypeMapMemberList_t2630503969 * L_228 = V_7;
NullCheck(L_228);
XmlTypeMapElementInfoList_t3690603483 * L_229 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_228, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_230 = V_8;
NullCheck(L_229);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_229, L_230);
XmlTypeMapMemberList_t2630503969 * L_231 = V_7;
V_0 = L_231;
}
IL_04f1:
{
goto IL_0523;
}
IL_04f6:
{
XmlTypeMapMemberElement_t1386704533 * L_232 = (XmlTypeMapMemberElement_t1386704533 *)il2cpp_codegen_object_new(XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var);
XmlTypeMapMemberElement__ctor_m1945462530(L_232, /*hidden argument*/NULL);
V_9 = L_232;
XmlTypeMapMemberElement_t1386704533 * L_233 = V_9;
Type_t * L_234 = ___declaringType;
XmlReflectionMember_t891190874 * L_235 = ___rmember;
NullCheck(L_235);
String_t* L_236 = XmlReflectionMember_get_MemberName_m2282802424(L_235, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_237 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_236, /*hidden argument*/NULL);
String_t* L_238 = ___defaultNamespace;
XmlReflectionMember_t891190874 * L_239 = ___rmember;
NullCheck(L_239);
Type_t * L_240 = XmlReflectionMember_get_MemberType_m2020503070(L_239, /*hidden argument*/NULL);
XmlTypeMapMemberElement_t1386704533 * L_241 = V_9;
XmlAttributes_t2892492364 * L_242 = V_1;
XmlTypeMapElementInfoList_t3690603483 * L_243 = XmlReflectionImporter_ImportElementInfo_m2490944109(__this, L_234, L_237, L_238, L_240, L_241, L_242, /*hidden argument*/NULL);
NullCheck(L_233);
XmlTypeMapMemberElement_set_ElementInfo_m2588514852(L_233, L_243, /*hidden argument*/NULL);
XmlTypeMapMemberElement_t1386704533 * L_244 = V_9;
V_0 = L_244;
}
IL_0523:
{
XmlTypeMapMember_t757519331 * L_245 = V_0;
TypeData_t3837952962 * L_246 = V_2;
XmlAttributes_t2892492364 * L_247 = V_1;
NullCheck(L_247);
Il2CppObject * L_248 = XmlAttributes_get_XmlDefaultValue_m645847986(L_247, /*hidden argument*/NULL);
Il2CppObject * L_249 = XmlReflectionImporter_GetDefaultValue_m917009300(__this, L_246, L_248, /*hidden argument*/NULL);
NullCheck(L_245);
XmlTypeMapMember_set_DefaultValue_m2585305675(L_245, L_249, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_250 = V_0;
TypeData_t3837952962 * L_251 = V_2;
NullCheck(L_250);
XmlTypeMapMember_set_TypeData_m2333518141(L_250, L_251, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_252 = V_0;
XmlReflectionMember_t891190874 * L_253 = ___rmember;
NullCheck(L_253);
String_t* L_254 = XmlReflectionMember_get_MemberName_m2282802424(L_253, /*hidden argument*/NULL);
NullCheck(L_252);
XmlTypeMapMember_set_Name_m1877731198(L_252, L_254, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_255 = V_0;
XmlReflectionMember_t891190874 * L_256 = ___rmember;
NullCheck(L_256);
bool L_257 = XmlReflectionMember_get_IsReturnValue_m1210938081(L_256, /*hidden argument*/NULL);
NullCheck(L_255);
XmlTypeMapMember_set_IsReturnValue_m866328855(L_255, L_257, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_258 = V_0;
return L_258;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportElementInfo(System.Type,System.String,System.String,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
extern TypeInfo* XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* EnumMap_t228974105_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementAttribute_t27258549_il2cpp_TypeInfo_var;
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2433259242;
extern Il2CppCodeGenString* _stringLiteral813060000;
extern Il2CppCodeGenString* _stringLiteral783487720;
extern Il2CppCodeGenString* _stringLiteral83352667;
extern Il2CppCodeGenString* _stringLiteral1961129961;
extern Il2CppCodeGenString* _stringLiteral3322196752;
extern Il2CppCodeGenString* _stringLiteral3395629690;
extern Il2CppCodeGenString* _stringLiteral3221280818;
extern Il2CppCodeGenString* _stringLiteral1634257052;
extern Il2CppCodeGenString* _stringLiteral39;
extern Il2CppCodeGenString* _stringLiteral3045549870;
extern Il2CppCodeGenString* _stringLiteral3711999919;
extern const uint32_t XmlReflectionImporter_ImportElementInfo_m2490944109_MetadataUsageId;
extern "C" XmlTypeMapElementInfoList_t3690603483 * XmlReflectionImporter_ImportElementInfo_m2490944109 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___cls, String_t* ___defaultName, String_t* ___defaultNamespace, Type_t * ___defaultType, XmlTypeMapMemberElement_t1386704533 * ___member, XmlAttributes_t2892492364 * ___atts, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportElementInfo_m2490944109_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
EnumMap_t228974105 * V_0 = NULL;
Type_t * V_1 = NULL;
XmlTypeMapElementInfoList_t3690603483 * V_2 = NULL;
MemberInfoU5BU5D_t3813794579* V_3 = NULL;
PropertyInfo_t * V_4 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_5 = NULL;
bool V_6 = false;
XmlElementAttribute_t27258549 * V_7 = NULL;
Il2CppObject * V_8 = NULL;
Type_t * V_9 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_10 = NULL;
String_t* V_11 = NULL;
Il2CppObject * V_12 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
Type_t * G_B25_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B28_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B27_0 = NULL;
String_t* G_B29_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B29_1 = NULL;
{
V_0 = (EnumMap_t228974105 *)NULL;
V_1 = (Type_t *)NULL;
XmlTypeMapElementInfoList_t3690603483 * L_0 = (XmlTypeMapElementInfoList_t3690603483 *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var);
XmlTypeMapElementInfoList__ctor_m823538428(L_0, /*hidden argument*/NULL);
V_2 = L_0;
XmlTypeMapElementInfoList_t3690603483 * L_1 = V_2;
Type_t * L_2 = ___defaultType;
XmlTypeMapMemberElement_t1386704533 * L_3 = ___member;
XmlAttributes_t2892492364 * L_4 = ___atts;
String_t* L_5 = ___defaultNamespace;
XmlReflectionImporter_ImportTextElementInfo_m1591165834(__this, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_6 = ___atts;
NullCheck(L_6);
XmlChoiceIdentifierAttribute_t1288756729 * L_7 = XmlAttributes_get_XmlChoiceIdentifier_m4123017373(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0149;
}
}
{
Type_t * L_8 = ___cls;
if (L_8)
{
goto IL_0035;
}
}
{
InvalidOperationException_t2420574324 * L_9 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_9, _stringLiteral2433259242, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9);
}
IL_0035:
{
XmlTypeMapMemberElement_t1386704533 * L_10 = ___member;
XmlAttributes_t2892492364 * L_11 = ___atts;
NullCheck(L_11);
XmlChoiceIdentifierAttribute_t1288756729 * L_12 = XmlAttributes_get_XmlChoiceIdentifier_m4123017373(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_13 = XmlChoiceIdentifierAttribute_get_MemberName_m4127637085(L_12, /*hidden argument*/NULL);
NullCheck(L_10);
XmlTypeMapMemberElement_set_ChoiceMember_m3137117800(L_10, L_13, /*hidden argument*/NULL);
Type_t * L_14 = ___cls;
XmlTypeMapMemberElement_t1386704533 * L_15 = ___member;
NullCheck(L_15);
String_t* L_16 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
MemberInfoU5BU5D_t3813794579* L_17 = VirtFuncInvoker2< MemberInfoU5BU5D_t3813794579*, String_t*, int32_t >::Invoke(51 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_14, L_16, ((int32_t)20));
V_3 = L_17;
MemberInfoU5BU5D_t3813794579* L_18 = V_3;
NullCheck(L_18);
if ((((int32_t)((int32_t)(((Il2CppArray *)L_18)->max_length)))))
{
goto IL_008f;
}
}
{
ObjectU5BU5D_t11523773* L_19 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)4));
NullCheck(L_19);
IL2CPP_ARRAY_BOUNDS_CHECK(L_19, 0);
ArrayElementTypeCheck (L_19, _stringLiteral813060000);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)_stringLiteral813060000);
ObjectU5BU5D_t11523773* L_20 = L_19;
XmlTypeMapMemberElement_t1386704533 * L_21 = ___member;
NullCheck(L_21);
String_t* L_22 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_21, /*hidden argument*/NULL);
NullCheck(L_20);
IL2CPP_ARRAY_BOUNDS_CHECK(L_20, 1);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_22);
ObjectU5BU5D_t11523773* L_23 = L_20;
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, 2);
ArrayElementTypeCheck (L_23, _stringLiteral783487720);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)_stringLiteral783487720);
ObjectU5BU5D_t11523773* L_24 = L_23;
Type_t * L_25 = ___cls;
NullCheck(L_24);
IL2CPP_ARRAY_BOUNDS_CHECK(L_24, 3);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_25);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_26 = String_Concat_m3016520001(NULL /*static, unused*/, L_24, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_27 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27);
}
IL_008f:
{
MemberInfoU5BU5D_t3813794579* L_28 = V_3;
NullCheck(L_28);
IL2CPP_ARRAY_BOUNDS_CHECK(L_28, 0);
int32_t L_29 = 0;
if (!((PropertyInfo_t *)IsInstClass(((L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29))), PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_00e7;
}
}
{
MemberInfoU5BU5D_t3813794579* L_30 = V_3;
NullCheck(L_30);
IL2CPP_ARRAY_BOUNDS_CHECK(L_30, 0);
int32_t L_31 = 0;
V_4 = ((PropertyInfo_t *)CastclassClass(((L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31))), PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t * L_32 = V_4;
NullCheck(L_32);
bool L_33 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_32);
if (!L_33)
{
goto IL_00be;
}
}
{
PropertyInfo_t * L_34 = V_4;
NullCheck(L_34);
bool L_35 = VirtFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_34);
if (L_35)
{
goto IL_00da;
}
}
IL_00be:
{
XmlTypeMapMemberElement_t1386704533 * L_36 = ___member;
NullCheck(L_36);
String_t* L_37 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_36, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_38 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral83352667, L_37, _stringLiteral1961129961, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_39 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_39, L_38, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39);
}
IL_00da:
{
PropertyInfo_t * L_40 = V_4;
NullCheck(L_40);
Type_t * L_41 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_40);
V_1 = L_41;
goto IL_00f5;
}
IL_00e7:
{
MemberInfoU5BU5D_t3813794579* L_42 = V_3;
NullCheck(L_42);
IL2CPP_ARRAY_BOUNDS_CHECK(L_42, 0);
int32_t L_43 = 0;
NullCheck(((FieldInfo_t *)CastclassClass(((L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43))), FieldInfo_t_il2cpp_TypeInfo_var)));
Type_t * L_44 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, ((FieldInfo_t *)CastclassClass(((L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43))), FieldInfo_t_il2cpp_TypeInfo_var)));
V_1 = L_44;
}
IL_00f5:
{
XmlTypeMapMemberElement_t1386704533 * L_45 = ___member;
Type_t * L_46 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_47 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_46, /*hidden argument*/NULL);
NullCheck(L_45);
XmlTypeMapMemberElement_set_ChoiceTypeData_m1441245526(L_45, L_47, /*hidden argument*/NULL);
Type_t * L_48 = V_1;
NullCheck(L_48);
bool L_49 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_48);
if (!L_49)
{
goto IL_0114;
}
}
{
Type_t * L_50 = V_1;
NullCheck(L_50);
Type_t * L_51 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_50);
V_1 = L_51;
}
IL_0114:
{
Type_t * L_52 = V_1;
XmlTypeMapping_t988104027 * L_53 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_52, /*hidden argument*/NULL);
NullCheck(L_53);
ObjectMap_t669501211 * L_54 = XmlMapping_get_ObjectMap_m3032707184(L_53, /*hidden argument*/NULL);
V_0 = ((EnumMap_t228974105 *)IsInstClass(L_54, EnumMap_t228974105_il2cpp_TypeInfo_var));
EnumMap_t228974105 * L_55 = V_0;
if (L_55)
{
goto IL_0149;
}
}
{
MemberInfoU5BU5D_t3813794579* L_56 = V_3;
NullCheck(L_56);
IL2CPP_ARRAY_BOUNDS_CHECK(L_56, 0);
int32_t L_57 = 0;
NullCheck(((L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_57))));
String_t* L_58 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, ((L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_57))));
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_59 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral3322196752, L_58, _stringLiteral3395629690, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_60 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_60, L_59, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_60);
}
IL_0149:
{
XmlAttributes_t2892492364 * L_61 = ___atts;
NullCheck(L_61);
XmlElementAttributes_t485582810 * L_62 = XmlAttributes_get_XmlElements_m757527755(L_61, /*hidden argument*/NULL);
NullCheck(L_62);
int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_62);
if (L_63)
{
goto IL_01b0;
}
}
{
XmlTypeMapElementInfoList_t3690603483 * L_64 = V_2;
NullCheck(L_64);
int32_t L_65 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_64);
if (L_65)
{
goto IL_01b0;
}
}
{
XmlTypeMapMemberElement_t1386704533 * L_66 = ___member;
Type_t * L_67 = ___defaultType;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_68 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_67, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_69 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_69, L_66, L_68, /*hidden argument*/NULL);
V_5 = L_69;
XmlTypeMapElementInfo_t3184170653 * L_70 = V_5;
String_t* L_71 = ___defaultName;
NullCheck(L_70);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_70, L_71, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_72 = V_5;
String_t* L_73 = ___defaultNamespace;
NullCheck(L_72);
XmlTypeMapElementInfo_set_Namespace_m2703770860(L_72, L_73, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_74 = V_5;
NullCheck(L_74);
TypeData_t3837952962 * L_75 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_74, /*hidden argument*/NULL);
NullCheck(L_75);
bool L_76 = TypeData_get_IsComplexType_m115025350(L_75, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_01a7;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_77 = V_5;
Type_t * L_78 = ___defaultType;
String_t* L_79 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_80 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_78, (XmlRootAttribute_t2483700417 *)NULL, L_79, /*hidden argument*/NULL);
NullCheck(L_77);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_77, L_80, /*hidden argument*/NULL);
}
IL_01a7:
{
XmlTypeMapElementInfoList_t3690603483 * L_81 = V_2;
XmlTypeMapElementInfo_t3184170653 * L_82 = V_5;
NullCheck(L_81);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_81, L_82);
}
IL_01b0:
{
XmlAttributes_t2892492364 * L_83 = ___atts;
NullCheck(L_83);
XmlElementAttributes_t485582810 * L_84 = XmlAttributes_get_XmlElements_m757527755(L_83, /*hidden argument*/NULL);
NullCheck(L_84);
int32_t L_85 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Collections.CollectionBase::get_Count() */, L_84);
V_6 = (bool)((((int32_t)L_85) > ((int32_t)1))? 1 : 0);
XmlAttributes_t2892492364 * L_86 = ___atts;
NullCheck(L_86);
XmlElementAttributes_t485582810 * L_87 = XmlAttributes_get_XmlElements_m757527755(L_86, /*hidden argument*/NULL);
NullCheck(L_87);
Il2CppObject * L_88 = VirtFuncInvoker0< Il2CppObject * >::Invoke(4 /* System.Collections.IEnumerator System.Collections.CollectionBase::GetEnumerator() */, L_87);
V_8 = L_88;
}
IL_01cf:
try
{ // begin try (depth: 1)
{
goto IL_0412;
}
IL_01d4:
{
Il2CppObject * L_89 = V_8;
NullCheck(L_89);
Il2CppObject * L_90 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_89);
V_7 = ((XmlElementAttribute_t27258549 *)CastclassClass(L_90, XmlElementAttribute_t27258549_il2cpp_TypeInfo_var));
XmlElementAttribute_t27258549 * L_91 = V_7;
NullCheck(L_91);
Type_t * L_92 = XmlElementAttribute_get_Type_m4054639999(L_91, /*hidden argument*/NULL);
if (!L_92)
{
goto IL_01fa;
}
}
IL_01ee:
{
XmlElementAttribute_t27258549 * L_93 = V_7;
NullCheck(L_93);
Type_t * L_94 = XmlElementAttribute_get_Type_m4054639999(L_93, /*hidden argument*/NULL);
G_B25_0 = L_94;
goto IL_01fc;
}
IL_01fa:
{
Type_t * L_95 = ___defaultType;
G_B25_0 = L_95;
}
IL_01fc:
{
V_9 = G_B25_0;
XmlTypeMapMemberElement_t1386704533 * L_96 = ___member;
Type_t * L_97 = V_9;
XmlElementAttribute_t27258549 * L_98 = V_7;
NullCheck(L_98);
String_t* L_99 = XmlElementAttribute_get_DataType_m2093922770(L_98, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_100 = TypeTranslator_GetTypeData_m4275513353(NULL /*static, unused*/, L_97, L_99, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_101 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_101, L_96, L_100, /*hidden argument*/NULL);
V_10 = L_101;
XmlTypeMapElementInfo_t3184170653 * L_102 = V_10;
XmlElementAttribute_t27258549 * L_103 = V_7;
NullCheck(L_103);
int32_t L_104 = XmlElementAttribute_get_Form_m1415635677(L_103, /*hidden argument*/NULL);
NullCheck(L_102);
XmlTypeMapElementInfo_set_Form_m269726242(L_102, L_104, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_105 = V_10;
NullCheck(L_105);
int32_t L_106 = XmlTypeMapElementInfo_get_Form_m1046644933(L_105, /*hidden argument*/NULL);
if ((((int32_t)L_106) == ((int32_t)2)))
{
goto IL_0250;
}
}
IL_0230:
{
XmlTypeMapElementInfo_t3184170653 * L_107 = V_10;
XmlElementAttribute_t27258549 * L_108 = V_7;
NullCheck(L_108);
String_t* L_109 = XmlElementAttribute_get_Namespace_m3612299631(L_108, /*hidden argument*/NULL);
G_B27_0 = L_107;
if (!L_109)
{
G_B28_0 = L_107;
goto IL_024a;
}
}
IL_023e:
{
XmlElementAttribute_t27258549 * L_110 = V_7;
NullCheck(L_110);
String_t* L_111 = XmlElementAttribute_get_Namespace_m3612299631(L_110, /*hidden argument*/NULL);
G_B29_0 = L_111;
G_B29_1 = G_B27_0;
goto IL_024b;
}
IL_024a:
{
String_t* L_112 = ___defaultNamespace;
G_B29_0 = L_112;
G_B29_1 = G_B28_0;
}
IL_024b:
{
NullCheck(G_B29_1);
XmlTypeMapElementInfo_set_Namespace_m2703770860(G_B29_1, G_B29_0, /*hidden argument*/NULL);
}
IL_0250:
{
XmlTypeMapElementInfo_t3184170653 * L_113 = V_10;
XmlElementAttribute_t27258549 * L_114 = V_7;
NullCheck(L_114);
bool L_115 = XmlElementAttribute_get_IsNullable_m2090133534(L_114, /*hidden argument*/NULL);
NullCheck(L_113);
XmlTypeMapElementInfo_set_IsNullable_m75400169(L_113, L_115, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_116 = V_10;
NullCheck(L_116);
bool L_117 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_116, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_02b7;
}
}
IL_026a:
{
XmlTypeMapElementInfo_t3184170653 * L_118 = V_10;
NullCheck(L_118);
TypeData_t3837952962 * L_119 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_118, /*hidden argument*/NULL);
NullCheck(L_119);
bool L_120 = TypeData_get_IsNullable_m3895772871(L_119, /*hidden argument*/NULL);
if (L_120)
{
goto IL_02b7;
}
}
IL_027b:
{
StringU5BU5D_t2956870243* L_121 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)5));
NullCheck(L_121);
IL2CPP_ARRAY_BOUNDS_CHECK(L_121, 0);
ArrayElementTypeCheck (L_121, _stringLiteral3221280818);
(L_121)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3221280818);
StringU5BU5D_t2956870243* L_122 = L_121;
XmlTypeMapElementInfo_t3184170653 * L_123 = V_10;
NullCheck(L_123);
TypeData_t3837952962 * L_124 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_123, /*hidden argument*/NULL);
NullCheck(L_124);
String_t* L_125 = TypeData_get_FullTypeName_m2969171957(L_124, /*hidden argument*/NULL);
NullCheck(L_122);
IL2CPP_ARRAY_BOUNDS_CHECK(L_122, 1);
ArrayElementTypeCheck (L_122, L_125);
(L_122)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_125);
StringU5BU5D_t2956870243* L_126 = L_122;
NullCheck(L_126);
IL2CPP_ARRAY_BOUNDS_CHECK(L_126, 2);
ArrayElementTypeCheck (L_126, _stringLiteral1634257052);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral1634257052);
StringU5BU5D_t2956870243* L_127 = L_126;
String_t* L_128 = ___defaultName;
NullCheck(L_127);
IL2CPP_ARRAY_BOUNDS_CHECK(L_127, 3);
ArrayElementTypeCheck (L_127, L_128);
(L_127)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_128);
StringU5BU5D_t2956870243* L_129 = L_127;
NullCheck(L_129);
IL2CPP_ARRAY_BOUNDS_CHECK(L_129, 4);
ArrayElementTypeCheck (L_129, _stringLiteral39);
(L_129)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral39);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_130 = String_Concat_m21867311(NULL /*static, unused*/, L_129, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_131 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_131, L_130, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_131);
}
IL_02b7:
{
XmlTypeMapElementInfo_t3184170653 * L_132 = V_10;
NullCheck(L_132);
TypeData_t3837952962 * L_133 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_132, /*hidden argument*/NULL);
NullCheck(L_133);
bool L_134 = TypeData_get_IsComplexType_m115025350(L_133, /*hidden argument*/NULL);
if (!L_134)
{
goto IL_0331;
}
}
IL_02c8:
{
XmlElementAttribute_t27258549 * L_135 = V_7;
NullCheck(L_135);
String_t* L_136 = XmlElementAttribute_get_DataType_m2093922770(L_135, /*hidden argument*/NULL);
NullCheck(L_136);
int32_t L_137 = String_get_Length_m2979997331(L_136, /*hidden argument*/NULL);
if (!L_137)
{
goto IL_031a;
}
}
IL_02d9:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_138 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_139 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)4));
XmlElementAttribute_t27258549 * L_140 = V_7;
NullCheck(L_140);
String_t* L_141 = XmlElementAttribute_get_DataType_m2093922770(L_140, /*hidden argument*/NULL);
NullCheck(L_139);
IL2CPP_ARRAY_BOUNDS_CHECK(L_139, 0);
ArrayElementTypeCheck (L_139, L_141);
(L_139)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_141);
ObjectU5BU5D_t11523773* L_142 = L_139;
Type_t * L_143 = ___cls;
NullCheck(L_143);
String_t* L_144 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_143);
NullCheck(L_142);
IL2CPP_ARRAY_BOUNDS_CHECK(L_142, 1);
ArrayElementTypeCheck (L_142, L_144);
(L_142)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_144);
ObjectU5BU5D_t11523773* L_145 = L_142;
String_t* L_146 = ___defaultName;
NullCheck(L_145);
IL2CPP_ARRAY_BOUNDS_CHECK(L_145, 2);
ArrayElementTypeCheck (L_145, L_146);
(L_145)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)L_146);
ObjectU5BU5D_t11523773* L_147 = L_145;
XmlTypeMapElementInfo_t3184170653 * L_148 = V_10;
NullCheck(L_148);
TypeData_t3837952962 * L_149 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_148, /*hidden argument*/NULL);
NullCheck(L_149);
String_t* L_150 = TypeData_get_FullTypeName_m2969171957(L_149, /*hidden argument*/NULL);
NullCheck(L_147);
IL2CPP_ARRAY_BOUNDS_CHECK(L_147, 3);
ArrayElementTypeCheck (L_147, L_150);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_150);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_151 = String_Format_m3351777162(NULL /*static, unused*/, L_138, _stringLiteral3045549870, L_147, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_152 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_152, L_151, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_152);
}
IL_031a:
{
XmlTypeMapElementInfo_t3184170653 * L_153 = V_10;
Type_t * L_154 = V_9;
XmlTypeMapElementInfo_t3184170653 * L_155 = V_10;
NullCheck(L_155);
String_t* L_156 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_155, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_157 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_154, (XmlRootAttribute_t2483700417 *)NULL, L_156, /*hidden argument*/NULL);
NullCheck(L_153);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_153, L_157, /*hidden argument*/NULL);
}
IL_0331:
{
XmlElementAttribute_t27258549 * L_158 = V_7;
NullCheck(L_158);
String_t* L_159 = XmlElementAttribute_get_ElementName_m194355195(L_158, /*hidden argument*/NULL);
NullCheck(L_159);
int32_t L_160 = String_get_Length_m2979997331(L_159, /*hidden argument*/NULL);
if (!L_160)
{
goto IL_035a;
}
}
IL_0342:
{
XmlTypeMapElementInfo_t3184170653 * L_161 = V_10;
XmlElementAttribute_t27258549 * L_162 = V_7;
NullCheck(L_162);
String_t* L_163 = XmlElementAttribute_get_ElementName_m194355195(L_162, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_164 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_163, /*hidden argument*/NULL);
NullCheck(L_161);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_161, L_164, /*hidden argument*/NULL);
goto IL_03a5;
}
IL_035a:
{
bool L_165 = V_6;
if (!L_165)
{
goto IL_039d;
}
}
IL_0361:
{
XmlTypeMapElementInfo_t3184170653 * L_166 = V_10;
NullCheck(L_166);
XmlTypeMapping_t988104027 * L_167 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_166, /*hidden argument*/NULL);
if (!L_167)
{
goto IL_0385;
}
}
IL_036d:
{
XmlTypeMapElementInfo_t3184170653 * L_168 = V_10;
XmlTypeMapElementInfo_t3184170653 * L_169 = V_10;
NullCheck(L_169);
XmlTypeMapping_t988104027 * L_170 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_169, /*hidden argument*/NULL);
NullCheck(L_170);
String_t* L_171 = XmlMapping_get_ElementName_m2753779381(L_170, /*hidden argument*/NULL);
NullCheck(L_168);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_168, L_171, /*hidden argument*/NULL);
goto IL_0398;
}
IL_0385:
{
XmlTypeMapElementInfo_t3184170653 * L_172 = V_10;
Type_t * L_173 = V_9;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_174 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_173, /*hidden argument*/NULL);
NullCheck(L_174);
String_t* L_175 = TypeData_get_XmlType_m3918246226(L_174, /*hidden argument*/NULL);
NullCheck(L_172);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_172, L_175, /*hidden argument*/NULL);
}
IL_0398:
{
goto IL_03a5;
}
IL_039d:
{
XmlTypeMapElementInfo_t3184170653 * L_176 = V_10;
String_t* L_177 = ___defaultName;
NullCheck(L_176);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_176, L_177, /*hidden argument*/NULL);
}
IL_03a5:
{
EnumMap_t228974105 * L_178 = V_0;
if (!L_178)
{
goto IL_0409;
}
}
IL_03ab:
{
EnumMap_t228974105 * L_179 = V_0;
Type_t * L_180 = V_1;
NullCheck(L_180);
String_t* L_181 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_180);
XmlTypeMapElementInfo_t3184170653 * L_182 = V_10;
NullCheck(L_182);
String_t* L_183 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_182, /*hidden argument*/NULL);
NullCheck(L_179);
String_t* L_184 = EnumMap_GetEnumName_m2804311267(L_179, L_181, L_183, /*hidden argument*/NULL);
V_11 = L_184;
String_t* L_185 = V_11;
if (L_185)
{
goto IL_03fa;
}
}
IL_03c7:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_186 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_187 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)3));
Type_t * L_188 = V_1;
NullCheck(L_187);
IL2CPP_ARRAY_BOUNDS_CHECK(L_187, 0);
ArrayElementTypeCheck (L_187, L_188);
(L_187)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_188);
ObjectU5BU5D_t11523773* L_189 = L_187;
XmlTypeMapElementInfo_t3184170653 * L_190 = V_10;
NullCheck(L_190);
String_t* L_191 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_190, /*hidden argument*/NULL);
NullCheck(L_189);
IL2CPP_ARRAY_BOUNDS_CHECK(L_189, 1);
ArrayElementTypeCheck (L_189, L_191);
(L_189)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_191);
ObjectU5BU5D_t11523773* L_192 = L_189;
XmlTypeMapElementInfo_t3184170653 * L_193 = V_10;
NullCheck(L_193);
String_t* L_194 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_193, /*hidden argument*/NULL);
NullCheck(L_192);
IL2CPP_ARRAY_BOUNDS_CHECK(L_192, 2);
ArrayElementTypeCheck (L_192, L_194);
(L_192)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)L_194);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_195 = String_Format_m3351777162(NULL /*static, unused*/, L_186, _stringLiteral3711999919, L_192, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_196 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_196, L_195, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_196);
}
IL_03fa:
{
XmlTypeMapElementInfo_t3184170653 * L_197 = V_10;
Type_t * L_198 = V_1;
String_t* L_199 = V_11;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
Il2CppObject * L_200 = Enum_Parse_m2929309979(NULL /*static, unused*/, L_198, L_199, /*hidden argument*/NULL);
NullCheck(L_197);
XmlTypeMapElementInfo_set_ChoiceValue_m4143204969(L_197, L_200, /*hidden argument*/NULL);
}
IL_0409:
{
XmlTypeMapElementInfoList_t3690603483 * L_201 = V_2;
XmlTypeMapElementInfo_t3184170653 * L_202 = V_10;
NullCheck(L_201);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_201, L_202);
}
IL_0412:
{
Il2CppObject * L_203 = V_8;
NullCheck(L_203);
bool L_204 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_203);
if (L_204)
{
goto IL_01d4;
}
}
IL_041e:
{
IL2CPP_LEAVE(0x439, FINALLY_0423);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0423;
}
FINALLY_0423:
{ // begin finally (depth: 1)
{
Il2CppObject * L_205 = V_8;
V_12 = ((Il2CppObject *)IsInst(L_205, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_206 = V_12;
if (L_206)
{
goto IL_0431;
}
}
IL_0430:
{
IL2CPP_END_FINALLY(1059)
}
IL_0431:
{
Il2CppObject * L_207 = V_12;
NullCheck(L_207);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_207);
IL2CPP_END_FINALLY(1059)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(1059)
{
IL2CPP_JUMP_TBL(0x439, IL_0439)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0439:
{
XmlTypeMapElementInfoList_t3690603483 * L_208 = V_2;
return L_208;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlReflectionImporter::ImportAnyElementInfo(System.String,System.Xml.Serialization.XmlReflectionMember,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes)
extern const Il2CppType* XmlElement_t3562928333_0_0_0_var;
extern TypeInfo* XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3963298707;
extern Il2CppCodeGenString* _stringLiteral3515659282;
extern Il2CppCodeGenString* _stringLiteral3685191824;
extern const uint32_t XmlReflectionImporter_ImportAnyElementInfo_m2490486255_MetadataUsageId;
extern "C" XmlTypeMapElementInfoList_t3690603483 * XmlReflectionImporter_ImportAnyElementInfo_m2490486255 (XmlReflectionImporter_t3346079314 * __this, String_t* ___defaultNamespace, XmlReflectionMember_t891190874 * ___rmember, XmlTypeMapMemberElement_t1386704533 * ___member, XmlAttributes_t2892492364 * ___atts, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportAnyElementInfo_m2490486255_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfoList_t3690603483 * V_0 = NULL;
XmlAnyElementAttribute_t3085069619 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
XmlTypeMapElementInfo_t3184170653 * G_B5_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B4_0 = NULL;
String_t* G_B6_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * G_B6_1 = NULL;
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = (XmlTypeMapElementInfoList_t3690603483 *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var);
XmlTypeMapElementInfoList__ctor_m823538428(L_0, /*hidden argument*/NULL);
V_0 = L_0;
XmlTypeMapElementInfoList_t3690603483 * L_1 = V_0;
XmlReflectionMember_t891190874 * L_2 = ___rmember;
NullCheck(L_2);
Type_t * L_3 = XmlReflectionMember_get_MemberType_m2020503070(L_2, /*hidden argument*/NULL);
XmlTypeMapMemberElement_t1386704533 * L_4 = ___member;
XmlAttributes_t2892492364 * L_5 = ___atts;
String_t* L_6 = ___defaultNamespace;
XmlReflectionImporter_ImportTextElementInfo_m1591165834(__this, L_1, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_7 = ___atts;
NullCheck(L_7);
XmlAnyElementAttributes_t788445468 * L_8 = XmlAttributes_get_XmlAnyElements_m2687952373(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
Il2CppObject * L_9 = VirtFuncInvoker0< Il2CppObject * >::Invoke(4 /* System.Collections.IEnumerator System.Collections.CollectionBase::GetEnumerator() */, L_8);
V_2 = L_9;
}
IL_0024:
try
{ // begin try (depth: 1)
{
goto IL_00ee;
}
IL_0029:
{
Il2CppObject * L_10 = V_2;
NullCheck(L_10);
Il2CppObject * L_11 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_10);
V_1 = ((XmlAnyElementAttribute_t3085069619 *)CastclassClass(L_11, XmlAnyElementAttribute_t3085069619_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_12 = ___member;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlElement_t3562928333_0_0_0_var), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_14 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_13, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_15 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_15, L_12, L_14, /*hidden argument*/NULL);
V_3 = L_15;
XmlAnyElementAttribute_t3085069619 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = XmlAnyElementAttribute_get_Name_m2515841757(L_16, /*hidden argument*/NULL);
NullCheck(L_17);
int32_t L_18 = String_get_Length_m2979997331(L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0092;
}
}
IL_005b:
{
XmlTypeMapElementInfo_t3184170653 * L_19 = V_3;
XmlAnyElementAttribute_t3085069619 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = XmlAnyElementAttribute_get_Name_m2515841757(L_20, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_22 = XmlConvert_EncodeLocalName_m3492384786(NULL /*static, unused*/, L_21, /*hidden argument*/NULL);
NullCheck(L_19);
XmlTypeMapElementInfo_set_ElementName_m3071025056(L_19, L_22, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_23 = V_3;
XmlAnyElementAttribute_t3085069619 * L_24 = V_1;
NullCheck(L_24);
String_t* L_25 = XmlAnyElementAttribute_get_Namespace_m946497579(L_24, /*hidden argument*/NULL);
G_B4_0 = L_23;
if (!L_25)
{
G_B5_0 = L_23;
goto IL_0083;
}
}
IL_0078:
{
XmlAnyElementAttribute_t3085069619 * L_26 = V_1;
NullCheck(L_26);
String_t* L_27 = XmlAnyElementAttribute_get_Namespace_m946497579(L_26, /*hidden argument*/NULL);
G_B6_0 = L_27;
G_B6_1 = G_B4_0;
goto IL_0088;
}
IL_0083:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_28 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
G_B6_0 = L_28;
G_B6_1 = G_B5_0;
}
IL_0088:
{
NullCheck(G_B6_1);
XmlTypeMapElementInfo_set_Namespace_m2703770860(G_B6_1, G_B6_0, /*hidden argument*/NULL);
goto IL_00e6;
}
IL_0092:
{
XmlTypeMapElementInfo_t3184170653 * L_29 = V_3;
NullCheck(L_29);
XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m3817477304(L_29, (bool)1, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_30 = V_3;
String_t* L_31 = ___defaultNamespace;
NullCheck(L_30);
XmlTypeMapElementInfo_set_Namespace_m2703770860(L_30, L_31, /*hidden argument*/NULL);
XmlAnyElementAttribute_t3085069619 * L_32 = V_1;
NullCheck(L_32);
String_t* L_33 = XmlAnyElementAttribute_get_Namespace_m946497579(L_32, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_00e6;
}
}
IL_00ab:
{
StringU5BU5D_t2956870243* L_34 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)5));
NullCheck(L_34);
IL2CPP_ARRAY_BOUNDS_CHECK(L_34, 0);
ArrayElementTypeCheck (L_34, _stringLiteral3963298707);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3963298707);
StringU5BU5D_t2956870243* L_35 = L_34;
XmlReflectionMember_t891190874 * L_36 = ___rmember;
NullCheck(L_36);
String_t* L_37 = XmlReflectionMember_get_MemberName_m2282802424(L_36, /*hidden argument*/NULL);
NullCheck(L_35);
IL2CPP_ARRAY_BOUNDS_CHECK(L_35, 1);
ArrayElementTypeCheck (L_35, L_37);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_37);
StringU5BU5D_t2956870243* L_38 = L_35;
NullCheck(L_38);
IL2CPP_ARRAY_BOUNDS_CHECK(L_38, 2);
ArrayElementTypeCheck (L_38, _stringLiteral3515659282);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral3515659282);
StringU5BU5D_t2956870243* L_39 = L_38;
XmlAnyElementAttribute_t3085069619 * L_40 = V_1;
NullCheck(L_40);
String_t* L_41 = XmlAnyElementAttribute_get_Namespace_m946497579(L_40, /*hidden argument*/NULL);
NullCheck(L_39);
IL2CPP_ARRAY_BOUNDS_CHECK(L_39, 3);
ArrayElementTypeCheck (L_39, L_41);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_41);
StringU5BU5D_t2956870243* L_42 = L_39;
NullCheck(L_42);
IL2CPP_ARRAY_BOUNDS_CHECK(L_42, 4);
ArrayElementTypeCheck (L_42, _stringLiteral3685191824);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3685191824);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_43 = String_Concat_m21867311(NULL /*static, unused*/, L_42, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_44 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_44, L_43, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44);
}
IL_00e6:
{
XmlTypeMapElementInfoList_t3690603483 * L_45 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_46 = V_3;
NullCheck(L_45);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_45, L_46);
}
IL_00ee:
{
Il2CppObject * L_47 = V_2;
NullCheck(L_47);
bool L_48 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_47);
if (L_48)
{
goto IL_0029;
}
}
IL_00f9:
{
IL2CPP_LEAVE(0x113, FINALLY_00fe);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00fe;
}
FINALLY_00fe:
{ // begin finally (depth: 1)
{
Il2CppObject * L_49 = V_2;
V_4 = ((Il2CppObject *)IsInst(L_49, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_50 = V_4;
if (L_50)
{
goto IL_010b;
}
}
IL_010a:
{
IL2CPP_END_FINALLY(254)
}
IL_010b:
{
Il2CppObject * L_51 = V_4;
NullCheck(L_51);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_51);
IL2CPP_END_FINALLY(254)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(254)
{
IL2CPP_JUMP_TBL(0x113, IL_0113)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0113:
{
XmlTypeMapElementInfoList_t3690603483 * L_52 = V_0;
return L_52;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::ImportTextElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList,System.Type,System.Xml.Serialization.XmlTypeMapMemberElement,System.Xml.Serialization.XmlAttributes,System.String)
extern const Il2CppType* XmlNode_t3592213601_0_0_0_var;
extern const Il2CppType* XmlText_t3592383372_0_0_0_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4264318944;
extern Il2CppCodeGenString* _stringLiteral3671538461;
extern const uint32_t XmlReflectionImporter_ImportTextElementInfo_m1591165834_MetadataUsageId;
extern "C" void XmlReflectionImporter_ImportTextElementInfo_m1591165834 (XmlReflectionImporter_t3346079314 * __this, XmlTypeMapElementInfoList_t3690603483 * ___list, Type_t * ___defaultType, XmlTypeMapMemberElement_t1386704533 * ___member, XmlAttributes_t2892492364 * ___atts, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_ImportTextElementInfo_m1591165834_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_1 = NULL;
{
XmlAttributes_t2892492364 * L_0 = ___atts;
NullCheck(L_0);
XmlTextAttribute_t1613374166 * L_1 = XmlAttributes_get_XmlText_m1655653501(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_013e;
}
}
{
XmlTypeMapMemberElement_t1386704533 * L_2 = ___member;
NullCheck(L_2);
XmlTypeMapMemberElement_set_IsXmlTextCollector_m3131336969(L_2, (bool)1, /*hidden argument*/NULL);
XmlAttributes_t2892492364 * L_3 = ___atts;
NullCheck(L_3);
XmlTextAttribute_t1613374166 * L_4 = XmlAttributes_get_XmlText_m1655653501(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
Type_t * L_5 = XmlTextAttribute_get_Type_m1681470744(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_006e;
}
}
{
Type_t * L_6 = ___defaultType;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_7 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
V_0 = L_7;
TypeData_t3837952962 * L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = TypeData_get_SchemaType_m1693934194(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_9) == ((int32_t)1)))
{
goto IL_0043;
}
}
{
TypeData_t3837952962 * L_10 = V_0;
NullCheck(L_10);
int32_t L_11 = TypeData_get_SchemaType_m1693934194(L_10, /*hidden argument*/NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)2))))
{
goto IL_0060;
}
}
IL_0043:
{
XmlAttributes_t2892492364 * L_12 = ___atts;
NullCheck(L_12);
XmlTextAttribute_t1613374166 * L_13 = XmlAttributes_get_XmlText_m1655653501(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
Type_t * L_14 = XmlTextAttribute_get_Type_m1681470744(L_13, /*hidden argument*/NULL);
Type_t * L_15 = ___defaultType;
if ((((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))
{
goto IL_0060;
}
}
{
InvalidOperationException_t2420574324 * L_16 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_16, _stringLiteral4264318944, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16);
}
IL_0060:
{
XmlAttributes_t2892492364 * L_17 = ___atts;
NullCheck(L_17);
XmlTextAttribute_t1613374166 * L_18 = XmlAttributes_get_XmlText_m1655653501(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
Type_t * L_19 = XmlTextAttribute_get_Type_m1681470744(L_18, /*hidden argument*/NULL);
___defaultType = L_19;
}
IL_006e:
{
Type_t * L_20 = ___defaultType;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_21 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNode_t3592213601_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_20) == ((Il2CppObject*)(Type_t *)L_21))))
{
goto IL_008a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlText_t3592383372_0_0_0_var), /*hidden argument*/NULL);
___defaultType = L_22;
}
IL_008a:
{
XmlTypeMapMemberElement_t1386704533 * L_23 = ___member;
Type_t * L_24 = ___defaultType;
XmlAttributes_t2892492364 * L_25 = ___atts;
NullCheck(L_25);
XmlTextAttribute_t1613374166 * L_26 = XmlAttributes_get_XmlText_m1655653501(L_25, /*hidden argument*/NULL);
NullCheck(L_26);
String_t* L_27 = XmlTextAttribute_get_DataType_m3203282297(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_28 = TypeTranslator_GetTypeData_m4275513353(NULL /*static, unused*/, L_24, L_27, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_29 = (XmlTypeMapElementInfo_t3184170653 *)il2cpp_codegen_object_new(XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var);
XmlTypeMapElementInfo__ctor_m3598290163(L_29, L_23, L_28, /*hidden argument*/NULL);
V_1 = L_29;
XmlTypeMapElementInfo_t3184170653 * L_30 = V_1;
NullCheck(L_30);
TypeData_t3837952962 * L_31 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_30, /*hidden argument*/NULL);
NullCheck(L_31);
int32_t L_32 = TypeData_get_SchemaType_m1693934194(L_31, /*hidden argument*/NULL);
if ((((int32_t)L_32) == ((int32_t)1)))
{
goto IL_0108;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_33 = V_1;
NullCheck(L_33);
TypeData_t3837952962 * L_34 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_33, /*hidden argument*/NULL);
NullCheck(L_34);
int32_t L_35 = TypeData_get_SchemaType_m1693934194(L_34, /*hidden argument*/NULL);
if ((((int32_t)L_35) == ((int32_t)2)))
{
goto IL_0108;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_36 = V_1;
NullCheck(L_36);
TypeData_t3837952962 * L_37 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_36, /*hidden argument*/NULL);
NullCheck(L_37);
int32_t L_38 = TypeData_get_SchemaType_m1693934194(L_37, /*hidden argument*/NULL);
if ((((int32_t)L_38) == ((int32_t)6)))
{
goto IL_0108;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_39 = V_1;
NullCheck(L_39);
TypeData_t3837952962 * L_40 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_39, /*hidden argument*/NULL);
NullCheck(L_40);
int32_t L_41 = TypeData_get_SchemaType_m1693934194(L_40, /*hidden argument*/NULL);
if ((!(((uint32_t)L_41) == ((uint32_t)3))))
{
goto IL_00fd;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_42 = V_1;
NullCheck(L_42);
TypeData_t3837952962 * L_43 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_42, /*hidden argument*/NULL);
NullCheck(L_43);
TypeData_t3837952962 * L_44 = TypeData_get_ListItemTypeData_m3943692862(L_43, /*hidden argument*/NULL);
NullCheck(L_44);
int32_t L_45 = TypeData_get_SchemaType_m1693934194(L_44, /*hidden argument*/NULL);
if ((((int32_t)L_45) == ((int32_t)6)))
{
goto IL_0108;
}
}
IL_00fd:
{
InvalidOperationException_t2420574324 * L_46 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_46, _stringLiteral3671538461, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46);
}
IL_0108:
{
XmlTypeMapElementInfo_t3184170653 * L_47 = V_1;
NullCheck(L_47);
TypeData_t3837952962 * L_48 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_47, /*hidden argument*/NULL);
NullCheck(L_48);
bool L_49 = TypeData_get_IsComplexType_m115025350(L_48, /*hidden argument*/NULL);
if (!L_49)
{
goto IL_0128;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_50 = V_1;
Type_t * L_51 = ___defaultType;
String_t* L_52 = ___defaultNamespace;
XmlTypeMapping_t988104027 * L_53 = XmlReflectionImporter_ImportTypeMapping_m4129187674(__this, L_51, (XmlRootAttribute_t2483700417 *)NULL, L_52, /*hidden argument*/NULL);
NullCheck(L_50);
XmlTypeMapElementInfo_set_MappedType_m1791664461(L_50, L_53, /*hidden argument*/NULL);
}
IL_0128:
{
XmlTypeMapElementInfo_t3184170653 * L_54 = V_1;
NullCheck(L_54);
XmlTypeMapElementInfo_set_IsTextElement_m350767095(L_54, (bool)1, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_55 = V_1;
NullCheck(L_55);
XmlTypeMapElementInfo_set_WrappedElement_m1591432437(L_55, (bool)0, /*hidden argument*/NULL);
XmlTypeMapElementInfoList_t3690603483 * L_56 = ___list;
XmlTypeMapElementInfo_t3184170653 * L_57 = V_1;
NullCheck(L_56);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_56, L_57);
}
IL_013e:
{
return;
}
}
// System.Boolean System.Xml.Serialization.XmlReflectionImporter::CanBeNull(System.Xml.Serialization.TypeData)
extern "C" bool XmlReflectionImporter_CanBeNull_m8119077 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___type, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
TypeData_t3837952962 * L_0 = ___type;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(36 /* System.Boolean System.Type::get_IsValueType() */, L_1);
if (!L_2)
{
goto IL_0018;
}
}
{
TypeData_t3837952962 * L_3 = ___type;
NullCheck(L_3);
bool L_4 = TypeData_get_IsNullable_m3895772871(L_3, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_4));
goto IL_0019;
}
IL_0018:
{
G_B3_0 = 1;
}
IL_0019:
{
return (bool)G_B3_0;
}
}
// System.Void System.Xml.Serialization.XmlReflectionImporter::IncludeType(System.Type)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* ArgumentNullException_t3214793280_il2cpp_TypeInfo_var;
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3575610;
extern const uint32_t XmlReflectionImporter_IncludeType_m646437332_MetadataUsageId;
extern "C" void XmlReflectionImporter_IncludeType_m646437332 (XmlReflectionImporter_t3346079314 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_IncludeType_m646437332_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapping_t988104027 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Type_t * L_0 = ___type;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t3214793280 * L_1 = (ArgumentNullException_t3214793280 *)il2cpp_codegen_object_new(ArgumentNullException_t3214793280_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m135444188(L_1, _stringLiteral3575610, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
ArrayList_t2121638921 * L_2 = __this->get_includedTypes_2();
if (L_2)
{
goto IL_0027;
}
}
{
ArrayList_t2121638921 * L_3 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_3, /*hidden argument*/NULL);
__this->set_includedTypes_2(L_3);
}
IL_0027:
{
ArrayList_t2121638921 * L_4 = __this->get_includedTypes_2();
Type_t * L_5 = ___type;
NullCheck(L_4);
bool L_6 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_4, L_5);
if (L_6)
{
goto IL_0045;
}
}
{
ArrayList_t2121638921 * L_7 = __this->get_includedTypes_2();
Type_t * L_8 = ___type;
NullCheck(L_7);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_7, L_8);
}
IL_0045:
{
ArrayList_t2121638921 * L_9 = __this->get_relatedMaps_5();
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_9);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_00cc;
}
}
{
ArrayList_t2121638921 * L_11 = __this->get_relatedMaps_5();
NullCheck(L_11);
Il2CppObject * L_12 = VirtFuncInvoker0< Il2CppObject * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_11);
NullCheck(((ArrayList_t2121638921 *)CastclassClass(L_12, ArrayList_t2121638921_il2cpp_TypeInfo_var)));
Il2CppObject * L_13 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, ((ArrayList_t2121638921 *)CastclassClass(L_12, ArrayList_t2121638921_il2cpp_TypeInfo_var)));
V_1 = L_13;
}
IL_006c:
try
{ // begin try (depth: 1)
{
goto IL_00aa;
}
IL_0071:
{
Il2CppObject * L_14 = V_1;
NullCheck(L_14);
Il2CppObject * L_15 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_14);
V_0 = ((XmlTypeMapping_t988104027 *)CastclassClass(L_15, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_16 = V_0;
NullCheck(L_16);
TypeData_t3837952962 * L_17 = XmlTypeMapping_get_TypeData_m3898113510(L_16, /*hidden argument*/NULL);
NullCheck(L_17);
Type_t * L_18 = TypeData_get_Type_m2191724548(L_17, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19))))
{
goto IL_00aa;
}
}
IL_0097:
{
XmlTypeMapping_t988104027 * L_20 = V_0;
NullCheck(L_20);
ArrayList_t2121638921 * L_21 = XmlTypeMapping_get_DerivedTypes_m1594465991(L_20, /*hidden argument*/NULL);
Type_t * L_22 = ___type;
XmlTypeMapping_t988104027 * L_23 = XmlReflectionImporter_ImportTypeMapping_m1477374953(__this, L_22, /*hidden argument*/NULL);
NullCheck(L_21);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_21, L_23);
}
IL_00aa:
{
Il2CppObject * L_24 = V_1;
NullCheck(L_24);
bool L_25 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_24);
if (L_25)
{
goto IL_0071;
}
}
IL_00b5:
{
IL2CPP_LEAVE(0xCC, FINALLY_00ba);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00ba;
}
FINALLY_00ba:
{ // begin finally (depth: 1)
{
Il2CppObject * L_26 = V_1;
V_2 = ((Il2CppObject *)IsInst(L_26, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_27 = V_2;
if (L_27)
{
goto IL_00c5;
}
}
IL_00c4:
{
IL2CPP_END_FINALLY(186)
}
IL_00c5:
{
Il2CppObject * L_28 = V_2;
NullCheck(L_28);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_28);
IL2CPP_END_FINALLY(186)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(186)
{
IL2CPP_JUMP_TBL(0xCC, IL_00cc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00cc:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlReflectionImporter::GetDefaultValue(System.Xml.Serialization.TypeData,System.Object)
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral103;
extern Il2CppCodeGenString* _stringLiteral100;
extern Il2CppCodeGenString* _stringLiteral156295381;
extern const uint32_t XmlReflectionImporter_GetDefaultValue_m917009300_MetadataUsageId;
extern "C" Il2CppObject * XmlReflectionImporter_GetDefaultValue_m917009300 (XmlReflectionImporter_t3346079314 * __this, TypeData_t3837952962 * ___typeData, Il2CppObject * ___defaultValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionImporter_GetDefaultValue_m917009300_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
Il2CppObject * L_0 = ___defaultValue;
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t491814586_il2cpp_TypeInfo_var);
DBNull_t491814586 * L_1 = ((DBNull_t491814586_StaticFields*)DBNull_t491814586_il2cpp_TypeInfo_var->static_fields)->get_Value_0();
if ((((Il2CppObject*)(Il2CppObject *)L_0) == ((Il2CppObject*)(DBNull_t491814586 *)L_1)))
{
goto IL_0017;
}
}
{
TypeData_t3837952962 * L_2 = ___typeData;
NullCheck(L_2);
int32_t L_3 = TypeData_get_SchemaType_m1693934194(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0019;
}
}
IL_0017:
{
Il2CppObject * L_4 = ___defaultValue;
return L_4;
}
IL_0019:
{
TypeData_t3837952962 * L_5 = ___typeData;
NullCheck(L_5);
Type_t * L_6 = TypeData_get_Type_m2191724548(L_5, /*hidden argument*/NULL);
Il2CppObject * L_7 = ___defaultValue;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
String_t* L_8 = Enum_Format_m1097709535(NULL /*static, unused*/, L_6, L_7, _stringLiteral103, /*hidden argument*/NULL);
V_0 = L_8;
TypeData_t3837952962 * L_9 = ___typeData;
NullCheck(L_9);
Type_t * L_10 = TypeData_get_Type_m2191724548(L_9, /*hidden argument*/NULL);
Il2CppObject * L_11 = ___defaultValue;
String_t* L_12 = Enum_Format_m1097709535(NULL /*static, unused*/, L_10, L_11, _stringLiteral100, /*hidden argument*/NULL);
V_1 = L_12;
String_t* L_13 = V_0;
String_t* L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_15 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0078;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_16 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_17 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)2));
Il2CppObject * L_18 = ___defaultValue;
NullCheck(L_17);
IL2CPP_ARRAY_BOUNDS_CHECK(L_17, 0);
ArrayElementTypeCheck (L_17, L_18);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_18);
ObjectU5BU5D_t11523773* L_19 = L_17;
Il2CppObject * L_20 = ___defaultValue;
NullCheck(L_20);
Type_t * L_21 = Object_GetType_m2022236990(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_21);
NullCheck(L_19);
IL2CPP_ARRAY_BOUNDS_CHECK(L_19, 1);
ArrayElementTypeCheck (L_19, L_22);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_22);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_23 = String_Format_m3351777162(NULL /*static, unused*/, L_16, _stringLiteral156295381, L_19, /*hidden argument*/NULL);
V_2 = L_23;
String_t* L_24 = V_2;
InvalidOperationException_t2420574324 * L_25 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25);
}
IL_0078:
{
Il2CppObject * L_26 = ___defaultValue;
return L_26;
}
}
// System.Void System.Xml.Serialization.XmlReflectionMember::.ctor(System.String,System.Type,System.Xml.Serialization.XmlAttributes)
extern "C" void XmlReflectionMember__ctor_m561245972 (XmlReflectionMember_t891190874 * __this, String_t* ___name, Type_t * ___type, XmlAttributes_t2892492364 * ___attributes, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
String_t* L_0 = ___name;
__this->set_memberName_1(L_0);
Type_t * L_1 = ___type;
__this->set_memberType_2(L_1);
XmlAttributes_t2892492364 * L_2 = ___attributes;
__this->set_xmlAttributes_3(L_2);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlReflectionMember::get_IsReturnValue()
extern "C" bool XmlReflectionMember_get_IsReturnValue_m1210938081 (XmlReflectionMember_t891190874 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isReturnValue_0();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlReflectionMember::get_MemberName()
extern "C" String_t* XmlReflectionMember_get_MemberName_m2282802424 (XmlReflectionMember_t891190874 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_memberName_1();
return L_0;
}
}
// System.Type System.Xml.Serialization.XmlReflectionMember::get_MemberType()
extern "C" Type_t * XmlReflectionMember_get_MemberType_m2020503070 (XmlReflectionMember_t891190874 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_memberType_2();
return L_0;
}
}
// System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::get_XmlAttributes()
extern TypeInfo* XmlAttributes_t2892492364_il2cpp_TypeInfo_var;
extern const uint32_t XmlReflectionMember_get_XmlAttributes_m4015138473_MetadataUsageId;
extern "C" XmlAttributes_t2892492364 * XmlReflectionMember_get_XmlAttributes_m4015138473 (XmlReflectionMember_t891190874 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlReflectionMember_get_XmlAttributes_m4015138473_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlAttributes_t2892492364 * L_0 = __this->get_xmlAttributes_3();
if (L_0)
{
goto IL_0016;
}
}
{
XmlAttributes_t2892492364 * L_1 = (XmlAttributes_t2892492364 *)il2cpp_codegen_object_new(XmlAttributes_t2892492364_il2cpp_TypeInfo_var);
XmlAttributes__ctor_m2188740779(L_1, /*hidden argument*/NULL);
__this->set_xmlAttributes_3(L_1);
}
IL_0016:
{
XmlAttributes_t2892492364 * L_2 = __this->get_xmlAttributes_3();
return L_2;
}
}
// System.Type System.Xml.Serialization.XmlReflectionMember::get_DeclaringType()
extern "C" Type_t * XmlReflectionMember_get_DeclaringType_m4174777977 (XmlReflectionMember_t891190874 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_declaringType_4();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlReflectionMember::set_DeclaringType(System.Type)
extern "C" void XmlReflectionMember_set_DeclaringType_m3595081402 (XmlReflectionMember_t891190874 * __this, Type_t * ___value, const MethodInfo* method)
{
{
Type_t * L_0 = ___value;
__this->set_declaringType_4(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::.ctor(System.String)
extern "C" void XmlRootAttribute__ctor_m4284065112 (XmlRootAttribute_t2483700417 * __this, String_t* ___elementName, const MethodInfo* method)
{
{
__this->set_isNullable_2((bool)1);
Attribute__ctor_m2985353781(__this, /*hidden argument*/NULL);
String_t* L_0 = ___elementName;
__this->set_elementName_1(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlRootAttribute::get_ElementName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlRootAttribute_get_ElementName_m2482075945_MetadataUsageId;
extern "C" String_t* XmlRootAttribute_get_ElementName_m2482075945 (XmlRootAttribute_t2483700417 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlRootAttribute_get_ElementName_m2482075945_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_elementName_1();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_elementName_1();
return L_2;
}
}
// System.Boolean System.Xml.Serialization.XmlRootAttribute::get_IsNullable()
extern "C" bool XmlRootAttribute_get_IsNullable_m850359814 (XmlRootAttribute_t2483700417 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_isNullable_2();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlRootAttribute::get_Namespace()
extern "C" String_t* XmlRootAttribute_get_Namespace_m4253785629 (XmlRootAttribute_t2483700417 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_3();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::set_Namespace(System.String)
extern "C" void XmlRootAttribute_set_Namespace_m3156654716 (XmlRootAttribute_t2483700417 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set_ns_3(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlRootAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral2702457;
extern const uint32_t XmlRootAttribute_AddKeyHash_m1498665508_MetadataUsageId;
extern "C" void XmlRootAttribute_AddKeyHash_m1498665508 (XmlRootAttribute_t2483700417 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlRootAttribute_AddKeyHash_m1498665508_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2702457, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_3();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_elementName_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
String_t* L_6 = __this->get_dataType_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_5, 3, L_6, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_7 = ___sb;
bool L_8 = __this->get_isNullable_2();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_7, 4, L_8, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_9 = ___sb;
NullCheck(L_9);
StringBuilder_Append_m2143093878(L_9, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlSchemaProviderAttribute::get_MethodName()
extern "C" String_t* XmlSchemaProviderAttribute_get_MethodName_m3589330908 (XmlSchemaProviderAttribute_t1971034033 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__methodName_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializableMapping::.ctor(System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String)
extern const Il2CppType* XmlSchemaProviderAttribute_t1971034033_0_0_0_var;
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern const Il2CppType* XmlSchemaComplexType_t1860629407_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaProviderAttribute_t1971034033_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaSet_t3827173367_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaComplexType_t1860629407_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSchemaU5BU5D_t3223231528_il2cpp_TypeInfo_var;
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2849771511;
extern Il2CppCodeGenString* _stringLiteral343043805;
extern Il2CppCodeGenString* _stringLiteral709826000;
extern Il2CppCodeGenString* _stringLiteral2870637165;
extern Il2CppCodeGenString* _stringLiteral1254247575;
extern const uint32_t XmlSerializableMapping__ctor_m1941425557_MetadataUsageId;
extern "C" void XmlSerializableMapping__ctor_m1941425557 (XmlSerializableMapping_t3919399670 * __this, String_t* ___elementName, String_t* ___ns, TypeData_t3837952962 * ___typeData, String_t* ___xmlType, String_t* ___xmlTypeNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializableMapping__ctor_m1941425557_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSchemaProviderAttribute_t1971034033 * V_0 = NULL;
String_t* V_1 = NULL;
MethodInfo_t * V_2 = NULL;
XmlSchemaSet_t3827173367 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
XmlSchemaU5BU5D_t3223231528* V_5 = NULL;
Il2CppObject * V_6 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
String_t* G_B18_0 = NULL;
String_t* G_B18_1 = NULL;
XmlSerializableMapping_t3919399670 * G_B18_2 = NULL;
String_t* G_B17_0 = NULL;
String_t* G_B17_1 = NULL;
XmlSerializableMapping_t3919399670 * G_B17_2 = NULL;
{
String_t* L_0 = ___elementName;
String_t* L_1 = ___ns;
TypeData_t3837952962 * L_2 = ___typeData;
String_t* L_3 = ___xmlType;
String_t* L_4 = ___xmlTypeNamespace;
XmlTypeMapping__ctor_m1515273402(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
TypeData_t3837952962 * L_5 = ___typeData;
NullCheck(L_5);
Type_t * L_6 = TypeData_get_Type_m2191724548(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlSchemaProviderAttribute_t1971034033_0_0_0_var), /*hidden argument*/NULL);
Attribute_t498693649 * L_8 = Attribute_GetCustomAttribute_m506754809(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL);
V_0 = ((XmlSchemaProviderAttribute_t1971034033 *)CastclassSealed(L_8, XmlSchemaProviderAttribute_t1971034033_il2cpp_TypeInfo_var));
XmlSchemaProviderAttribute_t1971034033 * L_9 = V_0;
if (!L_9)
{
goto IL_01f1;
}
}
{
XmlSchemaProviderAttribute_t1971034033 * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = XmlSchemaProviderAttribute_get_MethodName_m3589330908(L_10, /*hidden argument*/NULL);
V_1 = L_11;
TypeData_t3837952962 * L_12 = ___typeData;
NullCheck(L_12);
Type_t * L_13 = TypeData_get_Type_m2191724548(L_12, /*hidden argument*/NULL);
String_t* L_14 = V_1;
NullCheck(L_13);
MethodInfo_t * L_15 = VirtFuncInvoker2< MethodInfo_t *, String_t*, int32_t >::Invoke(54 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) */, L_13, L_14, ((int32_t)88));
V_2 = L_15;
MethodInfo_t * L_16 = V_2;
if (L_16)
{
goto IL_0061;
}
}
{
TypeData_t3837952962 * L_17 = ___typeData;
NullCheck(L_17);
Type_t * L_18 = TypeData_get_Type_m2191724548(L_17, /*hidden argument*/NULL);
String_t* L_19 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_20 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral2849771511, L_18, L_19, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_21 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
IL_0061:
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
MethodInfo_t * L_23 = V_2;
NullCheck(L_23);
Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_23);
NullCheck(L_22);
bool L_25 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_22, L_24);
if (L_25)
{
goto IL_00a6;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_26 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlSchemaComplexType_t1860629407_0_0_0_var), /*hidden argument*/NULL);
MethodInfo_t * L_27 = V_2;
NullCheck(L_27);
Type_t * L_28 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_27);
NullCheck(L_26);
bool L_29 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_26, L_28);
if (L_29)
{
goto IL_00a6;
}
}
{
String_t* L_30 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_31 = String_Format_m2471250780(NULL /*static, unused*/, _stringLiteral343043805, L_30, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_32 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_32, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32);
}
IL_00a6:
{
XmlSchemaSet_t3827173367 * L_33 = (XmlSchemaSet_t3827173367 *)il2cpp_codegen_object_new(XmlSchemaSet_t3827173367_il2cpp_TypeInfo_var);
XmlSchemaSet__ctor_m1520080836(L_33, /*hidden argument*/NULL);
V_3 = L_33;
MethodInfo_t * L_34 = V_2;
ObjectU5BU5D_t11523773* L_35 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
XmlSchemaSet_t3827173367 * L_36 = V_3;
NullCheck(L_35);
IL2CPP_ARRAY_BOUNDS_CHECK(L_35, 0);
ArrayElementTypeCheck (L_35, L_36);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_36);
NullCheck(L_34);
Il2CppObject * L_37 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_34, NULL, L_35);
V_4 = L_37;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName_t176365656 * L_38 = ((XmlQualifiedName_t176365656_StaticFields*)XmlQualifiedName_t176365656_il2cpp_TypeInfo_var->static_fields)->get_Empty_0();
__this->set__schemaTypeName_17(L_38);
Il2CppObject * L_39 = V_4;
if (L_39)
{
goto IL_00d2;
}
}
{
return;
}
IL_00d2:
{
Il2CppObject * L_40 = V_4;
if (!((XmlSchemaComplexType_t1860629407 *)IsInstClass(L_40, XmlSchemaComplexType_t1860629407_il2cpp_TypeInfo_var)))
{
goto IL_012a;
}
}
{
Il2CppObject * L_41 = V_4;
__this->set__schemaType_16(((XmlSchemaComplexType_t1860629407 *)CastclassClass(L_41, XmlSchemaComplexType_t1860629407_il2cpp_TypeInfo_var)));
XmlSchemaComplexType_t1860629407 * L_42 = __this->get__schemaType_16();
NullCheck(L_42);
XmlQualifiedName_t176365656 * L_43 = XmlSchemaType_get_QualifiedName_m3059613359(L_42, /*hidden argument*/NULL);
NullCheck(L_43);
bool L_44 = XmlQualifiedName_get_IsEmpty_m107427003(L_43, /*hidden argument*/NULL);
if (L_44)
{
goto IL_0116;
}
}
{
XmlSchemaComplexType_t1860629407 * L_45 = __this->get__schemaType_16();
NullCheck(L_45);
XmlQualifiedName_t176365656 * L_46 = XmlSchemaType_get_QualifiedName_m3059613359(L_45, /*hidden argument*/NULL);
__this->set__schemaTypeName_17(L_46);
goto IL_0125;
}
IL_0116:
{
String_t* L_47 = ___xmlType;
String_t* L_48 = ___xmlTypeNamespace;
XmlQualifiedName_t176365656 * L_49 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_49, L_47, L_48, /*hidden argument*/NULL);
__this->set__schemaTypeName_17(L_49);
}
IL_0125:
{
goto IL_0164;
}
IL_012a:
{
Il2CppObject * L_50 = V_4;
if (!((XmlQualifiedName_t176365656 *)IsInstClass(L_50, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)))
{
goto IL_0148;
}
}
{
Il2CppObject * L_51 = V_4;
__this->set__schemaTypeName_17(((XmlQualifiedName_t176365656 *)CastclassClass(L_51, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)));
goto IL_0164;
}
IL_0148:
{
TypeData_t3837952962 * L_52 = ___typeData;
NullCheck(L_52);
Type_t * L_53 = TypeData_get_Type_m2191724548(L_52, /*hidden argument*/NULL);
NullCheck(L_53);
String_t* L_54 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_53);
String_t* L_55 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_56 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral709826000, L_54, L_55, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_57 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_57, L_56, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_57);
}
IL_0164:
{
XmlQualifiedName_t176365656 * L_58 = __this->get__schemaTypeName_17();
NullCheck(L_58);
String_t* L_59 = XmlQualifiedName_get_Name_m607016698(L_58, /*hidden argument*/NULL);
String_t* L_60 = XmlMapping_get_Namespace_m4151275177(__this, /*hidden argument*/NULL);
String_t* L_61 = L_60;
G_B17_0 = L_61;
G_B17_1 = L_59;
G_B17_2 = __this;
if (L_61)
{
G_B18_0 = L_61;
G_B18_1 = L_59;
G_B18_2 = __this;
goto IL_0188;
}
}
{
XmlQualifiedName_t176365656 * L_62 = __this->get__schemaTypeName_17();
NullCheck(L_62);
String_t* L_63 = XmlQualifiedName_get_Namespace_m2987642414(L_62, /*hidden argument*/NULL);
G_B18_0 = L_63;
G_B18_1 = G_B17_1;
G_B18_2 = G_B17_2;
}
IL_0188:
{
XmlQualifiedName_t176365656 * L_64 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_64, G_B18_1, G_B18_0, /*hidden argument*/NULL);
NullCheck(G_B18_2);
XmlTypeMapping_UpdateRoot_m2535486701(G_B18_2, L_64, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_65 = __this->get__schemaTypeName_17();
NullCheck(L_65);
String_t* L_66 = XmlQualifiedName_get_Namespace_m2987642414(L_65, /*hidden argument*/NULL);
XmlTypeMapping_set_XmlTypeNamespace_m1375523783(__this, L_66, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_67 = __this->get__schemaTypeName_17();
NullCheck(L_67);
String_t* L_68 = XmlQualifiedName_get_Name_m607016698(L_67, /*hidden argument*/NULL);
XmlTypeMapping_set_XmlType_m4239717312(__this, L_68, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_69 = __this->get__schemaTypeName_17();
NullCheck(L_69);
bool L_70 = XmlQualifiedName_get_IsEmpty_m107427003(L_69, /*hidden argument*/NULL);
if (L_70)
{
goto IL_01f0;
}
}
{
XmlSchemaSet_t3827173367 * L_71 = V_3;
NullCheck(L_71);
int32_t L_72 = XmlSchemaSet_get_Count_m3097640102(L_71, /*hidden argument*/NULL);
if ((((int32_t)L_72) <= ((int32_t)0)))
{
goto IL_01f0;
}
}
{
XmlSchemaSet_t3827173367 * L_73 = V_3;
NullCheck(L_73);
int32_t L_74 = XmlSchemaSet_get_Count_m3097640102(L_73, /*hidden argument*/NULL);
V_5 = ((XmlSchemaU5BU5D_t3223231528*)SZArrayNew(XmlSchemaU5BU5D_t3223231528_il2cpp_TypeInfo_var, (uint32_t)L_74));
XmlSchemaSet_t3827173367 * L_75 = V_3;
XmlSchemaU5BU5D_t3223231528* L_76 = V_5;
NullCheck(L_75);
XmlSchemaSet_CopyTo_m2581298744(L_75, L_76, 0, /*hidden argument*/NULL);
XmlSchemaU5BU5D_t3223231528* L_77 = V_5;
NullCheck(L_77);
IL2CPP_ARRAY_BOUNDS_CHECK(L_77, 0);
int32_t L_78 = 0;
__this->set__schema_15(((L_77)->GetAt(static_cast<il2cpp_array_size_t>(L_78))));
}
IL_01f0:
{
return;
}
IL_01f1:
{
TypeData_t3837952962 * L_79 = ___typeData;
NullCheck(L_79);
Type_t * L_80 = TypeData_get_Type_m2191724548(L_79, /*hidden argument*/NULL);
Il2CppObject * L_81 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_80, (bool)1, /*hidden argument*/NULL);
V_6 = ((Il2CppObject *)Castclass(L_81, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var));
}
IL_0204:
try
{ // begin try (depth: 1)
Il2CppObject * L_82 = V_6;
NullCheck(L_82);
XmlSchema_t1932230565 * L_83 = InterfaceFuncInvoker0< XmlSchema_t1932230565 * >::Invoke(0 /* System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable::GetSchema() */, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var, L_82);
__this->set__schema_15(L_83);
goto IL_021c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t1967233988_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_0216;
throw e;
}
CATCH_0216:
{ // begin catch(System.Exception)
goto IL_021c;
} // end catch (depth: 1)
IL_021c:
{
XmlSchema_t1932230565 * L_84 = __this->get__schema_15();
if (!L_84)
{
goto IL_026c;
}
}
{
XmlSchema_t1932230565 * L_85 = __this->get__schema_15();
NullCheck(L_85);
String_t* L_86 = XmlSchema_get_Id_m792700229(L_85, /*hidden argument*/NULL);
if (!L_86)
{
goto IL_024c;
}
}
{
XmlSchema_t1932230565 * L_87 = __this->get__schema_15();
NullCheck(L_87);
String_t* L_88 = XmlSchema_get_Id_m792700229(L_87, /*hidden argument*/NULL);
NullCheck(L_88);
int32_t L_89 = String_get_Length_m2979997331(L_88, /*hidden argument*/NULL);
if (L_89)
{
goto IL_026c;
}
}
IL_024c:
{
TypeData_t3837952962 * L_90 = ___typeData;
NullCheck(L_90);
Type_t * L_91 = TypeData_get_Type_m2191724548(L_90, /*hidden argument*/NULL);
NullCheck(L_91);
String_t* L_92 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_91);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_93 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral2870637165, L_92, _stringLiteral1254247575, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_94 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_94, L_93, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_94);
}
IL_026c:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::.ctor(System.Object,System.IntPtr)
extern "C" void XmlSerializationCollectionFixupCallback__ctor_m2039963079 (XmlSerializationCollectionFixupCallback_t2598659068 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::Invoke(System.Object,System.Object)
extern "C" void XmlSerializationCollectionFixupCallback_Invoke_m506822625 (XmlSerializationCollectionFixupCallback_t2598659068 * __this, Il2CppObject * ___collection, Il2CppObject * ___collectionItems, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlSerializationCollectionFixupCallback_Invoke_m506822625((XmlSerializationCollectionFixupCallback_t2598659068 *)__this->get_prev_9(),___collection, ___collectionItems, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___collection, Il2CppObject * ___collectionItems, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___collection, ___collectionItems,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___collection, Il2CppObject * ___collectionItems, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___collection, ___collectionItems,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___collectionItems, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___collection, ___collectionItems,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlSerializationCollectionFixupCallback_t2598659068(Il2CppObject* delegate, Il2CppObject * ___collection, Il2CppObject * ___collectionItems)
{
// Marshaling of parameter '___collection' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlSerializationCollectionFixupCallback::BeginInvoke(System.Object,System.Object,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlSerializationCollectionFixupCallback_BeginInvoke_m3414870118 (XmlSerializationCollectionFixupCallback_t2598659068 * __this, Il2CppObject * ___collection, Il2CppObject * ___collectionItems, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___collection;
__d_args[1] = ___collectionItems;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::EndInvoke(System.IAsyncResult)
extern "C" void XmlSerializationCollectionFixupCallback_EndInvoke_m2975255383 (XmlSerializationCollectionFixupCallback_t2598659068 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::.ctor(System.Object,System.IntPtr)
extern "C" void XmlSerializationFixupCallback__ctor_m3257712133 (XmlSerializationFixupCallback_t3787251386 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::Invoke(System.Object)
extern "C" void XmlSerializationFixupCallback_Invoke_m3044300117 (XmlSerializationFixupCallback_t3787251386 * __this, Il2CppObject * ___fixup, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlSerializationFixupCallback_Invoke_m3044300117((XmlSerializationFixupCallback_t3787251386 *)__this->get_prev_9(),___fixup, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___fixup, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___fixup,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___fixup, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___fixup,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___fixup,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlSerializationFixupCallback_t3787251386(Il2CppObject* delegate, Il2CppObject * ___fixup)
{
// Marshaling of parameter '___fixup' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlSerializationFixupCallback::BeginInvoke(System.Object,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlSerializationFixupCallback_BeginInvoke_m2989778294 (XmlSerializationFixupCallback_t3787251386 * __this, Il2CppObject * ___fixup, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___fixup;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlSerializationFixupCallback::EndInvoke(System.IAsyncResult)
extern "C" void XmlSerializationFixupCallback_EndInvoke_m95550101 (XmlSerializationFixupCallback_t3787251386 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlSerializationGeneratedCode::.ctor()
extern "C" void XmlSerializationGeneratedCode__ctor_m1416890774 (XmlSerializationGeneratedCode_t3515170049 * __this, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReadCallback::.ctor(System.Object,System.IntPtr)
extern "C" void XmlSerializationReadCallback__ctor_m676352297 (XmlSerializationReadCallback_t3159962994 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Object System.Xml.Serialization.XmlSerializationReadCallback::Invoke()
extern "C" Il2CppObject * XmlSerializationReadCallback_Invoke_m1006302446 (XmlSerializationReadCallback_t3159962994 * __this, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlSerializationReadCallback_Invoke_m1006302446((XmlSerializationReadCallback_t3159962994 *)__this->get_prev_9(), method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if ((__this->get_m_target_2() != NULL || MethodHasParameters((MethodInfo*)(__this->get_method_3().get_m_value_0()))) && ___methodIsStatic)
{
typedef Il2CppObject * (*FunctionPointerType) (Il2CppObject *, void* __this, const MethodInfo* method);
return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef Il2CppObject * (*FunctionPointerType) (void* __this, const MethodInfo* method);
return ((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" Il2CppObject * pinvoke_delegate_wrapper_XmlSerializationReadCallback_t3159962994(Il2CppObject* delegate)
{
typedef Il2CppObject * (STDCALL *native_function_ptr_type)();
native_function_ptr_type _il2cpp_pinvoke_func = ((native_function_ptr_type)((Il2CppDelegate*)delegate)->method->method);
// Native function invocation and marshaling of return value back from native representation
Il2CppObject * _return_value = _il2cpp_pinvoke_func();
Il2CppObject * __return_value_unmarshaled = NULL;
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
return __return_value_unmarshaled;
}
// System.IAsyncResult System.Xml.Serialization.XmlSerializationReadCallback::BeginInvoke(System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlSerializationReadCallback_BeginInvoke_m2019470952 (XmlSerializationReadCallback_t3159962994 * __this, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[1] = {0};
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Object System.Xml.Serialization.XmlSerializationReadCallback::EndInvoke(System.IAsyncResult)
extern "C" Il2CppObject * XmlSerializationReadCallback_EndInvoke_m624710564 (XmlSerializationReadCallback_t3159962994 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
Il2CppObject *__result = il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
return (Il2CppObject *)__result;
}
// System.Void System.Xml.Serialization.XmlSerializationReader::.ctor()
extern "C" void XmlSerializationReader__ctor_m3070874705 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
XmlSerializationGeneratedCode__ctor_m1416890774(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::Initialize(System.Xml.XmlReader,System.Xml.Serialization.XmlSerializer)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral3748144093;
extern Il2CppCodeGenString* _stringLiteral2182084285;
extern Il2CppCodeGenString* _stringLiteral3403005341;
extern Il2CppCodeGenString* _stringLiteral1118558406;
extern Il2CppCodeGenString* _stringLiteral3392903;
extern Il2CppCodeGenString* _stringLiteral109073;
extern Il2CppCodeGenString* _stringLiteral3575610;
extern Il2CppCodeGenString* _stringLiteral2870059315;
extern Il2CppCodeGenString* _stringLiteral63537721;
extern const uint32_t XmlSerializationReader_Initialize_m1765380850_MetadataUsageId;
extern "C" void XmlSerializationReader_Initialize_m1765380850 (XmlSerializationReader_t540589306 * __this, XmlReader_t4229084514 * ___reader, XmlSerializer_t1888860807 * ___eventSource, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_Initialize_m1765380850_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlReader_t4229084514 * L_0 = ___reader;
NullCheck(L_0);
XmlNameTable_t3232213908 * L_1 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0);
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_1, _stringLiteral1440052060);
__this->set_w3SchemaNS_14(L_2);
XmlReader_t4229084514 * L_3 = ___reader;
NullCheck(L_3);
XmlNameTable_t3232213908 * L_4 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_3);
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_4, _stringLiteral1662954470);
__this->set_w3InstanceNS_15(L_5);
XmlReader_t4229084514 * L_6 = ___reader;
NullCheck(L_6);
XmlNameTable_t3232213908 * L_7 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_6);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_7, _stringLiteral3748144093);
__this->set_w3InstanceNS2000_16(L_8);
XmlReader_t4229084514 * L_9 = ___reader;
NullCheck(L_9);
XmlNameTable_t3232213908 * L_10 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_9);
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, _stringLiteral2182084285);
__this->set_w3InstanceNS1999_17(L_11);
XmlReader_t4229084514 * L_12 = ___reader;
NullCheck(L_12);
XmlNameTable_t3232213908 * L_13 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_12);
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_13, _stringLiteral3403005341);
__this->set_soapNS_18(L_14);
XmlReader_t4229084514 * L_15 = ___reader;
NullCheck(L_15);
XmlNameTable_t3232213908 * L_16 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_15);
NullCheck(L_16);
String_t* L_17 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_16, _stringLiteral1118558406);
__this->set_wsdlNS_19(L_17);
XmlReader_t4229084514 * L_18 = ___reader;
NullCheck(L_18);
XmlNameTable_t3232213908 * L_19 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_18);
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_19, _stringLiteral3392903);
__this->set_nullX_20(L_20);
XmlReader_t4229084514 * L_21 = ___reader;
NullCheck(L_21);
XmlNameTable_t3232213908 * L_22 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_21);
NullCheck(L_22);
String_t* L_23 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_22, _stringLiteral109073);
__this->set_nil_21(L_23);
XmlReader_t4229084514 * L_24 = ___reader;
NullCheck(L_24);
XmlNameTable_t3232213908 * L_25 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_24);
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_25, _stringLiteral3575610);
__this->set_typeX_22(L_26);
XmlReader_t4229084514 * L_27 = ___reader;
NullCheck(L_27);
XmlNameTable_t3232213908 * L_28 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_27);
NullCheck(L_28);
String_t* L_29 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_28, _stringLiteral2870059315);
__this->set_arrayType_23(L_29);
XmlReader_t4229084514 * L_30 = ___reader;
__this->set_reader_1(L_30);
XmlSerializer_t1888860807 * L_31 = ___eventSource;
__this->set_eventSource_9(L_31);
String_t* L_32 = __this->get_soapNS_18();
XmlQualifiedName_t176365656 * L_33 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_33, _stringLiteral63537721, L_32, /*hidden argument*/NULL);
__this->set_arrayQName_24(L_33);
VirtActionInvoker0::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationReader::InitIDs() */, __this);
return;
}
}
// System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::EnsureArrayList(System.Collections.ArrayList)
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_EnsureArrayList_m2619649467_MetadataUsageId;
extern "C" ArrayList_t2121638921 * XmlSerializationReader_EnsureArrayList_m2619649467 (XmlSerializationReader_t540589306 * __this, ArrayList_t2121638921 * ___list, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_EnsureArrayList_m2619649467_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
ArrayList_t2121638921 * L_0 = ___list;
if (L_0)
{
goto IL_000d;
}
}
{
ArrayList_t2121638921 * L_1 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_1, /*hidden argument*/NULL);
___list = L_1;
}
IL_000d:
{
ArrayList_t2121638921 * L_2 = ___list;
return L_2;
}
}
// System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::EnsureHashtable(System.Collections.Hashtable)
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_EnsureHashtable_m237487890_MetadataUsageId;
extern "C" Hashtable_t3875263730 * XmlSerializationReader_EnsureHashtable_m237487890 (XmlSerializationReader_t540589306 * __this, Hashtable_t3875263730 * ___hash, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_EnsureHashtable_m237487890_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = ___hash;
if (L_0)
{
goto IL_000d;
}
}
{
Hashtable_t3875263730 * L_1 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_1, /*hidden argument*/NULL);
___hash = L_1;
}
IL_000d:
{
Hashtable_t3875263730 * L_2 = ___hash;
return L_2;
}
}
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::get_Document()
extern TypeInfo* XmlDocument_t3705263098_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_get_Document_m483267938_MetadataUsageId;
extern "C" XmlDocument_t3705263098 * XmlSerializationReader_get_Document_m483267938 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_get_Document_m483267938_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlDocument_t3705263098 * L_0 = __this->get_document_0();
if (L_0)
{
goto IL_0021;
}
}
{
XmlReader_t4229084514 * L_1 = __this->get_reader_1();
NullCheck(L_1);
XmlNameTable_t3232213908 * L_2 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_1);
XmlDocument_t3705263098 * L_3 = (XmlDocument_t3705263098 *)il2cpp_codegen_object_new(XmlDocument_t3705263098_il2cpp_TypeInfo_var);
XmlDocument__ctor_m1234628775(L_3, L_2, /*hidden argument*/NULL);
__this->set_document_0(L_3);
}
IL_0021:
{
XmlDocument_t3705263098 * L_4 = __this->get_document_0();
return L_4;
}
}
// System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::get_Reader()
extern "C" XmlReader_t4229084514 * XmlSerializationReader_get_Reader_m330992306 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
XmlReader_t4229084514 * L_0 = __this->get_reader_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionFixup)
extern "C" void XmlSerializationReader_AddFixup_m2940395357 (XmlSerializationReader_t540589306 * __this, CollectionFixup_t40072530 * ___fixup, const MethodInfo* method)
{
{
Hashtable_t3875263730 * L_0 = __this->get_collFixups_3();
Hashtable_t3875263730 * L_1 = XmlSerializationReader_EnsureHashtable_m237487890(__this, L_0, /*hidden argument*/NULL);
__this->set_collFixups_3(L_1);
Hashtable_t3875263730 * L_2 = __this->get_collFixups_3();
CollectionFixup_t40072530 * L_3 = ___fixup;
NullCheck(L_3);
Il2CppObject * L_4 = CollectionFixup_get_Id_m551641573(L_3, /*hidden argument*/NULL);
CollectionFixup_t40072530 * L_5 = ___fixup;
NullCheck(L_2);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_4, L_5);
Hashtable_t3875263730 * L_6 = __this->get_delayedListFixups_8();
if (!L_6)
{
goto IL_006d;
}
}
{
Hashtable_t3875263730 * L_7 = __this->get_delayedListFixups_8();
CollectionFixup_t40072530 * L_8 = ___fixup;
NullCheck(L_8);
Il2CppObject * L_9 = CollectionFixup_get_Id_m551641573(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_10 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_9);
if (!L_10)
{
goto IL_006d;
}
}
{
CollectionFixup_t40072530 * L_11 = ___fixup;
Hashtable_t3875263730 * L_12 = __this->get_delayedListFixups_8();
CollectionFixup_t40072530 * L_13 = ___fixup;
NullCheck(L_13);
Il2CppObject * L_14 = CollectionFixup_get_Id_m551641573(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
Il2CppObject * L_15 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_12, L_14);
NullCheck(L_11);
CollectionFixup_set_CollectionItems_m517186627(L_11, L_15, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_16 = __this->get_delayedListFixups_8();
CollectionFixup_t40072530 * L_17 = ___fixup;
NullCheck(L_17);
Il2CppObject * L_18 = CollectionFixup_get_Id_m551641573(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
VirtActionInvoker1< Il2CppObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_16, L_18);
}
IL_006d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/Fixup)
extern "C" void XmlSerializationReader_AddFixup_m3636976287 (XmlSerializationReader_t540589306 * __this, Fixup_t67893584 * ___fixup, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get_fixups_2();
ArrayList_t2121638921 * L_1 = XmlSerializationReader_EnsureArrayList_m2619649467(__this, L_0, /*hidden argument*/NULL);
__this->set_fixups_2(L_1);
ArrayList_t2121638921 * L_2 = __this->get_fixups_2();
Fixup_t67893584 * L_3 = ___fixup;
NullCheck(L_2);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup)
extern "C" void XmlSerializationReader_AddFixup_m617708112 (XmlSerializationReader_t540589306 * __this, CollectionItemFixup_t3301129471 * ___fixup, const MethodInfo* method)
{
{
ArrayList_t2121638921 * L_0 = __this->get_collItemFixups_4();
ArrayList_t2121638921 * L_1 = XmlSerializationReader_EnsureArrayList_m2619649467(__this, L_0, /*hidden argument*/NULL);
__this->set_collItemFixups_4(L_1);
ArrayList_t2121638921 * L_2 = __this->get_collItemFixups_4();
CollectionItemFixup_t3301129471 * L_3 = ___fixup;
NullCheck(L_2);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddReadCallback(System.String,System.String,System.Type,System.Xml.Serialization.XmlSerializationReadCallback)
extern TypeInfo* WriteCallbackInfo_t2990892018_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_AddReadCallback_m511534794_MetadataUsageId;
extern "C" void XmlSerializationReader_AddReadCallback_m511534794 (XmlSerializationReader_t540589306 * __this, String_t* ___name, String_t* ___ns, Type_t * ___type, XmlSerializationReadCallback_t3159962994 * ___read, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_AddReadCallback_m511534794_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
WriteCallbackInfo_t2990892018 * V_0 = NULL;
{
WriteCallbackInfo_t2990892018 * L_0 = (WriteCallbackInfo_t2990892018 *)il2cpp_codegen_object_new(WriteCallbackInfo_t2990892018_il2cpp_TypeInfo_var);
WriteCallbackInfo__ctor_m2087763086(L_0, /*hidden argument*/NULL);
V_0 = L_0;
WriteCallbackInfo_t2990892018 * L_1 = V_0;
Type_t * L_2 = ___type;
NullCheck(L_1);
L_1->set_Type_0(L_2);
WriteCallbackInfo_t2990892018 * L_3 = V_0;
String_t* L_4 = ___name;
NullCheck(L_3);
L_3->set_TypeName_1(L_4);
WriteCallbackInfo_t2990892018 * L_5 = V_0;
String_t* L_6 = ___ns;
NullCheck(L_5);
L_5->set_TypeNs_2(L_6);
WriteCallbackInfo_t2990892018 * L_7 = V_0;
XmlSerializationReadCallback_t3159962994 * L_8 = ___read;
NullCheck(L_7);
L_7->set_Callback_3(L_8);
Hashtable_t3875263730 * L_9 = __this->get_typesCallbacks_5();
Hashtable_t3875263730 * L_10 = XmlSerializationReader_EnsureHashtable_m237487890(__this, L_9, /*hidden argument*/NULL);
__this->set_typesCallbacks_5(L_10);
Hashtable_t3875263730 * L_11 = __this->get_typesCallbacks_5();
String_t* L_12 = ___name;
String_t* L_13 = ___ns;
XmlQualifiedName_t176365656 * L_14 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_14, L_12, L_13, /*hidden argument*/NULL);
WriteCallbackInfo_t2990892018 * L_15 = V_0;
NullCheck(L_11);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_14, L_15);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::AddTarget(System.String,System.Object)
extern "C" void XmlSerializationReader_AddTarget_m1979745839 (XmlSerializationReader_t540589306 * __this, String_t* ___id, Il2CppObject * ___o, const MethodInfo* method)
{
{
String_t* L_0 = ___id;
if (!L_0)
{
goto IL_003b;
}
}
{
Hashtable_t3875263730 * L_1 = __this->get_targets_7();
Hashtable_t3875263730 * L_2 = XmlSerializationReader_EnsureHashtable_m237487890(__this, L_1, /*hidden argument*/NULL);
__this->set_targets_7(L_2);
Hashtable_t3875263730 * L_3 = __this->get_targets_7();
String_t* L_4 = ___id;
NullCheck(L_3);
Il2CppObject * L_5 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4);
if (L_5)
{
goto IL_0036;
}
}
{
Hashtable_t3875263730 * L_6 = __this->get_targets_7();
String_t* L_7 = ___id;
Il2CppObject * L_8 = ___o;
NullCheck(L_6);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8);
}
IL_0036:
{
goto IL_0061;
}
IL_003b:
{
Il2CppObject * L_9 = ___o;
if (!L_9)
{
goto IL_0042;
}
}
{
return;
}
IL_0042:
{
ArrayList_t2121638921 * L_10 = __this->get_noIDTargets_6();
ArrayList_t2121638921 * L_11 = XmlSerializationReader_EnsureArrayList_m2619649467(__this, L_10, /*hidden argument*/NULL);
__this->set_noIDTargets_6(L_11);
ArrayList_t2121638921 * L_12 = __this->get_noIDTargets_6();
Il2CppObject * L_13 = ___o;
NullCheck(L_12);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_13);
}
IL_0061:
{
return;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader::CurrentTag()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2402062284;
extern Il2CppCodeGenString* _stringLiteral63966829;
extern Il2CppCodeGenString* _stringLiteral59100;
extern Il2CppCodeGenString* _stringLiteral1923;
extern Il2CppCodeGenString* _stringLiteral62;
extern Il2CppCodeGenString* _stringLiteral476132679;
extern const uint32_t XmlSerializationReader_CurrentTag_m4137523889_MetadataUsageId;
extern "C" String_t* XmlSerializationReader_CurrentTag_m4137523889 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_CurrentTag_m4137523889_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
XmlReader_t4229084514 * L_0 = __this->get_reader_1();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0)
{
goto IL_003d;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1)
{
goto IL_005e;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2)
{
goto IL_006a;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3)
{
goto IL_0030;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 4)
{
goto IL_0030;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 5)
{
goto IL_0076;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 6)
{
goto IL_0070;
}
}
IL_0030:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)15))))
{
goto IL_007c;
}
}
{
goto IL_0082;
}
IL_003d:
{
XmlReader_t4229084514 * L_4 = __this->get_reader_1();
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4);
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_6);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral2402062284, L_5, L_7, /*hidden argument*/NULL);
return L_8;
}
IL_005e:
{
XmlReader_t4229084514 * L_9 = __this->get_reader_1();
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::get_Value() */, L_9);
return L_10;
}
IL_006a:
{
return _stringLiteral63966829;
}
IL_0070:
{
return _stringLiteral59100;
}
IL_0076:
{
return _stringLiteral1923;
}
IL_007c:
{
return _stringLiteral62;
}
IL_0082:
{
return _stringLiteral476132679;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateReadOnlyCollectionException(System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral465010725;
extern const uint32_t XmlSerializationReader_CreateReadOnlyCollectionException_m494995583_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationReader_CreateReadOnlyCollectionException_m494995583 (XmlSerializationReader_t540589306 * __this, String_t* ___name, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_CreateReadOnlyCollectionException_m494995583_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = String_Format_m2471250780(NULL /*static, unused*/, _stringLiteral465010725, L_0, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = V_0;
InvalidOperationException_t2420574324 * L_3 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownConstantException(System.String,System.Type)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2782897785;
extern const uint32_t XmlSerializationReader_CreateUnknownConstantException_m262637350_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationReader_CreateUnknownConstantException_m262637350 (XmlSerializationReader_t540589306 * __this, String_t* ___value, Type_t * ___enumType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_CreateUnknownConstantException_m262637350_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___value;
Type_t * L_1 = ___enumType;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral2782897785, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
InvalidOperationException_t2420574324 * L_4 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_4, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownNodeException()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3877798236;
extern const uint32_t XmlSerializationReader_CreateUnknownNodeException_m2252572497_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationReader_CreateUnknownNodeException_m2252572497 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_CreateUnknownNodeException_m2252572497_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = XmlSerializationReader_CurrentTag_m4137523889(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = String_Concat_m138640077(NULL /*static, unused*/, L_0, _stringLiteral3877798236, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = V_0;
InvalidOperationException_t2420574324 * L_3 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownTypeException(System.Xml.XmlQualifiedName)
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral22551612;
extern Il2CppCodeGenString* _stringLiteral2068716460;
extern Il2CppCodeGenString* _stringLiteral1158221970;
extern const uint32_t XmlSerializationReader_CreateUnknownTypeException_m3019837971_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationReader_CreateUnknownTypeException_m3019837971 (XmlSerializationReader_t540589306 * __this, XmlQualifiedName_t176365656 * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_CreateUnknownTypeException_m3019837971_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
StringU5BU5D_t2956870243* L_0 = ((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)6));
NullCheck(L_0);
IL2CPP_ARRAY_BOUNDS_CHECK(L_0, 0);
ArrayElementTypeCheck (L_0, _stringLiteral22551612);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral22551612);
StringU5BU5D_t2956870243* L_1 = L_0;
XmlQualifiedName_t176365656 * L_2 = ___type;
NullCheck(L_2);
String_t* L_3 = XmlQualifiedName_get_Name_m607016698(L_2, /*hidden argument*/NULL);
NullCheck(L_1);
IL2CPP_ARRAY_BOUNDS_CHECK(L_1, 1);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_3);
StringU5BU5D_t2956870243* L_4 = L_1;
NullCheck(L_4);
IL2CPP_ARRAY_BOUNDS_CHECK(L_4, 2);
ArrayElementTypeCheck (L_4, _stringLiteral2068716460);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2068716460);
StringU5BU5D_t2956870243* L_5 = L_4;
XmlQualifiedName_t176365656 * L_6 = ___type;
NullCheck(L_6);
String_t* L_7 = XmlQualifiedName_get_Namespace_m2987642414(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
IL2CPP_ARRAY_BOUNDS_CHECK(L_5, 3);
ArrayElementTypeCheck (L_5, L_7);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_7);
StringU5BU5D_t2956870243* L_8 = L_5;
NullCheck(L_8);
IL2CPP_ARRAY_BOUNDS_CHECK(L_8, 4);
ArrayElementTypeCheck (L_8, _stringLiteral1158221970);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral1158221970);
StringU5BU5D_t2956870243* L_9 = L_8;
String_t* L_10 = XmlSerializationReader_CurrentTag_m4137523889(__this, /*hidden argument*/NULL);
NullCheck(L_9);
IL2CPP_ARRAY_BOUNDS_CHECK(L_9, 5);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_10);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_11 = String_Concat_m21867311(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
V_0 = L_11;
String_t* L_12 = V_0;
InvalidOperationException_t2420574324 * L_13 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_13, L_12, /*hidden argument*/NULL);
return L_13;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader::EnsureArrayIndex(System.Array,System.Int32,System.Type)
extern "C" Il2CppArray * XmlSerializationReader_EnsureArrayIndex_m1200206641 (XmlSerializationReader_t540589306 * __this, Il2CppArray * ___a, int32_t ___index, Type_t * ___elementType, const MethodInfo* method)
{
int32_t V_0 = 0;
Il2CppArray * V_1 = NULL;
{
Il2CppArray * L_0 = ___a;
if (!L_0)
{
goto IL_0014;
}
}
{
int32_t L_1 = ___index;
Il2CppArray * L_2 = ___a;
NullCheck(L_2);
int32_t L_3 = Array_get_Length_m1203127607(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_1) >= ((int32_t)L_3)))
{
goto IL_0014;
}
}
{
Il2CppArray * L_4 = ___a;
return L_4;
}
IL_0014:
{
Il2CppArray * L_5 = ___a;
if (L_5)
{
goto IL_0022;
}
}
{
V_0 = ((int32_t)32);
goto IL_002b;
}
IL_0022:
{
Il2CppArray * L_6 = ___a;
NullCheck(L_6);
int32_t L_7 = Array_get_Length_m1203127607(L_6, /*hidden argument*/NULL);
V_0 = ((int32_t)((int32_t)L_7*(int32_t)2));
}
IL_002b:
{
Type_t * L_8 = ___elementType;
int32_t L_9 = V_0;
Il2CppArray * L_10 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL);
V_1 = L_10;
Il2CppArray * L_11 = ___a;
if (!L_11)
{
goto IL_0041;
}
}
{
Il2CppArray * L_12 = ___a;
Il2CppArray * L_13 = V_1;
int32_t L_14 = ___index;
Array_Copy_m3799309042(NULL /*static, unused*/, L_12, L_13, L_14, /*hidden argument*/NULL);
}
IL_0041:
{
Il2CppArray * L_15 = V_1;
return L_15;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::GetNullAttr()
extern "C" bool XmlSerializationReader_GetNullAttr_m2906457349 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
String_t* V_0 = NULL;
{
XmlReader_t4229084514 * L_0 = __this->get_reader_1();
String_t* L_1 = __this->get_nullX_20();
String_t* L_2 = __this->get_w3InstanceNS_15();
NullCheck(L_0);
String_t* L_3 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
V_0 = L_3;
String_t* L_4 = V_0;
if (L_4)
{
goto IL_0072;
}
}
{
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
String_t* L_6 = __this->get_nil_21();
String_t* L_7 = __this->get_w3InstanceNS_15();
NullCheck(L_5);
String_t* L_8 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_5, L_6, L_7);
V_0 = L_8;
String_t* L_9 = V_0;
if (L_9)
{
goto IL_0072;
}
}
{
XmlReader_t4229084514 * L_10 = __this->get_reader_1();
String_t* L_11 = __this->get_nullX_20();
String_t* L_12 = __this->get_w3InstanceNS2000_16();
NullCheck(L_10);
String_t* L_13 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_10, L_11, L_12);
V_0 = L_13;
String_t* L_14 = V_0;
if (L_14)
{
goto IL_0072;
}
}
{
XmlReader_t4229084514 * L_15 = __this->get_reader_1();
String_t* L_16 = __this->get_nullX_20();
String_t* L_17 = __this->get_w3InstanceNS1999_17();
NullCheck(L_15);
String_t* L_18 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_0 = L_18;
}
IL_0072:
{
String_t* L_19 = V_0;
return (bool)((((int32_t)((((Il2CppObject*)(String_t*)L_19) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::GetTarget(System.String)
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_GetTarget_m2963915255_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReader_GetTarget_m2963915255 (XmlSerializationReader_t540589306 * __this, String_t* ___id, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_GetTarget_m2963915255_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
{
Hashtable_t3875263730 * L_0 = __this->get_targets_7();
if (L_0)
{
goto IL_000d;
}
}
{
return NULL;
}
IL_000d:
{
Hashtable_t3875263730 * L_1 = __this->get_targets_7();
String_t* L_2 = ___id;
NullCheck(L_1);
Il2CppObject * L_3 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
V_0 = L_3;
Il2CppObject * L_4 = V_0;
if (!L_4)
{
goto IL_0043;
}
}
{
Hashtable_t3875263730 * L_5 = __this->get_referencedObjects_11();
if (L_5)
{
goto IL_0036;
}
}
{
Hashtable_t3875263730 * L_6 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_6, /*hidden argument*/NULL);
__this->set_referencedObjects_11(L_6);
}
IL_0036:
{
Hashtable_t3875263730 * L_7 = __this->get_referencedObjects_11();
Il2CppObject * L_8 = V_0;
Il2CppObject * L_9 = V_0;
NullCheck(L_7);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_8, L_9);
}
IL_0043:
{
Il2CppObject * L_10 = V_0;
return L_10;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::TargetReady(System.String)
extern "C" bool XmlSerializationReader_TargetReady_m1277422745 (XmlSerializationReader_t540589306 * __this, String_t* ___id, const MethodInfo* method)
{
{
Hashtable_t3875263730 * L_0 = __this->get_targets_7();
if (L_0)
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
Hashtable_t3875263730 * L_1 = __this->get_targets_7();
String_t* L_2 = ___id;
NullCheck(L_1);
bool L_3 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2);
return L_3;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::GetXsiType()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral58;
extern const uint32_t XmlSerializationReader_GetXsiType_m305667192_MetadataUsageId;
extern "C" XmlQualifiedName_t176365656 * XmlSerializationReader_GetXsiType_m305667192 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_GetXsiType_m305667192_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_1 = __this->get_typeX_22();
NullCheck(L_0);
String_t* L_2 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, _stringLiteral1662954470);
V_0 = L_2;
String_t* L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_5 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_002d;
}
}
{
String_t* L_6 = V_0;
if (L_6)
{
goto IL_008b;
}
}
IL_002d:
{
XmlReader_t4229084514 * L_7 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_8 = __this->get_typeX_22();
String_t* L_9 = __this->get_w3InstanceNS1999_17();
NullCheck(L_7);
String_t* L_10 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_7, L_8, L_9);
V_0 = L_10;
String_t* L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_12 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_13 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_005b;
}
}
{
String_t* L_14 = V_0;
if (L_14)
{
goto IL_008b;
}
}
IL_005b:
{
XmlReader_t4229084514 * L_15 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_16 = __this->get_typeX_22();
String_t* L_17 = __this->get_w3InstanceNS2000_16();
NullCheck(L_15);
String_t* L_18 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_0 = L_18;
String_t* L_19 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_20 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_21 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_19, L_20, /*hidden argument*/NULL);
if (L_21)
{
goto IL_0089;
}
}
{
String_t* L_22 = V_0;
if (L_22)
{
goto IL_008b;
}
}
IL_0089:
{
return (XmlQualifiedName_t176365656 *)NULL;
}
IL_008b:
{
String_t* L_23 = V_0;
NullCheck(L_23);
int32_t L_24 = String_IndexOf_m1476794331(L_23, _stringLiteral58, /*hidden argument*/NULL);
V_1 = L_24;
int32_t L_25 = V_1;
if ((!(((uint32_t)L_25) == ((uint32_t)(-1)))))
{
goto IL_00b0;
}
}
{
String_t* L_26 = V_0;
XmlReader_t4229084514 * L_27 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_27);
String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_27);
XmlQualifiedName_t176365656 * L_29 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_29, L_26, L_28, /*hidden argument*/NULL);
return L_29;
}
IL_00b0:
{
String_t* L_30 = V_0;
int32_t L_31 = V_1;
NullCheck(L_30);
String_t* L_32 = String_Substring_m675079568(L_30, 0, L_31, /*hidden argument*/NULL);
V_2 = L_32;
String_t* L_33 = V_0;
int32_t L_34 = V_1;
NullCheck(L_33);
String_t* L_35 = String_Substring_m2809233063(L_33, ((int32_t)((int32_t)L_34+(int32_t)1)), /*hidden argument*/NULL);
V_3 = L_35;
String_t* L_36 = V_3;
XmlReader_t4229084514 * L_37 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_38 = V_2;
NullCheck(L_37);
String_t* L_39 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(31 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_37, L_38);
XmlQualifiedName_t176365656 * L_40 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_40, L_36, L_39, /*hidden argument*/NULL);
return L_40;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::IsXmlnsAttribute(System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern Il2CppCodeGenString* _stringLiteral3539488670;
extern const uint32_t XmlSerializationReader_IsXmlnsAttribute_m2409816365_MetadataUsageId;
extern "C" bool XmlSerializationReader_IsXmlnsAttribute_m2409816365 (XmlSerializationReader_t540589306 * __this, String_t* ___name, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_IsXmlnsAttribute_m2409816365_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___name;
NullCheck(L_0);
int32_t L_1 = String_get_Length_m2979997331(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) >= ((int32_t)5)))
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)5))))
{
goto IL_0023;
}
}
{
String_t* L_4 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_5 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_4, _stringLiteral114177052, /*hidden argument*/NULL);
return L_5;
}
IL_0023:
{
String_t* L_6 = ___name;
NullCheck(L_6);
bool L_7 = String_StartsWith_m1500793453(L_6, _stringLiteral3539488670, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ParseWsdlArrayType(System.Xml.XmlAttribute)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral58;
extern const uint32_t XmlSerializationReader_ParseWsdlArrayType_m82075816_MetadataUsageId;
extern "C" void XmlSerializationReader_ParseWsdlArrayType_m82075816 (XmlSerializationReader_t540589306 * __this, XmlAttribute_t2022155821 * ___attr, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ParseWsdlArrayType_m82075816_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
XmlAttribute_t2022155821 * L_0 = ___attr;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_0);
String_t* L_2 = __this->get_wsdlNS_19();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_3 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0078;
}
}
{
XmlAttribute_t2022155821 * L_4 = ___attr;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlAttribute::get_LocalName() */, L_4);
String_t* L_6 = __this->get_arrayType_23();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_7 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0078;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
V_0 = L_8;
XmlAttribute_t2022155821 * L_9 = ___attr;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(24 /* System.String System.Xml.XmlAttribute::get_Value() */, L_9);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeTranslator_ParseArrayType_m2894191449(NULL /*static, unused*/, L_10, (&V_1), (&V_0), (&V_2), /*hidden argument*/NULL);
String_t* L_11 = V_0;
String_t* L_12 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_13 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_006a;
}
}
{
XmlReader_t4229084514 * L_14 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_15 = V_0;
NullCheck(L_14);
String_t* L_16 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(31 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_14, L_15);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_17 = String_Concat_m138640077(NULL /*static, unused*/, L_16, _stringLiteral58, /*hidden argument*/NULL);
V_0 = L_17;
}
IL_006a:
{
XmlAttribute_t2022155821 * L_18 = ___attr;
String_t* L_19 = V_0;
String_t* L_20 = V_1;
String_t* L_21 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_22 = String_Concat_m1825781833(NULL /*static, unused*/, L_19, L_20, L_21, /*hidden argument*/NULL);
NullCheck(L_18);
VirtActionInvoker1< String_t* >::Invoke(25 /* System.Void System.Xml.XmlAttribute::set_Value(System.String) */, L_18, L_22);
}
IL_0078:
{
return;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadElementQualifiedName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadElementQualifiedName_m646822247_MetadataUsageId;
extern "C" XmlQualifiedName_t176365656 * XmlSerializationReader_ReadElementQualifiedName_m646822247 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadElementQualifiedName_m646822247_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
{
int32_t L_0 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_0+(int32_t)1)));
XmlReader_t4229084514 * L_1 = __this->get_reader_1();
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_1);
if (!L_2)
{
goto IL_0035;
}
}
{
XmlReader_t4229084514 * L_3 = __this->get_reader_1();
NullCheck(L_3);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_3);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlQualifiedName_t176365656 * L_5 = XmlSerializationReader_ToXmlQualifiedName_m574550865(__this, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0035:
{
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_6);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_6);
XmlReader_t4229084514 * L_7 = __this->get_reader_1();
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_7);
XmlQualifiedName_t176365656 * L_9 = XmlSerializationReader_ToXmlQualifiedName_m574550865(__this, L_8, /*hidden argument*/NULL);
V_0 = L_9;
XmlReader_t4229084514 * L_10 = __this->get_reader_1();
NullCheck(L_10);
VirtActionInvoker0::Invoke(41 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_10);
XmlQualifiedName_t176365656 * L_11 = V_0;
return L_11;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadEndElement()
extern "C" void XmlSerializationReader_ReadEndElement_m3127481962 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_0+(int32_t)1)));
goto IL_001e;
}
IL_0013:
{
XmlReader_t4229084514 * L_1 = __this->get_reader_1();
NullCheck(L_1);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_1);
}
IL_001e:
{
XmlReader_t4229084514 * L_2 = __this->get_reader_1();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_0013;
}
}
{
XmlReader_t4229084514 * L_4 = __this->get_reader_1();
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
if (!L_5)
{
goto IL_0050;
}
}
{
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_6);
VirtActionInvoker0::Invoke(41 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_6);
goto IL_005b;
}
IL_0050:
{
XmlReader_t4229084514 * L_7 = __this->get_reader_1();
NullCheck(L_7);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_7);
}
IL_005b:
{
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadNull()
extern "C" bool XmlSerializationReader_ReadNull_m1989574600 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
bool L_0 = XmlSerializationReader_GetNullAttr_m2906457349(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
int32_t L_1 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_1+(int32_t)1)));
XmlReader_t4229084514 * L_2 = __this->get_reader_1();
NullCheck(L_2);
bool L_3 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_2);
if (!L_3)
{
goto IL_0038;
}
}
{
XmlReader_t4229084514 * L_4 = __this->get_reader_1();
NullCheck(L_4);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_4);
return (bool)1;
}
IL_0038:
{
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
NullCheck(L_5);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_5);
goto IL_004f;
}
IL_0048:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
}
IL_004f:
{
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_6);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)15)))))
{
goto IL_0048;
}
}
{
XmlSerializationReader_ReadEndElement_m3127481962(__this, /*hidden argument*/NULL);
return (bool)1;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadNullableQualifiedName()
extern "C" XmlQualifiedName_t176365656 * XmlSerializationReader_ReadNullableQualifiedName_m4264043212 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
bool L_0 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000d;
}
}
{
return (XmlQualifiedName_t176365656 *)NULL;
}
IL_000d:
{
XmlQualifiedName_t176365656 * L_1 = XmlSerializationReader_ReadElementQualifiedName_m646822247(__this, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader::ReadNullableString()
extern "C" String_t* XmlSerializationReader_ReadNullableString_m2696644760 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
bool L_0 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000d;
}
}
{
return (String_t*)NULL;
}
IL_000d:
{
int32_t L_1 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_1+(int32_t)1)));
XmlReader_t4229084514 * L_2 = __this->get_reader_1();
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(40 /* System.String System.Xml.XmlReader::ReadElementString() */, L_2);
return L_3;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement()
extern "C" Il2CppObject * XmlSerializationReader_ReadReferencedElement_m2806902705 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0);
XmlReader_t4229084514 * L_2 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_2);
Il2CppObject * L_4 = XmlSerializationReader_ReadReferencedElement_m2060068205(__this, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo System.Xml.Serialization.XmlSerializationReader::GetCallbackInfo(System.Xml.XmlQualifiedName)
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern TypeInfo* WriteCallbackInfo_t2990892018_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_GetCallbackInfo_m2661582612_MetadataUsageId;
extern "C" WriteCallbackInfo_t2990892018 * XmlSerializationReader_GetCallbackInfo_m2661582612 (XmlSerializationReader_t540589306 * __this, XmlQualifiedName_t176365656 * ___qname, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_GetCallbackInfo_m2661582612_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Hashtable_t3875263730 * L_0 = __this->get_typesCallbacks_5();
if (L_0)
{
goto IL_001c;
}
}
{
Hashtable_t3875263730 * L_1 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_1, /*hidden argument*/NULL);
__this->set_typesCallbacks_5(L_1);
VirtActionInvoker0::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializationReader::InitCallbacks() */, __this);
}
IL_001c:
{
Hashtable_t3875263730 * L_2 = __this->get_typesCallbacks_5();
XmlQualifiedName_t176365656 * L_3 = ___qname;
NullCheck(L_2);
Il2CppObject * L_4 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
return ((WriteCallbackInfo_t2990892018 *)CastclassClass(L_4, WriteCallbackInfo_t2990892018_il2cpp_TypeInfo_var));
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement(System.String,System.String)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* CollectionFixup_t40072530_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3355;
extern const uint32_t XmlSerializationReader_ReadReferencedElement_m2060068205_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReader_ReadReferencedElement_m2060068205 (XmlSerializationReader_t540589306 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadReferencedElement_m2060068205_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
String_t* V_1 = NULL;
Il2CppObject * V_2 = NULL;
String_t* V_3 = NULL;
CollectionFixup_t40072530 * V_4 = NULL;
WriteCallbackInfo_t2990892018 * V_5 = NULL;
CollectionFixup_t40072530 * G_B8_0 = NULL;
{
XmlQualifiedName_t176365656 * L_0 = XmlSerializationReader_GetXsiType_m305667192(__this, /*hidden argument*/NULL);
V_0 = L_0;
XmlQualifiedName_t176365656 * L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_2 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_1, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
String_t* L_3 = ___name;
String_t* L_4 = ___ns;
XmlQualifiedName_t176365656 * L_5 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_5, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
}
IL_001b:
{
XmlReader_t4229084514 * L_6 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(27 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_6, _stringLiteral3355);
V_1 = L_7;
XmlReader_t4229084514 * L_8 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_9 = __this->get_arrayType_23();
String_t* L_10 = __this->get_soapNS_18();
NullCheck(L_8);
String_t* L_11 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_8, L_9, L_10);
V_3 = L_11;
XmlQualifiedName_t176365656 * L_12 = V_0;
XmlQualifiedName_t176365656 * L_13 = __this->get_arrayQName_24();
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_14 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_12, L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0067;
}
}
{
String_t* L_15 = V_3;
if (!L_15)
{
goto IL_00ed;
}
}
{
String_t* L_16 = V_3;
NullCheck(L_16);
int32_t L_17 = String_get_Length_m2979997331(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_00ed;
}
}
IL_0067:
{
Hashtable_t3875263730 * L_18 = __this->get_collFixups_3();
if (!L_18)
{
goto IL_0088;
}
}
{
Hashtable_t3875263730 * L_19 = __this->get_collFixups_3();
String_t* L_20 = V_1;
NullCheck(L_19);
Il2CppObject * L_21 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_19, L_20);
G_B8_0 = ((CollectionFixup_t40072530 *)CastclassClass(L_21, CollectionFixup_t40072530_il2cpp_TypeInfo_var));
goto IL_0089;
}
IL_0088:
{
G_B8_0 = ((CollectionFixup_t40072530 *)(NULL));
}
IL_0089:
{
V_4 = G_B8_0;
bool L_22 = XmlSerializationReader_ReadList_m1199345559(__this, (&V_2), /*hidden argument*/NULL);
if (!L_22)
{
goto IL_00cc;
}
}
{
CollectionFixup_t40072530 * L_23 = V_4;
if (!L_23)
{
goto IL_00c7;
}
}
{
CollectionFixup_t40072530 * L_24 = V_4;
NullCheck(L_24);
XmlSerializationCollectionFixupCallback_t2598659068 * L_25 = CollectionFixup_get_Callback_m3564295581(L_24, /*hidden argument*/NULL);
CollectionFixup_t40072530 * L_26 = V_4;
NullCheck(L_26);
Il2CppObject * L_27 = CollectionFixup_get_Collection_m1695159720(L_26, /*hidden argument*/NULL);
Il2CppObject * L_28 = V_2;
NullCheck(L_25);
XmlSerializationCollectionFixupCallback_Invoke_m506822625(L_25, L_27, L_28, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_29 = __this->get_collFixups_3();
String_t* L_30 = V_1;
NullCheck(L_29);
VirtActionInvoker1< Il2CppObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_29, L_30);
CollectionFixup_t40072530 * L_31 = V_4;
NullCheck(L_31);
Il2CppObject * L_32 = CollectionFixup_get_Collection_m1695159720(L_31, /*hidden argument*/NULL);
V_2 = L_32;
}
IL_00c7:
{
goto IL_00e8;
}
IL_00cc:
{
CollectionFixup_t40072530 * L_33 = V_4;
if (!L_33)
{
goto IL_00e8;
}
}
{
CollectionFixup_t40072530 * L_34 = V_4;
Il2CppObject * L_35 = V_2;
NullCheck(L_34);
CollectionFixup_set_CollectionItems_m517186627(L_34, (Il2CppObject *)(Il2CppObject *)((ObjectU5BU5D_t11523773*)Castclass(L_35, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
CollectionFixup_t40072530 * L_36 = V_4;
NullCheck(L_36);
Il2CppObject * L_37 = CollectionFixup_get_Collection_m1695159720(L_36, /*hidden argument*/NULL);
V_2 = L_37;
}
IL_00e8:
{
goto IL_011e;
}
IL_00ed:
{
XmlQualifiedName_t176365656 * L_38 = V_0;
WriteCallbackInfo_t2990892018 * L_39 = XmlSerializationReader_GetCallbackInfo_m2661582612(__this, L_38, /*hidden argument*/NULL);
V_5 = L_39;
WriteCallbackInfo_t2990892018 * L_40 = V_5;
if (L_40)
{
goto IL_0111;
}
}
{
XmlQualifiedName_t176365656 * L_41 = V_0;
String_t* L_42 = V_1;
Il2CppObject * L_43 = XmlSerializationReader_ReadTypedPrimitive_m1194272578(__this, L_41, (bool)((((int32_t)((((Il2CppObject*)(String_t*)L_42) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
V_2 = L_43;
goto IL_011e;
}
IL_0111:
{
WriteCallbackInfo_t2990892018 * L_44 = V_5;
NullCheck(L_44);
XmlSerializationReadCallback_t3159962994 * L_45 = L_44->get_Callback_3();
NullCheck(L_45);
Il2CppObject * L_46 = XmlSerializationReadCallback_Invoke_m1006302446(L_45, /*hidden argument*/NULL);
V_2 = L_46;
}
IL_011e:
{
String_t* L_47 = V_1;
Il2CppObject * L_48 = V_2;
XmlSerializationReader_AddTarget_m1979745839(__this, L_47, L_48, /*hidden argument*/NULL);
Il2CppObject * L_49 = V_2;
return L_49;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadList(System.Object&)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* CollectionItemFixup_t3301129471_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1396;
extern const uint32_t XmlSerializationReader_ReadList_m1199345559_MetadataUsageId;
extern "C" bool XmlSerializationReader_ReadList_m1199345559 (XmlSerializationReader_t540589306 * __this, Il2CppObject ** ___resultList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadList_m1199345559_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
XmlQualifiedName_t176365656 * V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
int32_t V_5 = 0;
Il2CppArray * V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
WriteCallbackInfo_t2990892018 * V_9 = NULL;
bool V_10 = false;
int32_t V_11 = 0;
String_t* V_12 = NULL;
Il2CppObject * V_13 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_1 = __this->get_arrayType_23();
String_t* L_2 = __this->get_soapNS_18();
NullCheck(L_0);
String_t* L_3 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
V_0 = L_3;
String_t* L_4 = V_0;
if (L_4)
{
goto IL_0036;
}
}
{
XmlReader_t4229084514 * L_5 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_6 = __this->get_arrayType_23();
String_t* L_7 = __this->get_wsdlNS_19();
NullCheck(L_5);
String_t* L_8 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_5, L_6, L_7);
V_0 = L_8;
}
IL_0036:
{
String_t* L_9 = V_0;
XmlQualifiedName_t176365656 * L_10 = XmlSerializationReader_ToXmlQualifiedName_m574550865(__this, L_9, /*hidden argument*/NULL);
V_1 = L_10;
XmlQualifiedName_t176365656 * L_11 = V_1;
NullCheck(L_11);
String_t* L_12 = XmlQualifiedName_get_Name_m607016698(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
int32_t L_13 = String_LastIndexOf_m3245805612(L_12, ((int32_t)91), /*hidden argument*/NULL);
V_2 = L_13;
XmlQualifiedName_t176365656 * L_14 = V_1;
NullCheck(L_14);
String_t* L_15 = XmlQualifiedName_get_Name_m607016698(L_14, /*hidden argument*/NULL);
int32_t L_16 = V_2;
NullCheck(L_15);
String_t* L_17 = String_Substring_m2809233063(L_15, L_16, /*hidden argument*/NULL);
V_3 = L_17;
XmlQualifiedName_t176365656 * L_18 = V_1;
NullCheck(L_18);
String_t* L_19 = XmlQualifiedName_get_Name_m607016698(L_18, /*hidden argument*/NULL);
int32_t L_20 = V_2;
NullCheck(L_19);
String_t* L_21 = String_Substring_m675079568(L_19, 0, L_20, /*hidden argument*/NULL);
V_4 = L_21;
String_t* L_22 = V_3;
String_t* L_23 = V_3;
NullCheck(L_23);
int32_t L_24 = String_get_Length_m2979997331(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
String_t* L_25 = String_Substring_m675079568(L_22, 1, ((int32_t)((int32_t)L_24-(int32_t)2)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_26 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
int32_t L_27 = Int32_Parse_m981442986(NULL /*static, unused*/, L_25, L_26, /*hidden argument*/NULL);
V_5 = L_27;
String_t* L_28 = V_4;
NullCheck(L_28);
int32_t L_29 = String_IndexOf_m2775210486(L_28, ((int32_t)91), /*hidden argument*/NULL);
V_2 = L_29;
int32_t L_30 = V_2;
if ((!(((uint32_t)L_30) == ((uint32_t)(-1)))))
{
goto IL_009c;
}
}
{
String_t* L_31 = V_4;
NullCheck(L_31);
int32_t L_32 = String_get_Length_m2979997331(L_31, /*hidden argument*/NULL);
V_2 = L_32;
}
IL_009c:
{
String_t* L_33 = V_4;
int32_t L_34 = V_2;
NullCheck(L_33);
String_t* L_35 = String_Substring_m675079568(L_33, 0, L_34, /*hidden argument*/NULL);
V_7 = L_35;
XmlQualifiedName_t176365656 * L_36 = V_1;
NullCheck(L_36);
String_t* L_37 = XmlQualifiedName_get_Namespace_m2987642414(L_36, /*hidden argument*/NULL);
String_t* L_38 = __this->get_w3SchemaNS_14();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_39 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_37, L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_00e2;
}
}
{
String_t* L_40 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_41 = TypeTranslator_GetPrimitiveTypeData_m2824660061(NULL /*static, unused*/, L_40, /*hidden argument*/NULL);
NullCheck(L_41);
Type_t * L_42 = TypeData_get_Type_m2191724548(L_41, /*hidden argument*/NULL);
NullCheck(L_42);
String_t* L_43 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_42);
String_t* L_44 = V_4;
int32_t L_45 = V_2;
NullCheck(L_44);
String_t* L_46 = String_Substring_m2809233063(L_44, L_45, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_47 = String_Concat_m138640077(NULL /*static, unused*/, L_43, L_46, /*hidden argument*/NULL);
V_8 = L_47;
goto IL_0128;
}
IL_00e2:
{
String_t* L_48 = V_7;
XmlQualifiedName_t176365656 * L_49 = V_1;
NullCheck(L_49);
String_t* L_50 = XmlQualifiedName_get_Namespace_m2987642414(L_49, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_51 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_51, L_48, L_50, /*hidden argument*/NULL);
WriteCallbackInfo_t2990892018 * L_52 = XmlSerializationReader_GetCallbackInfo_m2661582612(__this, L_51, /*hidden argument*/NULL);
V_9 = L_52;
WriteCallbackInfo_t2990892018 * L_53 = V_9;
NullCheck(L_53);
Type_t * L_54 = L_53->get_Type_0();
NullCheck(L_54);
String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_54);
String_t* L_56 = V_4;
int32_t L_57 = V_2;
NullCheck(L_56);
String_t* L_58 = String_Substring_m2809233063(L_56, L_57, /*hidden argument*/NULL);
WriteCallbackInfo_t2990892018 * L_59 = V_9;
NullCheck(L_59);
Type_t * L_60 = L_59->get_Type_0();
NullCheck(L_60);
Assembly_t1882292308 * L_61 = VirtFuncInvoker0< Assembly_t1882292308 * >::Invoke(15 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_60);
NullCheck(L_61);
String_t* L_62 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.Assembly::get_FullName() */, L_61);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_63 = String_Concat_m2933632197(NULL /*static, unused*/, L_55, L_58, _stringLiteral1396, L_62, /*hidden argument*/NULL);
V_8 = L_63;
}
IL_0128:
{
String_t* L_64 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = il2cpp_codegen_get_type((methodPointerType)&Type_GetType_m2877589631, L_64, "System.Xml, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
int32_t L_66 = V_5;
Il2CppArray * L_67 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_65, L_66, /*hidden argument*/NULL);
V_6 = L_67;
V_10 = (bool)1;
XmlReader_t4229084514 * L_68 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_68);
bool L_69 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_68);
if (!L_69)
{
goto IL_0169;
}
}
{
int32_t L_70 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_70+(int32_t)1)));
XmlReader_t4229084514 * L_71 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_71);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_71);
goto IL_0202;
}
IL_0169:
{
XmlReader_t4229084514 * L_72 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_72);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_72);
V_11 = 0;
goto IL_01e7;
}
IL_017c:
{
int32_t L_73 = __this->get_whileIterationCount_13();
__this->set_whileIterationCount_13(((int32_t)((int32_t)L_73+(int32_t)1)));
int32_t L_74 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_74+(int32_t)1)));
XmlReader_t4229084514 * L_75 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_75);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_75);
String_t* L_76 = V_4;
XmlQualifiedName_t176365656 * L_77 = V_1;
NullCheck(L_77);
String_t* L_78 = XmlQualifiedName_get_Namespace_m2987642414(L_77, /*hidden argument*/NULL);
Il2CppObject * L_79 = XmlSerializationReader_ReadReferencingElement_m1454141082(__this, L_76, L_78, (&V_12), /*hidden argument*/NULL);
V_13 = L_79;
String_t* L_80 = V_12;
if (L_80)
{
goto IL_01cd;
}
}
{
Il2CppArray * L_81 = V_6;
Il2CppObject * L_82 = V_13;
int32_t L_83 = V_11;
NullCheck(L_81);
Array_SetValue_m3564402974(L_81, L_82, L_83, /*hidden argument*/NULL);
goto IL_01e1;
}
IL_01cd:
{
Il2CppArray * L_84 = V_6;
int32_t L_85 = V_11;
String_t* L_86 = V_12;
CollectionItemFixup_t3301129471 * L_87 = (CollectionItemFixup_t3301129471 *)il2cpp_codegen_object_new(CollectionItemFixup_t3301129471_il2cpp_TypeInfo_var);
CollectionItemFixup__ctor_m2863526956(L_87, L_84, L_85, L_86, /*hidden argument*/NULL);
XmlSerializationReader_AddFixup_m617708112(__this, L_87, /*hidden argument*/NULL);
V_10 = (bool)0;
}
IL_01e1:
{
int32_t L_88 = V_11;
V_11 = ((int32_t)((int32_t)L_88+(int32_t)1));
}
IL_01e7:
{
int32_t L_89 = V_11;
int32_t L_90 = V_5;
if ((((int32_t)L_89) < ((int32_t)L_90)))
{
goto IL_017c;
}
}
{
__this->set_whileIterationCount_13(0);
XmlReader_t4229084514 * L_91 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_91);
VirtActionInvoker0::Invoke(41 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_91);
}
IL_0202:
{
Il2CppObject ** L_92 = ___resultList;
Il2CppArray * L_93 = V_6;
*((Il2CppObject **)(L_92)) = (Il2CppObject *)L_93;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_92), (Il2CppObject *)L_93);
bool L_94 = V_10;
return L_94;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::ReadReferencedElements()
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* DictionaryEntry_t130027246_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* CollectionItemFixup_t3301129471_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* CollectionFixup_t40072530_il2cpp_TypeInfo_var;
extern TypeInfo* Fixup_t67893584_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadReferencedElements_m1322468249_MetadataUsageId;
extern "C" void XmlSerializationReader_ReadReferencedElements_m1322468249 (XmlSerializationReader_t540589306 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadReferencedElements_m1322468249_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
DictionaryEntry_t130027246 V_1;
memset(&V_1, 0, sizeof(V_1));
Il2CppObject * V_2 = NULL;
CollectionItemFixup_t3301129471 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Il2CppObject * V_5 = NULL;
CollectionFixup_t40072530 * V_6 = NULL;
Il2CppObject * V_7 = NULL;
Fixup_t67893584 * V_8 = NULL;
Il2CppObject * V_9 = NULL;
DictionaryEntry_t130027246 V_10;
memset(&V_10, 0, sizeof(V_10));
Il2CppObject * V_11 = NULL;
Il2CppObject * V_12 = NULL;
Il2CppObject * V_13 = NULL;
Il2CppObject * V_14 = NULL;
Il2CppObject * V_15 = NULL;
Il2CppObject * V_16 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlReader_t4229084514 * L_0 = __this->get_reader_1();
NullCheck(L_0);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4229084514 * L_1 = __this->get_reader_1();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
V_0 = L_2;
goto IL_0058;
}
IL_001d:
{
int32_t L_3 = __this->get_whileIterationCount_13();
__this->set_whileIterationCount_13(((int32_t)((int32_t)L_3+(int32_t)1)));
int32_t L_4 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_4+(int32_t)1)));
XmlSerializationReader_ReadReferencedElement_m2806902705(__this, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
NullCheck(L_5);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_5);
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_6);
V_0 = L_7;
}
IL_0058:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)15))))
{
goto IL_0066;
}
}
{
int32_t L_9 = V_0;
if (L_9)
{
goto IL_001d;
}
}
IL_0066:
{
__this->set_whileIterationCount_13(0);
Hashtable_t3875263730 * L_10 = __this->get_delayedListFixups_8();
if (!L_10)
{
goto IL_00d3;
}
}
{
Hashtable_t3875263730 * L_11 = __this->get_delayedListFixups_8();
NullCheck(L_11);
Il2CppObject * L_12 = VirtFuncInvoker0< Il2CppObject * >::Invoke(29 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_11);
V_2 = L_12;
}
IL_0084:
try
{ // begin try (depth: 1)
{
goto IL_00ae;
}
IL_0089:
{
Il2CppObject * L_13 = V_2;
NullCheck(L_13);
Il2CppObject * L_14 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_13);
V_1 = ((*(DictionaryEntry_t130027246 *)((DictionaryEntry_t130027246 *)UnBox (L_14, DictionaryEntry_t130027246_il2cpp_TypeInfo_var))));
Il2CppObject * L_15 = DictionaryEntry_get_Key_m3516209325((&V_1), /*hidden argument*/NULL);
Il2CppObject * L_16 = DictionaryEntry_get_Value_m4281303039((&V_1), /*hidden argument*/NULL);
XmlSerializationReader_AddTarget_m1979745839(__this, ((String_t*)CastclassSealed(L_15, String_t_il2cpp_TypeInfo_var)), L_16, /*hidden argument*/NULL);
}
IL_00ae:
{
Il2CppObject * L_17 = V_2;
NullCheck(L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0089;
}
}
IL_00b9:
{
IL2CPP_LEAVE(0xD3, FINALLY_00be);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00be;
}
FINALLY_00be:
{ // begin finally (depth: 1)
{
Il2CppObject * L_19 = V_2;
V_12 = ((Il2CppObject *)IsInst(L_19, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_20 = V_12;
if (L_20)
{
goto IL_00cb;
}
}
IL_00ca:
{
IL2CPP_END_FINALLY(190)
}
IL_00cb:
{
Il2CppObject * L_21 = V_12;
NullCheck(L_21);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_21);
IL2CPP_END_FINALLY(190)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(190)
{
IL2CPP_JUMP_TBL(0xD3, IL_00d3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00d3:
{
ArrayList_t2121638921 * L_22 = __this->get_collItemFixups_4();
if (!L_22)
{
goto IL_0141;
}
}
{
ArrayList_t2121638921 * L_23 = __this->get_collItemFixups_4();
NullCheck(L_23);
Il2CppObject * L_24 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_23);
V_4 = L_24;
}
IL_00eb:
try
{ // begin try (depth: 1)
{
goto IL_011a;
}
IL_00f0:
{
Il2CppObject * L_25 = V_4;
NullCheck(L_25);
Il2CppObject * L_26 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_25);
V_3 = ((CollectionItemFixup_t3301129471 *)CastclassClass(L_26, CollectionItemFixup_t3301129471_il2cpp_TypeInfo_var));
CollectionItemFixup_t3301129471 * L_27 = V_3;
NullCheck(L_27);
Il2CppArray * L_28 = CollectionItemFixup_get_Collection_m630049811(L_27, /*hidden argument*/NULL);
CollectionItemFixup_t3301129471 * L_29 = V_3;
NullCheck(L_29);
String_t* L_30 = CollectionItemFixup_get_Id_m1997493156(L_29, /*hidden argument*/NULL);
Il2CppObject * L_31 = XmlSerializationReader_GetTarget_m2963915255(__this, L_30, /*hidden argument*/NULL);
CollectionItemFixup_t3301129471 * L_32 = V_3;
NullCheck(L_32);
int32_t L_33 = CollectionItemFixup_get_Index_m1750359370(L_32, /*hidden argument*/NULL);
NullCheck(L_28);
Array_SetValue_m3564402974(L_28, L_31, L_33, /*hidden argument*/NULL);
}
IL_011a:
{
Il2CppObject * L_34 = V_4;
NullCheck(L_34);
bool L_35 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_34);
if (L_35)
{
goto IL_00f0;
}
}
IL_0126:
{
IL2CPP_LEAVE(0x141, FINALLY_012b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_012b;
}
FINALLY_012b:
{ // begin finally (depth: 1)
{
Il2CppObject * L_36 = V_4;
V_13 = ((Il2CppObject *)IsInst(L_36, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_37 = V_13;
if (L_37)
{
goto IL_0139;
}
}
IL_0138:
{
IL2CPP_END_FINALLY(299)
}
IL_0139:
{
Il2CppObject * L_38 = V_13;
NullCheck(L_38);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_38);
IL2CPP_END_FINALLY(299)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(299)
{
IL2CPP_JUMP_TBL(0x141, IL_0141)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0141:
{
Hashtable_t3875263730 * L_39 = __this->get_collFixups_3();
if (!L_39)
{
goto IL_01b6;
}
}
{
Hashtable_t3875263730 * L_40 = __this->get_collFixups_3();
NullCheck(L_40);
Il2CppObject * L_41 = VirtFuncInvoker0< Il2CppObject * >::Invoke(22 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_40);
V_5 = L_41;
Il2CppObject * L_42 = V_5;
NullCheck(L_42);
Il2CppObject * L_43 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_42);
V_7 = L_43;
}
IL_0162:
try
{ // begin try (depth: 1)
{
goto IL_018f;
}
IL_0167:
{
Il2CppObject * L_44 = V_7;
NullCheck(L_44);
Il2CppObject * L_45 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_44);
V_6 = ((CollectionFixup_t40072530 *)CastclassClass(L_45, CollectionFixup_t40072530_il2cpp_TypeInfo_var));
CollectionFixup_t40072530 * L_46 = V_6;
NullCheck(L_46);
XmlSerializationCollectionFixupCallback_t2598659068 * L_47 = CollectionFixup_get_Callback_m3564295581(L_46, /*hidden argument*/NULL);
CollectionFixup_t40072530 * L_48 = V_6;
NullCheck(L_48);
Il2CppObject * L_49 = CollectionFixup_get_Collection_m1695159720(L_48, /*hidden argument*/NULL);
CollectionFixup_t40072530 * L_50 = V_6;
NullCheck(L_50);
Il2CppObject * L_51 = CollectionFixup_get_CollectionItems_m2098517082(L_50, /*hidden argument*/NULL);
NullCheck(L_47);
XmlSerializationCollectionFixupCallback_Invoke_m506822625(L_47, L_49, L_51, /*hidden argument*/NULL);
}
IL_018f:
{
Il2CppObject * L_52 = V_7;
NullCheck(L_52);
bool L_53 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_52);
if (L_53)
{
goto IL_0167;
}
}
IL_019b:
{
IL2CPP_LEAVE(0x1B6, FINALLY_01a0);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_01a0;
}
FINALLY_01a0:
{ // begin finally (depth: 1)
{
Il2CppObject * L_54 = V_7;
V_14 = ((Il2CppObject *)IsInst(L_54, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_55 = V_14;
if (L_55)
{
goto IL_01ae;
}
}
IL_01ad:
{
IL2CPP_END_FINALLY(416)
}
IL_01ae:
{
Il2CppObject * L_56 = V_14;
NullCheck(L_56);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_56);
IL2CPP_END_FINALLY(416)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(416)
{
IL2CPP_JUMP_TBL(0x1B6, IL_01b6)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_01b6:
{
ArrayList_t2121638921 * L_57 = __this->get_fixups_2();
if (!L_57)
{
goto IL_0216;
}
}
{
ArrayList_t2121638921 * L_58 = __this->get_fixups_2();
NullCheck(L_58);
Il2CppObject * L_59 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_58);
V_9 = L_59;
}
IL_01ce:
try
{ // begin try (depth: 1)
{
goto IL_01ef;
}
IL_01d3:
{
Il2CppObject * L_60 = V_9;
NullCheck(L_60);
Il2CppObject * L_61 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_60);
V_8 = ((Fixup_t67893584 *)CastclassClass(L_61, Fixup_t67893584_il2cpp_TypeInfo_var));
Fixup_t67893584 * L_62 = V_8;
NullCheck(L_62);
XmlSerializationFixupCallback_t3787251386 * L_63 = Fixup_get_Callback_m3508086041(L_62, /*hidden argument*/NULL);
Fixup_t67893584 * L_64 = V_8;
NullCheck(L_63);
XmlSerializationFixupCallback_Invoke_m3044300117(L_63, L_64, /*hidden argument*/NULL);
}
IL_01ef:
{
Il2CppObject * L_65 = V_9;
NullCheck(L_65);
bool L_66 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_65);
if (L_66)
{
goto IL_01d3;
}
}
IL_01fb:
{
IL2CPP_LEAVE(0x216, FINALLY_0200);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0200;
}
FINALLY_0200:
{ // begin finally (depth: 1)
{
Il2CppObject * L_67 = V_9;
V_15 = ((Il2CppObject *)IsInst(L_67, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_68 = V_15;
if (L_68)
{
goto IL_020e;
}
}
IL_020d:
{
IL2CPP_END_FINALLY(512)
}
IL_020e:
{
Il2CppObject * L_69 = V_15;
NullCheck(L_69);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_69);
IL2CPP_END_FINALLY(512)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(512)
{
IL2CPP_JUMP_TBL(0x216, IL_0216)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0216:
{
Hashtable_t3875263730 * L_70 = __this->get_targets_7();
if (!L_70)
{
goto IL_02af;
}
}
{
Hashtable_t3875263730 * L_71 = __this->get_targets_7();
NullCheck(L_71);
Il2CppObject * L_72 = VirtFuncInvoker0< Il2CppObject * >::Invoke(29 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_71);
V_11 = L_72;
}
IL_022e:
try
{ // begin try (depth: 1)
{
goto IL_0288;
}
IL_0233:
{
Il2CppObject * L_73 = V_11;
NullCheck(L_73);
Il2CppObject * L_74 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_73);
V_10 = ((*(DictionaryEntry_t130027246 *)((DictionaryEntry_t130027246 *)UnBox (L_74, DictionaryEntry_t130027246_il2cpp_TypeInfo_var))));
Il2CppObject * L_75 = DictionaryEntry_get_Value_m4281303039((&V_10), /*hidden argument*/NULL);
if (!L_75)
{
goto IL_0288;
}
}
IL_024d:
{
Hashtable_t3875263730 * L_76 = __this->get_referencedObjects_11();
if (!L_76)
{
goto IL_026f;
}
}
IL_0258:
{
Hashtable_t3875263730 * L_77 = __this->get_referencedObjects_11();
Il2CppObject * L_78 = DictionaryEntry_get_Value_m4281303039((&V_10), /*hidden argument*/NULL);
NullCheck(L_77);
bool L_79 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(28 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_77, L_78);
if (L_79)
{
goto IL_0288;
}
}
IL_026f:
{
Il2CppObject * L_80 = DictionaryEntry_get_Key_m3516209325((&V_10), /*hidden argument*/NULL);
Il2CppObject * L_81 = DictionaryEntry_get_Value_m4281303039((&V_10), /*hidden argument*/NULL);
XmlSerializationReader_UnreferencedObject_m605135116(__this, ((String_t*)CastclassSealed(L_80, String_t_il2cpp_TypeInfo_var)), L_81, /*hidden argument*/NULL);
}
IL_0288:
{
Il2CppObject * L_82 = V_11;
NullCheck(L_82);
bool L_83 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_82);
if (L_83)
{
goto IL_0233;
}
}
IL_0294:
{
IL2CPP_LEAVE(0x2AF, FINALLY_0299);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0299;
}
FINALLY_0299:
{ // begin finally (depth: 1)
{
Il2CppObject * L_84 = V_11;
V_16 = ((Il2CppObject *)IsInst(L_84, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_85 = V_16;
if (L_85)
{
goto IL_02a7;
}
}
IL_02a6:
{
IL2CPP_END_FINALLY(665)
}
IL_02a7:
{
Il2CppObject * L_86 = V_16;
NullCheck(L_86);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_86);
IL2CPP_END_FINALLY(665)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(665)
{
IL2CPP_JUMP_TBL(0x2AF, IL_02af)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_02af:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String&)
extern "C" Il2CppObject * XmlSerializationReader_ReadReferencingElement_m3478666258 (XmlSerializationReader_t540589306 * __this, String_t** ___fixupReference, const MethodInfo* method)
{
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0);
XmlReader_t4229084514 * L_2 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_2);
String_t** L_4 = ___fixupReference;
Il2CppObject * L_5 = XmlSerializationReader_ReadReferencingElement_m908438825(__this, L_1, L_3, (bool)0, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.String&)
extern "C" Il2CppObject * XmlSerializationReader_ReadReferencingElement_m1454141082 (XmlSerializationReader_t540589306 * __this, String_t* ___name, String_t* ___ns, String_t** ___fixupReference, const MethodInfo* method)
{
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
String_t** L_2 = ___fixupReference;
Il2CppObject * L_3 = XmlSerializationReader_ReadReferencingElement_m908438825(__this, L_0, L_1, (bool)0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.Boolean,System.String&)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3211051;
extern Il2CppCodeGenString* _stringLiteral94300;
extern Il2CppCodeGenString* _stringLiteral62;
extern Il2CppCodeGenString* _stringLiteral35;
extern const uint32_t XmlSerializationReader_ReadReferencingElement_m908438825_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReader_ReadReferencingElement_m908438825 (XmlSerializationReader_t540589306 * __this, String_t* ___name, String_t* ___ns, bool ___elementCanBeType, String_t** ___fixupReference, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadReferencingElement_m908438825_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
XmlQualifiedName_t176365656 * V_1 = NULL;
String_t* V_2 = NULL;
Il2CppObject * V_3 = NULL;
WriteCallbackInfo_t2990892018 * V_4 = NULL;
int32_t V_5 = 0;
{
bool L_0 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0011;
}
}
{
String_t** L_1 = ___fixupReference;
*((Il2CppObject **)(L_1)) = (Il2CppObject *)NULL;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_1), (Il2CppObject *)NULL);
return NULL;
}
IL_0011:
{
XmlReader_t4229084514 * L_2 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(27 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_2, _stringLiteral3211051);
V_0 = L_3;
String_t* L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_5 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_6 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0038;
}
}
{
String_t* L_7 = V_0;
if (L_7)
{
goto IL_0102;
}
}
IL_0038:
{
String_t** L_8 = ___fixupReference;
*((Il2CppObject **)(L_8)) = (Il2CppObject *)NULL;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_8), (Il2CppObject *)NULL);
XmlQualifiedName_t176365656 * L_9 = XmlSerializationReader_GetXsiType_m305667192(__this, /*hidden argument*/NULL);
V_1 = L_9;
XmlQualifiedName_t176365656 * L_10 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_11 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_10, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0057;
}
}
{
String_t* L_12 = ___name;
String_t* L_13 = ___ns;
XmlQualifiedName_t176365656 * L_14 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_14, L_12, L_13, /*hidden argument*/NULL);
V_1 = L_14;
}
IL_0057:
{
XmlReader_t4229084514 * L_15 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
String_t* L_16 = __this->get_arrayType_23();
String_t* L_17 = __this->get_soapNS_18();
NullCheck(L_15);
String_t* L_18 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_15, L_16, L_17);
V_2 = L_18;
XmlQualifiedName_t176365656 * L_19 = V_1;
XmlQualifiedName_t176365656 * L_20 = __this->get_arrayQName_24();
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_21 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_19, L_20, /*hidden argument*/NULL);
if (L_21)
{
goto IL_0086;
}
}
{
String_t* L_22 = V_2;
if (!L_22)
{
goto IL_00dc;
}
}
IL_0086:
{
Hashtable_t3875263730 * L_23 = __this->get_delayedListFixups_8();
Hashtable_t3875263730 * L_24 = XmlSerializationReader_EnsureHashtable_m237487890(__this, L_23, /*hidden argument*/NULL);
__this->set_delayedListFixups_8(L_24);
String_t** L_25 = ___fixupReference;
int32_t L_26 = __this->get_delayedFixupId_10();
int32_t L_27 = L_26;
V_5 = L_27;
__this->set_delayedFixupId_10(((int32_t)((int32_t)L_27+(int32_t)1)));
int32_t L_28 = V_5;
int32_t L_29 = L_28;
Il2CppObject * L_30 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_29);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_31 = String_Concat_m2809334143(NULL /*static, unused*/, _stringLiteral94300, L_30, _stringLiteral62, /*hidden argument*/NULL);
*((Il2CppObject **)(L_25)) = (Il2CppObject *)L_31;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_25), (Il2CppObject *)L_31);
XmlSerializationReader_ReadList_m1199345559(__this, (&V_3), /*hidden argument*/NULL);
Hashtable_t3875263730 * L_32 = __this->get_delayedListFixups_8();
String_t** L_33 = ___fixupReference;
Il2CppObject * L_34 = V_3;
NullCheck(L_32);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_32, (*((String_t**)L_33)), L_34);
return NULL;
}
IL_00dc:
{
XmlQualifiedName_t176365656 * L_35 = V_1;
WriteCallbackInfo_t2990892018 * L_36 = XmlSerializationReader_GetCallbackInfo_m2661582612(__this, L_35, /*hidden argument*/NULL);
V_4 = L_36;
WriteCallbackInfo_t2990892018 * L_37 = V_4;
if (L_37)
{
goto IL_00f5;
}
}
{
XmlQualifiedName_t176365656 * L_38 = V_1;
Il2CppObject * L_39 = XmlSerializationReader_ReadTypedPrimitive_m1194272578(__this, L_38, (bool)1, /*hidden argument*/NULL);
return L_39;
}
IL_00f5:
{
WriteCallbackInfo_t2990892018 * L_40 = V_4;
NullCheck(L_40);
XmlSerializationReadCallback_t3159962994 * L_41 = L_40->get_Callback_3();
NullCheck(L_41);
Il2CppObject * L_42 = XmlSerializationReadCallback_Invoke_m1006302446(L_41, /*hidden argument*/NULL);
return L_42;
}
IL_0102:
{
String_t* L_43 = V_0;
NullCheck(L_43);
bool L_44 = String_StartsWith_m1500793453(L_43, _stringLiteral35, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_011a;
}
}
{
String_t* L_45 = V_0;
NullCheck(L_45);
String_t* L_46 = String_Substring_m2809233063(L_45, 1, /*hidden argument*/NULL);
V_0 = L_46;
}
IL_011a:
{
int32_t L_47 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_47+(int32_t)1)));
XmlReader_t4229084514 * L_48 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_48);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_48);
String_t* L_49 = V_0;
bool L_50 = XmlSerializationReader_TargetReady_m1277422745(__this, L_49, /*hidden argument*/NULL);
if (!L_50)
{
goto IL_014b;
}
}
{
String_t** L_51 = ___fixupReference;
*((Il2CppObject **)(L_51)) = (Il2CppObject *)NULL;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_51), (Il2CppObject *)NULL);
String_t* L_52 = V_0;
Il2CppObject * L_53 = XmlSerializationReader_GetTarget_m2963915255(__this, L_52, /*hidden argument*/NULL);
return L_53;
}
IL_014b:
{
String_t** L_54 = ___fixupReference;
String_t* L_55 = V_0;
*((Il2CppObject **)(L_54)) = (Il2CppObject *)L_55;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_54), (Il2CppObject *)L_55);
return NULL;
}
}
// System.Xml.Serialization.IXmlSerializable System.Xml.Serialization.XmlSerializationReader::ReadSerializable(System.Xml.Serialization.IXmlSerializable)
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadSerializable_m3446020923_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReader_ReadSerializable_m3446020923 (XmlSerializationReader_t540589306 * __this, Il2CppObject * ___serializable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadSerializable_m3446020923_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000d;
}
}
{
return (Il2CppObject *)NULL;
}
IL_000d:
{
XmlReader_t4229084514 * L_1 = __this->get_reader_1();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_1);
V_0 = L_2;
int32_t L_3 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_3+(int32_t)1)));
Il2CppObject * L_4 = ___serializable;
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
NullCheck(L_4);
InterfaceActionInvoker1< XmlReader_t4229084514 * >::Invoke(1 /* System.Void System.Xml.Serialization.IXmlSerializable::ReadXml(System.Xml.XmlReader) */, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var, L_4, L_5);
XmlReader_t4229084514 * L_6 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_6);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_6);
goto IL_004f;
}
IL_0044:
{
XmlReader_t4229084514 * L_7 = __this->get_reader_1();
NullCheck(L_7);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_7);
}
IL_004f:
{
XmlReader_t4229084514 * L_8 = __this->get_reader_1();
NullCheck(L_8);
int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_8);
int32_t L_10 = V_0;
if ((((int32_t)L_9) > ((int32_t)L_10)))
{
goto IL_0044;
}
}
{
XmlReader_t4229084514 * L_11 = __this->get_reader_1();
NullCheck(L_11);
int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_11);
int32_t L_13 = V_0;
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
{
goto IL_008e;
}
}
{
XmlReader_t4229084514 * L_14 = __this->get_reader_1();
NullCheck(L_14);
int32_t L_15 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_14);
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)15)))))
{
goto IL_008e;
}
}
{
XmlReader_t4229084514 * L_16 = __this->get_reader_1();
NullCheck(L_16);
VirtActionInvoker0::Invoke(41 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_16);
}
IL_008e:
{
Il2CppObject * L_17 = ___serializable;
return L_17;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader::ReadString(System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadString_m3136532811_MetadataUsageId;
extern "C" String_t* XmlSerializationReader_ReadString_m3136532811 (XmlSerializationReader_t540589306 * __this, String_t* ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadString_m3136532811_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_0+(int32_t)1)));
String_t* L_1 = ___value;
if (!L_1)
{
goto IL_0024;
}
}
{
String_t* L_2 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_3 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_4 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0030;
}
}
IL_0024:
{
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_5);
return L_6;
}
IL_0030:
{
String_t* L_7 = ___value;
XmlReader_t4229084514 * L_8 = __this->get_reader_1();
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_8);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = String_Concat_m138640077(NULL /*static, unused*/, L_7, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName)
extern "C" Il2CppObject * XmlSerializationReader_ReadTypedPrimitive_m827243227 (XmlSerializationReader_t540589306 * __this, XmlQualifiedName_t176365656 * ___qname, const MethodInfo* method)
{
{
XmlQualifiedName_t176365656 * L_0 = ___qname;
Il2CppObject * L_1 = XmlSerializationReader_ReadTypedPrimitive_m1194272578(__this, L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName,System.Boolean)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppObject_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElement_t3562928333_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNodeU5BU5D_t1808339196_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNode_t3592213601_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadTypedPrimitive_m1194272578_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReader_ReadTypedPrimitive_m1194272578 (XmlSerializationReader_t540589306 * __this, XmlQualifiedName_t176365656 * ___qname, bool ___reportUnknown, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadTypedPrimitive_m1194272578_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
XmlNode_t3592213601 * V_1 = NULL;
XmlElement_t3562928333 * V_2 = NULL;
XmlNodeU5BU5D_t1808339196* V_3 = NULL;
int32_t V_4 = 0;
XmlNode_t3592213601 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
XmlNode_t3592213601 * V_7 = NULL;
Il2CppObject * V_8 = NULL;
Il2CppObject * V_9 = NULL;
Il2CppObject * V_10 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlQualifiedName_t176365656 * L_0 = ___qname;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_1 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_0, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
XmlQualifiedName_t176365656 * L_2 = XmlSerializationReader_GetXsiType_m305667192(__this, /*hidden argument*/NULL);
___qname = L_2;
}
IL_0014:
{
XmlQualifiedName_t176365656 * L_3 = ___qname;
NullCheck(L_3);
String_t* L_4 = XmlQualifiedName_get_Name_m607016698(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_5 = TypeTranslator_FindPrimitiveTypeData_m801086334(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
V_0 = L_5;
TypeData_t3837952962 * L_6 = V_0;
if (!L_6)
{
goto IL_0032;
}
}
{
TypeData_t3837952962 * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = TypeData_get_SchemaType_m1693934194(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) == ((int32_t)1)))
{
goto IL_0165;
}
}
IL_0032:
{
int32_t L_9 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_9+(int32_t)1)));
XmlDocument_t3705263098 * L_10 = XmlSerializationReader_get_Document_m483267938(__this, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_11 = __this->get_reader_1();
NullCheck(L_10);
XmlNode_t3592213601 * L_12 = VirtFuncInvoker1< XmlNode_t3592213601 *, XmlReader_t4229084514 * >::Invoke(54 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_10, L_11);
V_1 = L_12;
bool L_13 = ___reportUnknown;
if (!L_13)
{
goto IL_0061;
}
}
{
XmlNode_t3592213601 * L_14 = V_1;
XmlSerializationReader_OnUnknownNode_m974550115(__this, L_14, NULL, (String_t*)NULL, /*hidden argument*/NULL);
}
IL_0061:
{
XmlNode_t3592213601 * L_15 = V_1;
NullCheck(L_15);
XmlNodeList_t3966370975 * L_16 = VirtFuncInvoker0< XmlNodeList_t3966370975 * >::Invoke(9 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_15);
NullCheck(L_16);
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_16);
if (L_17)
{
goto IL_0087;
}
}
{
XmlNode_t3592213601 * L_18 = V_1;
NullCheck(L_18);
XmlAttributeCollection_t571717291 * L_19 = VirtFuncInvoker0< XmlAttributeCollection_t571717291 * >::Invoke(6 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18);
NullCheck(L_19);
int32_t L_20 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_19);
if (L_20)
{
goto IL_0087;
}
}
{
Il2CppObject * L_21 = (Il2CppObject *)il2cpp_codegen_object_new(Il2CppObject_il2cpp_TypeInfo_var);
Object__ctor_m1772956182(L_21, /*hidden argument*/NULL);
return L_21;
}
IL_0087:
{
XmlNode_t3592213601 * L_22 = V_1;
V_2 = ((XmlElement_t3562928333 *)IsInstClass(L_22, XmlElement_t3562928333_il2cpp_TypeInfo_var));
XmlElement_t3562928333 * L_23 = V_2;
if (L_23)
{
goto IL_009f;
}
}
{
XmlNodeU5BU5D_t1808339196* L_24 = ((XmlNodeU5BU5D_t1808339196*)SZArrayNew(XmlNodeU5BU5D_t1808339196_il2cpp_TypeInfo_var, (uint32_t)1));
XmlNode_t3592213601 * L_25 = V_1;
NullCheck(L_24);
IL2CPP_ARRAY_BOUNDS_CHECK(L_24, 0);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (XmlNode_t3592213601 *)L_25);
return (Il2CppObject *)L_24;
}
IL_009f:
{
XmlElement_t3562928333 * L_26 = V_2;
NullCheck(L_26);
XmlAttributeCollection_t571717291 * L_27 = VirtFuncInvoker0< XmlAttributeCollection_t571717291 * >::Invoke(6 /* System.Xml.XmlAttributeCollection System.Xml.XmlElement::get_Attributes() */, L_26);
NullCheck(L_27);
int32_t L_28 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_27);
XmlElement_t3562928333 * L_29 = V_2;
NullCheck(L_29);
XmlNodeList_t3966370975 * L_30 = VirtFuncInvoker0< XmlNodeList_t3966370975 * >::Invoke(9 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_29);
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_30);
V_3 = ((XmlNodeU5BU5D_t1808339196*)SZArrayNew(XmlNodeU5BU5D_t1808339196_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_28+(int32_t)L_31))));
V_4 = 0;
XmlElement_t3562928333 * L_32 = V_2;
NullCheck(L_32);
XmlAttributeCollection_t571717291 * L_33 = VirtFuncInvoker0< XmlAttributeCollection_t571717291 * >::Invoke(6 /* System.Xml.XmlAttributeCollection System.Xml.XmlElement::get_Attributes() */, L_32);
NullCheck(L_33);
Il2CppObject * L_34 = VirtFuncInvoker0< Il2CppObject * >::Invoke(6 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_33);
V_6 = L_34;
}
IL_00cc:
try
{ // begin try (depth: 1)
{
goto IL_00ea;
}
IL_00d1:
{
Il2CppObject * L_35 = V_6;
NullCheck(L_35);
Il2CppObject * L_36 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_35);
V_5 = ((XmlNode_t3592213601 *)CastclassClass(L_36, XmlNode_t3592213601_il2cpp_TypeInfo_var));
XmlNodeU5BU5D_t1808339196* L_37 = V_3;
int32_t L_38 = V_4;
int32_t L_39 = L_38;
V_4 = ((int32_t)((int32_t)L_39+(int32_t)1));
XmlNode_t3592213601 * L_40 = V_5;
NullCheck(L_37);
IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_39);
ArrayElementTypeCheck (L_37, L_40);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (XmlNode_t3592213601 *)L_40);
}
IL_00ea:
{
Il2CppObject * L_41 = V_6;
NullCheck(L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_41);
if (L_42)
{
goto IL_00d1;
}
}
IL_00f6:
{
IL2CPP_LEAVE(0x111, FINALLY_00fb);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00fb;
}
FINALLY_00fb:
{ // begin finally (depth: 1)
{
Il2CppObject * L_43 = V_6;
V_9 = ((Il2CppObject *)IsInst(L_43, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_44 = V_9;
if (L_44)
{
goto IL_0109;
}
}
IL_0108:
{
IL2CPP_END_FINALLY(251)
}
IL_0109:
{
Il2CppObject * L_45 = V_9;
NullCheck(L_45);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_45);
IL2CPP_END_FINALLY(251)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(251)
{
IL2CPP_JUMP_TBL(0x111, IL_0111)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0111:
{
XmlElement_t3562928333 * L_46 = V_2;
NullCheck(L_46);
XmlNodeList_t3966370975 * L_47 = VirtFuncInvoker0< XmlNodeList_t3966370975 * >::Invoke(9 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_46);
NullCheck(L_47);
Il2CppObject * L_48 = VirtFuncInvoker0< Il2CppObject * >::Invoke(7 /* System.Collections.IEnumerator System.Xml.XmlNodeList::GetEnumerator() */, L_47);
V_8 = L_48;
}
IL_011e:
try
{ // begin try (depth: 1)
{
goto IL_013c;
}
IL_0123:
{
Il2CppObject * L_49 = V_8;
NullCheck(L_49);
Il2CppObject * L_50 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_49);
V_7 = ((XmlNode_t3592213601 *)CastclassClass(L_50, XmlNode_t3592213601_il2cpp_TypeInfo_var));
XmlNodeU5BU5D_t1808339196* L_51 = V_3;
int32_t L_52 = V_4;
int32_t L_53 = L_52;
V_4 = ((int32_t)((int32_t)L_53+(int32_t)1));
XmlNode_t3592213601 * L_54 = V_7;
NullCheck(L_51);
IL2CPP_ARRAY_BOUNDS_CHECK(L_51, L_53);
ArrayElementTypeCheck (L_51, L_54);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(L_53), (XmlNode_t3592213601 *)L_54);
}
IL_013c:
{
Il2CppObject * L_55 = V_8;
NullCheck(L_55);
bool L_56 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_55);
if (L_56)
{
goto IL_0123;
}
}
IL_0148:
{
IL2CPP_LEAVE(0x163, FINALLY_014d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_014d;
}
FINALLY_014d:
{ // begin finally (depth: 1)
{
Il2CppObject * L_57 = V_8;
V_10 = ((Il2CppObject *)IsInst(L_57, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_58 = V_10;
if (L_58)
{
goto IL_015b;
}
}
IL_015a:
{
IL2CPP_END_FINALLY(333)
}
IL_015b:
{
Il2CppObject * L_59 = V_10;
NullCheck(L_59);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_59);
IL2CPP_END_FINALLY(333)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(333)
{
IL2CPP_JUMP_TBL(0x163, IL_0163)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0163:
{
XmlNodeU5BU5D_t1808339196* L_60 = V_3;
return (Il2CppObject *)L_60;
}
IL_0165:
{
TypeData_t3837952962 * L_61 = V_0;
NullCheck(L_61);
Type_t * L_62 = TypeData_get_Type_m2191724548(L_61, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_63 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_62) == ((Il2CppObject*)(Type_t *)L_63))))
{
goto IL_0181;
}
}
{
XmlQualifiedName_t176365656 * L_64 = XmlSerializationReader_ReadNullableQualifiedName_m4264043212(__this, /*hidden argument*/NULL);
return L_64;
}
IL_0181:
{
int32_t L_65 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_65+(int32_t)1)));
TypeData_t3837952962 * L_66 = V_0;
XmlReader_t4229084514 * L_67 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_67);
String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(40 /* System.String System.Xml.XmlReader::ReadElementString() */, L_67);
Il2CppObject * L_69 = XmlCustomFormatter_FromXmlString_m1762936378(NULL /*static, unused*/, L_66, L_68, /*hidden argument*/NULL);
return L_69;
}
}
// System.Xml.XmlNode System.Xml.Serialization.XmlSerializationReader::ReadXmlNode(System.Boolean)
extern "C" XmlNode_t3592213601 * XmlSerializationReader_ReadXmlNode_m2066466327 (XmlSerializationReader_t540589306 * __this, bool ___wrapped, const MethodInfo* method)
{
XmlNode_t3592213601 * V_0 = NULL;
{
int32_t L_0 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_0+(int32_t)1)));
XmlDocument_t3705263098 * L_1 = XmlSerializationReader_get_Document_m483267938(__this, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_2 = __this->get_reader_1();
NullCheck(L_1);
XmlNode_t3592213601 * L_3 = VirtFuncInvoker1< XmlNode_t3592213601 *, XmlReader_t4229084514 * >::Invoke(54 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_1, L_2);
V_0 = L_3;
bool L_4 = ___wrapped;
if (!L_4)
{
goto IL_002d;
}
}
{
XmlNode_t3592213601 * L_5 = V_0;
NullCheck(L_5);
XmlNode_t3592213601 * L_6 = VirtFuncInvoker0< XmlNode_t3592213601 * >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_5);
return L_6;
}
IL_002d:
{
XmlNode_t3592213601 * L_7 = V_0;
return L_7;
}
}
// System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::ReadXmlDocument(System.Boolean)
extern TypeInfo* XmlDocument_t3705263098_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_ReadXmlDocument_m365015991_MetadataUsageId;
extern "C" XmlDocument_t3705263098 * XmlSerializationReader_ReadXmlDocument_m365015991 (XmlSerializationReader_t540589306 * __this, bool ___wrapped, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ReadXmlDocument_m365015991_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlDocument_t3705263098 * V_0 = NULL;
XmlNode_t3592213601 * V_1 = NULL;
{
int32_t L_0 = __this->get_readCount_12();
__this->set_readCount_12(((int32_t)((int32_t)L_0+(int32_t)1)));
bool L_1 = ___wrapped;
if (!L_1)
{
goto IL_001f;
}
}
{
XmlReader_t4229084514 * L_2 = __this->get_reader_1();
NullCheck(L_2);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_2);
}
IL_001f:
{
XmlReader_t4229084514 * L_3 = __this->get_reader_1();
NullCheck(L_3);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_3);
XmlDocument_t3705263098 * L_4 = (XmlDocument_t3705263098 *)il2cpp_codegen_object_new(XmlDocument_t3705263098_il2cpp_TypeInfo_var);
XmlDocument__ctor_m467220425(L_4, /*hidden argument*/NULL);
V_0 = L_4;
XmlDocument_t3705263098 * L_5 = V_0;
XmlReader_t4229084514 * L_6 = __this->get_reader_1();
NullCheck(L_5);
XmlNode_t3592213601 * L_7 = VirtFuncInvoker1< XmlNode_t3592213601 *, XmlReader_t4229084514 * >::Invoke(54 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_5, L_6);
V_1 = L_7;
XmlDocument_t3705263098 * L_8 = V_0;
XmlNode_t3592213601 * L_9 = V_1;
NullCheck(L_8);
VirtFuncInvoker1< XmlNode_t3592213601 *, XmlNode_t3592213601 * >::Invoke(29 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, L_8, L_9);
bool L_10 = ___wrapped;
if (!L_10)
{
goto IL_0057;
}
}
{
XmlReader_t4229084514 * L_11 = __this->get_reader_1();
NullCheck(L_11);
VirtActionInvoker0::Invoke(41 /* System.Void System.Xml.XmlReader::ReadEndElement() */, L_11);
}
IL_0057:
{
XmlDocument_t3705263098 * L_12 = V_0;
return L_12;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader::ShrinkArray(System.Array,System.Int32,System.Type,System.Boolean)
extern "C" Il2CppArray * XmlSerializationReader_ShrinkArray_m1340798607 (XmlSerializationReader_t540589306 * __this, Il2CppArray * ___a, int32_t ___length, Type_t * ___elementType, bool ___isNullable, const MethodInfo* method)
{
Il2CppArray * V_0 = NULL;
{
int32_t L_0 = ___length;
if (L_0)
{
goto IL_000f;
}
}
{
bool L_1 = ___isNullable;
if (!L_1)
{
goto IL_000f;
}
}
{
return (Il2CppArray *)NULL;
}
IL_000f:
{
Il2CppArray * L_2 = ___a;
if (L_2)
{
goto IL_001d;
}
}
{
Type_t * L_3 = ___elementType;
int32_t L_4 = ___length;
Il2CppArray * L_5 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001d:
{
Il2CppArray * L_6 = ___a;
NullCheck(L_6);
int32_t L_7 = Array_get_Length_m1203127607(L_6, /*hidden argument*/NULL);
int32_t L_8 = ___length;
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_002b;
}
}
{
Il2CppArray * L_9 = ___a;
return L_9;
}
IL_002b:
{
Type_t * L_10 = ___elementType;
int32_t L_11 = ___length;
Il2CppArray * L_12 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL);
V_0 = L_12;
Il2CppArray * L_13 = ___a;
Il2CppArray * L_14 = V_0;
int32_t L_15 = ___length;
Array_Copy_m3799309042(NULL /*static, unused*/, L_13, L_14, L_15, /*hidden argument*/NULL);
Il2CppArray * L_16 = V_0;
return L_16;
}
}
// System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ToXmlQualifiedName(System.String)
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral164058661;
extern Il2CppCodeGenString* _stringLiteral1670434204;
extern const uint32_t XmlSerializationReader_ToXmlQualifiedName_m574550865_MetadataUsageId;
extern "C" XmlQualifiedName_t176365656 * XmlSerializationReader_ToXmlQualifiedName_m574550865 (XmlSerializationReader_t540589306 * __this, String_t* ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_ToXmlQualifiedName_m574550865_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
{
String_t* L_0 = ___value;
NullCheck(L_0);
int32_t L_1 = String_LastIndexOf_m3245805612(L_0, ((int32_t)58), /*hidden argument*/NULL);
V_2 = L_1;
String_t* L_2 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
String_t* L_3 = XmlConvert_DecodeName_m3628614327(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
V_3 = L_3;
int32_t L_4 = V_2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_003f;
}
}
{
XmlReader_t4229084514 * L_5 = __this->get_reader_1();
NullCheck(L_5);
XmlNameTable_t3232213908 * L_6 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_5);
String_t* L_7 = V_3;
NullCheck(L_6);
String_t* L_8 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, L_7);
V_0 = L_8;
XmlReader_t4229084514 * L_9 = __this->get_reader_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
NullCheck(L_9);
String_t* L_11 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(31 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_9, L_10);
V_1 = L_11;
goto IL_008e;
}
IL_003f:
{
String_t* L_12 = ___value;
int32_t L_13 = V_2;
NullCheck(L_12);
String_t* L_14 = String_Substring_m675079568(L_12, 0, L_13, /*hidden argument*/NULL);
V_4 = L_14;
XmlReader_t4229084514 * L_15 = __this->get_reader_1();
String_t* L_16 = V_4;
NullCheck(L_15);
String_t* L_17 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(31 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_15, L_16);
V_1 = L_17;
String_t* L_18 = V_1;
if (L_18)
{
goto IL_0074;
}
}
{
String_t* L_19 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_20 = String_Concat_m1825781833(NULL /*static, unused*/, _stringLiteral164058661, L_19, _stringLiteral1670434204, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_21 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
IL_0074:
{
XmlReader_t4229084514 * L_22 = __this->get_reader_1();
NullCheck(L_22);
XmlNameTable_t3232213908 * L_23 = VirtFuncInvoker0< XmlNameTable_t3232213908 * >::Invoke(17 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_22);
String_t* L_24 = ___value;
int32_t L_25 = V_2;
NullCheck(L_24);
String_t* L_26 = String_Substring_m2809233063(L_24, ((int32_t)((int32_t)L_25+(int32_t)1)), /*hidden argument*/NULL);
NullCheck(L_23);
String_t* L_27 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_23, L_26);
V_0 = L_27;
}
IL_008e:
{
String_t* L_28 = V_0;
String_t* L_29 = V_1;
XmlQualifiedName_t176365656 * L_30 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_30, L_28, L_29, /*hidden argument*/NULL);
return L_30;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownAttribute(System.Object,System.Xml.XmlAttribute,System.String)
extern TypeInfo* XmlTextReader_t3719122287_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttributeEventArgs_t966950224_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_UnknownAttribute_m531743740_MetadataUsageId;
extern "C" void XmlSerializationReader_UnknownAttribute_m531743740 (XmlSerializationReader_t540589306 * __this, Il2CppObject * ___o, XmlAttribute_t2022155821 * ___attr, String_t* ___qnames, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_UnknownAttribute_m531743740_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlAttributeEventArgs_t966950224 * V_2 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
if (!((XmlTextReader_t3719122287 *)IsInstClass(L_0, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)))
{
goto IL_0037;
}
}
{
XmlReader_t4229084514 * L_1 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(48 /* System.Int32 System.Xml.XmlTextReader::get_LineNumber() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_0 = L_2;
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(49 /* System.Int32 System.Xml.XmlTextReader::get_LinePosition() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_1 = L_4;
goto IL_003b;
}
IL_0037:
{
V_0 = 0;
V_1 = 0;
}
IL_003b:
{
XmlAttribute_t2022155821 * L_5 = ___attr;
int32_t L_6 = V_0;
int32_t L_7 = V_1;
Il2CppObject * L_8 = ___o;
XmlAttributeEventArgs_t966950224 * L_9 = (XmlAttributeEventArgs_t966950224 *)il2cpp_codegen_object_new(XmlAttributeEventArgs_t966950224_il2cpp_TypeInfo_var);
XmlAttributeEventArgs__ctor_m3149969214(L_9, L_5, L_6, L_7, L_8, /*hidden argument*/NULL);
V_2 = L_9;
XmlAttributeEventArgs_t966950224 * L_10 = V_2;
String_t* L_11 = ___qnames;
NullCheck(L_10);
XmlAttributeEventArgs_set_ExpectedAttributes_m4087893561(L_10, L_11, /*hidden argument*/NULL);
XmlSerializer_t1888860807 * L_12 = __this->get_eventSource_9();
if (!L_12)
{
goto IL_0063;
}
}
{
XmlSerializer_t1888860807 * L_13 = __this->get_eventSource_9();
XmlAttributeEventArgs_t966950224 * L_14 = V_2;
NullCheck(L_13);
VirtActionInvoker1< XmlAttributeEventArgs_t966950224 * >::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownAttribute(System.Xml.Serialization.XmlAttributeEventArgs) */, L_13, L_14);
}
IL_0063:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownElement(System.Object,System.Xml.XmlElement,System.String)
extern TypeInfo* XmlTextReader_t3719122287_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElementEventArgs_t45031088_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_UnknownElement_m2212366844_MetadataUsageId;
extern "C" void XmlSerializationReader_UnknownElement_m2212366844 (XmlSerializationReader_t540589306 * __this, Il2CppObject * ___o, XmlElement_t3562928333 * ___elem, String_t* ___qnames, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_UnknownElement_m2212366844_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlElementEventArgs_t45031088 * V_2 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
if (!((XmlTextReader_t3719122287 *)IsInstClass(L_0, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)))
{
goto IL_0037;
}
}
{
XmlReader_t4229084514 * L_1 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(48 /* System.Int32 System.Xml.XmlTextReader::get_LineNumber() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_0 = L_2;
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(49 /* System.Int32 System.Xml.XmlTextReader::get_LinePosition() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_1 = L_4;
goto IL_003b;
}
IL_0037:
{
V_0 = 0;
V_1 = 0;
}
IL_003b:
{
XmlElement_t3562928333 * L_5 = ___elem;
int32_t L_6 = V_0;
int32_t L_7 = V_1;
Il2CppObject * L_8 = ___o;
XmlElementEventArgs_t45031088 * L_9 = (XmlElementEventArgs_t45031088 *)il2cpp_codegen_object_new(XmlElementEventArgs_t45031088_il2cpp_TypeInfo_var);
XmlElementEventArgs__ctor_m1629867902(L_9, L_5, L_6, L_7, L_8, /*hidden argument*/NULL);
V_2 = L_9;
XmlElementEventArgs_t45031088 * L_10 = V_2;
String_t* L_11 = ___qnames;
NullCheck(L_10);
XmlElementEventArgs_set_ExpectedElements_m1260204665(L_10, L_11, /*hidden argument*/NULL);
XmlSerializer_t1888860807 * L_12 = __this->get_eventSource_9();
if (!L_12)
{
goto IL_0063;
}
}
{
XmlSerializer_t1888860807 * L_13 = __this->get_eventSource_9();
XmlElementEventArgs_t45031088 * L_14 = V_2;
NullCheck(L_13);
VirtActionInvoker1< XmlElementEventArgs_t45031088 * >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownElement(System.Xml.Serialization.XmlElementEventArgs) */, L_13, L_14);
}
IL_0063:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object)
extern "C" void XmlSerializationReader_UnknownNode_m3502370841 (XmlSerializationReader_t540589306 * __this, Il2CppObject * ___o, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___o;
XmlSerializationReader_UnknownNode_m1971615893(__this, L_0, (String_t*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object,System.String)
extern "C" void XmlSerializationReader_UnknownNode_m1971615893 (XmlSerializationReader_t540589306 * __this, Il2CppObject * ___o, String_t* ___qnames, const MethodInfo* method)
{
{
XmlNode_t3592213601 * L_0 = XmlSerializationReader_ReadXmlNode_m2066466327(__this, (bool)0, /*hidden argument*/NULL);
Il2CppObject * L_1 = ___o;
String_t* L_2 = ___qnames;
XmlSerializationReader_OnUnknownNode_m974550115(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::OnUnknownNode(System.Xml.XmlNode,System.Object,System.String)
extern TypeInfo* XmlTextReader_t3719122287_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttribute_t2022155821_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElement_t3562928333_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNodeEventArgs_t619448732_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4029852033;
extern const uint32_t XmlSerializationReader_OnUnknownNode_m974550115_MetadataUsageId;
extern "C" void XmlSerializationReader_OnUnknownNode_m974550115 (XmlSerializationReader_t540589306 * __this, XmlNode_t3592213601 * ___node, Il2CppObject * ___o, String_t* ___qnames, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_OnUnknownNode_m974550115_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
if (!((XmlTextReader_t3719122287 *)IsInstClass(L_0, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)))
{
goto IL_0037;
}
}
{
XmlReader_t4229084514 * L_1 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(48 /* System.Int32 System.Xml.XmlTextReader::get_LineNumber() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_1, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_0 = L_2;
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(49 /* System.Int32 System.Xml.XmlTextReader::get_LinePosition() */, ((XmlTextReader_t3719122287 *)CastclassClass(L_3, XmlTextReader_t3719122287_il2cpp_TypeInfo_var)));
V_1 = L_4;
goto IL_003b;
}
IL_0037:
{
V_0 = 0;
V_1 = 0;
}
IL_003b:
{
XmlNode_t3592213601 * L_5 = ___node;
if (!((XmlAttribute_t2022155821 *)IsInstClass(L_5, XmlAttribute_t2022155821_il2cpp_TypeInfo_var)))
{
goto IL_0055;
}
}
{
Il2CppObject * L_6 = ___o;
XmlNode_t3592213601 * L_7 = ___node;
String_t* L_8 = ___qnames;
XmlSerializationReader_UnknownAttribute_m531743740(__this, L_6, ((XmlAttribute_t2022155821 *)CastclassClass(L_7, XmlAttribute_t2022155821_il2cpp_TypeInfo_var)), L_8, /*hidden argument*/NULL);
return;
}
IL_0055:
{
XmlNode_t3592213601 * L_9 = ___node;
if (!((XmlElement_t3562928333 *)IsInstClass(L_9, XmlElement_t3562928333_il2cpp_TypeInfo_var)))
{
goto IL_006f;
}
}
{
Il2CppObject * L_10 = ___o;
XmlNode_t3592213601 * L_11 = ___node;
String_t* L_12 = ___qnames;
XmlSerializationReader_UnknownElement_m2212366844(__this, L_10, ((XmlElement_t3562928333 *)CastclassClass(L_11, XmlElement_t3562928333_il2cpp_TypeInfo_var)), L_12, /*hidden argument*/NULL);
return;
}
IL_006f:
{
XmlSerializer_t1888860807 * L_13 = __this->get_eventSource_9();
if (!L_13)
{
goto IL_00ab;
}
}
{
XmlSerializer_t1888860807 * L_14 = __this->get_eventSource_9();
int32_t L_15 = V_0;
int32_t L_16 = V_1;
XmlNode_t3592213601 * L_17 = ___node;
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlNode::get_LocalName() */, L_17);
XmlNode_t3592213601 * L_19 = ___node;
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlNode::get_Name() */, L_19);
XmlNode_t3592213601 * L_21 = ___node;
NullCheck(L_21);
String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_21);
XmlNode_t3592213601 * L_23 = ___node;
NullCheck(L_23);
int32_t L_24 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_23);
Il2CppObject * L_25 = ___o;
XmlNode_t3592213601 * L_26 = ___node;
NullCheck(L_26);
String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(24 /* System.String System.Xml.XmlNode::get_Value() */, L_26);
XmlNodeEventArgs_t619448732 * L_28 = (XmlNodeEventArgs_t619448732 *)il2cpp_codegen_object_new(XmlNodeEventArgs_t619448732_il2cpp_TypeInfo_var);
XmlNodeEventArgs__ctor_m490603432(L_28, L_15, L_16, L_18, L_20, L_22, L_24, L_25, L_27, /*hidden argument*/NULL);
NullCheck(L_14);
VirtActionInvoker1< XmlNodeEventArgs_t619448732 * >::Invoke(6 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnknownNode(System.Xml.Serialization.XmlNodeEventArgs) */, L_14, L_28);
}
IL_00ab:
{
XmlReader_t4229084514 * L_29 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_29);
int32_t L_30 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_29);
if ((!(((uint32_t)L_30) == ((uint32_t)3))))
{
goto IL_00c7;
}
}
{
InvalidOperationException_t2420574324 * L_31 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_31, _stringLiteral4029852033, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31);
}
IL_00c7:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader::UnreferencedObject(System.String,System.Object)
extern TypeInfo* UnreferencedObjectEventArgs_t3619478372_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReader_UnreferencedObject_m605135116_MetadataUsageId;
extern "C" void XmlSerializationReader_UnreferencedObject_m605135116 (XmlSerializationReader_t540589306 * __this, String_t* ___id, Il2CppObject * ___o, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReader_UnreferencedObject_m605135116_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlSerializer_t1888860807 * L_0 = __this->get_eventSource_9();
if (!L_0)
{
goto IL_001d;
}
}
{
XmlSerializer_t1888860807 * L_1 = __this->get_eventSource_9();
Il2CppObject * L_2 = ___o;
String_t* L_3 = ___id;
UnreferencedObjectEventArgs_t3619478372 * L_4 = (UnreferencedObjectEventArgs_t3619478372 *)il2cpp_codegen_object_new(UnreferencedObjectEventArgs_t3619478372_il2cpp_TypeInfo_var);
UnreferencedObjectEventArgs__ctor_m1650256605(L_4, L_2, L_3, /*hidden argument*/NULL);
NullCheck(L_1);
VirtActionInvoker1< UnreferencedObjectEventArgs_t3619478372 * >::Invoke(7 /* System.Void System.Xml.Serialization.XmlSerializer::OnUnreferencedObject(System.Xml.Serialization.UnreferencedObjectEventArgs) */, L_1, L_4);
}
IL_001d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String)
extern "C" void CollectionFixup__ctor_m492916146 (CollectionFixup_t40072530 * __this, Il2CppObject * ___collection, XmlSerializationCollectionFixupCallback_t2598659068 * ___callback, String_t* ___id, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlSerializationCollectionFixupCallback_t2598659068 * L_0 = ___callback;
__this->set_callback_0(L_0);
Il2CppObject * L_1 = ___collection;
__this->set_collection_1(L_1);
String_t* L_2 = ___id;
__this->set_id_3(L_2);
return;
}
}
// System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Callback()
extern "C" XmlSerializationCollectionFixupCallback_t2598659068 * CollectionFixup_get_Callback_m3564295581 (CollectionFixup_t40072530 * __this, const MethodInfo* method)
{
{
XmlSerializationCollectionFixupCallback_t2598659068 * L_0 = __this->get_callback_0();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Collection()
extern "C" Il2CppObject * CollectionFixup_get_Collection_m1695159720 (CollectionFixup_t40072530 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get_collection_1();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Id()
extern "C" Il2CppObject * CollectionFixup_get_Id_m551641573 (CollectionFixup_t40072530 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_id_3();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_CollectionItems()
extern "C" Il2CppObject * CollectionFixup_get_CollectionItems_m2098517082 (CollectionFixup_t40072530 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get_collectionItems_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::set_CollectionItems(System.Object)
extern "C" void CollectionFixup_set_CollectionItems_m517186627 (CollectionFixup_t40072530 * __this, Il2CppObject * ___value, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___value;
__this->set_collectionItems_2(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::.ctor(System.Array,System.Int32,System.String)
extern "C" void CollectionItemFixup__ctor_m2863526956 (CollectionItemFixup_t3301129471 * __this, Il2CppArray * ___list, int32_t ___index, String_t* ___id, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Il2CppArray * L_0 = ___list;
__this->set_list_0(L_0);
int32_t L_1 = ___index;
__this->set_index_1(L_1);
String_t* L_2 = ___id;
__this->set_id_2(L_2);
return;
}
}
// System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Collection()
extern "C" Il2CppArray * CollectionItemFixup_get_Collection_m630049811 (CollectionItemFixup_t3301129471 * __this, const MethodInfo* method)
{
{
Il2CppArray * L_0 = __this->get_list_0();
return L_0;
}
}
// System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Index()
extern "C" int32_t CollectionItemFixup_get_Index_m1750359370 (CollectionItemFixup_t3301129471 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get_index_1();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Id()
extern "C" String_t* CollectionItemFixup_get_Id_m1997493156 (CollectionItemFixup_t3301129471 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_id_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32)
extern TypeInfo* StringU5BU5D_t2956870243_il2cpp_TypeInfo_var;
extern const uint32_t Fixup__ctor_m366540637_MetadataUsageId;
extern "C" void Fixup__ctor_m366540637 (Fixup_t67893584 * __this, Il2CppObject * ___o, XmlSerializationFixupCallback_t3787251386 * ___callback, int32_t ___count, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (Fixup__ctor_m366540637_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Il2CppObject * L_0 = ___o;
__this->set_source_0(L_0);
XmlSerializationFixupCallback_t3787251386 * L_1 = ___callback;
__this->set_callback_2(L_1);
int32_t L_2 = ___count;
__this->set_ids_1(((StringU5BU5D_t2956870243*)SZArrayNew(StringU5BU5D_t2956870243_il2cpp_TypeInfo_var, (uint32_t)L_2)));
return;
}
}
// System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::get_Callback()
extern "C" XmlSerializationFixupCallback_t3787251386 * Fixup_get_Callback_m3508086041 (Fixup_t67893584 * __this, const MethodInfo* method)
{
{
XmlSerializationFixupCallback_t3787251386 * L_0 = __this->get_callback_2();
return L_0;
}
}
// System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids()
extern "C" StringU5BU5D_t2956870243* Fixup_get_Ids_m368502302 (Fixup_t67893584 * __this, const MethodInfo* method)
{
{
StringU5BU5D_t2956870243* L_0 = __this->get_ids_1();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source()
extern "C" Il2CppObject * Fixup_get_Source_m3149781347 (Fixup_t67893584 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get_source_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::.ctor()
extern "C" void WriteCallbackInfo__ctor_m2087763086 (WriteCallbackInfo_t2990892018 * __this, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.ctor(System.Xml.Serialization.XmlMapping)
extern "C" void XmlSerializationReaderInterpreter__ctor_m1586101900 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlMapping_t2344951413 * ___typeMap, const MethodInfo* method)
{
{
XmlSerializationReader__ctor_m3070874705(__this, /*hidden argument*/NULL);
XmlMapping_t2344951413 * L_0 = ___typeMap;
__this->set__typeMap_25(L_0);
XmlMapping_t2344951413 * L_1 = ___typeMap;
NullCheck(L_1);
int32_t L_2 = XmlMapping_get_Format_m561560336(L_1, /*hidden argument*/NULL);
__this->set__format_26(L_2);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.cctor()
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3452086086;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern const uint32_t XmlSerializationReaderInterpreter__cctor_m42176562_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter__cctor_m42176562 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter__cctor_m42176562_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_0, _stringLiteral3452086086, _stringLiteral1440052060, /*hidden argument*/NULL);
((XmlSerializationReaderInterpreter_t1865114396_StaticFields*)XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var->static_fields)->set_AnyType_27(L_0);
((XmlSerializationReaderInterpreter_t1865114396_StaticFields*)XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var->static_fields)->set_empty_array_28(((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)0)));
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitCallbacks()
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern TypeInfo* ReaderCallbackInfo_t922331926_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationReadCallback_t3159962994_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const MethodInfo* ReaderCallbackInfo_ReadObject_m2972116574_MethodInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_InitCallbacks_m441346583_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_InitCallbacks_m441346583 (XmlSerializationReaderInterpreter_t1865114396 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_InitCallbacks_m441346583_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ArrayList_t2121638921 * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
ReaderCallbackInfo_t922331926 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlMapping_t2344951413 * L_0 = __this->get__typeMap_25();
NullCheck(L_0);
ArrayList_t2121638921 * L_1 = XmlMapping_get_RelatedMaps_m3510136543(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ArrayList_t2121638921 * L_2 = V_0;
if (!L_2)
{
goto IL_00a2;
}
}
{
ArrayList_t2121638921 * L_3 = V_0;
NullCheck(L_3);
Il2CppObject * L_4 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3);
V_2 = L_4;
}
IL_0019:
try
{ // begin try (depth: 1)
{
goto IL_007d;
}
IL_001e:
{
Il2CppObject * L_5 = V_2;
NullCheck(L_5);
Il2CppObject * L_6 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_5);
V_1 = ((XmlTypeMapping_t988104027 *)CastclassClass(L_6, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_7 = V_1;
NullCheck(L_7);
TypeData_t3837952962 * L_8 = XmlTypeMapping_get_TypeData_m3898113510(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
int32_t L_9 = TypeData_get_SchemaType_m1693934194(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_9) == ((int32_t)4)))
{
goto IL_004c;
}
}
IL_003b:
{
XmlTypeMapping_t988104027 * L_10 = V_1;
NullCheck(L_10);
TypeData_t3837952962 * L_11 = XmlTypeMapping_get_TypeData_m3898113510(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
int32_t L_12 = TypeData_get_SchemaType_m1693934194(L_11, /*hidden argument*/NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_007d;
}
}
IL_004c:
{
XmlTypeMapping_t988104027 * L_13 = V_1;
ReaderCallbackInfo_t922331926 * L_14 = (ReaderCallbackInfo_t922331926 *)il2cpp_codegen_object_new(ReaderCallbackInfo_t922331926_il2cpp_TypeInfo_var);
ReaderCallbackInfo__ctor_m2066026711(L_14, __this, L_13, /*hidden argument*/NULL);
V_3 = L_14;
XmlTypeMapping_t988104027 * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = XmlTypeMapping_get_XmlType_m1769290969(L_15, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_17 = V_1;
NullCheck(L_17);
String_t* L_18 = XmlMapping_get_Namespace_m4151275177(L_17, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_19 = V_1;
NullCheck(L_19);
TypeData_t3837952962 * L_20 = XmlTypeMapping_get_TypeData_m3898113510(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Type_t * L_21 = TypeData_get_Type_m2191724548(L_20, /*hidden argument*/NULL);
ReaderCallbackInfo_t922331926 * L_22 = V_3;
IntPtr_t L_23;
L_23.set_m_value_0((void*)ReaderCallbackInfo_ReadObject_m2972116574_MethodInfo_var);
XmlSerializationReadCallback_t3159962994 * L_24 = (XmlSerializationReadCallback_t3159962994 *)il2cpp_codegen_object_new(XmlSerializationReadCallback_t3159962994_il2cpp_TypeInfo_var);
XmlSerializationReadCallback__ctor_m676352297(L_24, L_22, L_23, /*hidden argument*/NULL);
XmlSerializationReader_AddReadCallback_m511534794(__this, L_16, L_18, L_21, L_24, /*hidden argument*/NULL);
}
IL_007d:
{
Il2CppObject * L_25 = V_2;
NullCheck(L_25);
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_001e;
}
}
IL_0088:
{
IL2CPP_LEAVE(0xA2, FINALLY_008d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_008d;
}
FINALLY_008d:
{ // begin finally (depth: 1)
{
Il2CppObject * L_27 = V_2;
V_4 = ((Il2CppObject *)IsInst(L_27, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_28 = V_4;
if (L_28)
{
goto IL_009a;
}
}
IL_0099:
{
IL2CPP_END_FINALLY(141)
}
IL_009a:
{
Il2CppObject * L_29 = V_4;
NullCheck(L_29);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_29);
IL2CPP_END_FINALLY(141)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(141)
{
IL2CPP_JUMP_TBL(0xA2, IL_00a2)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00a2:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitIDs()
extern "C" void XmlSerializationReaderInterpreter_InitIDs_m2735550369 (XmlSerializationReaderInterpreter_t1865114396 * __this, const MethodInfo* method)
{
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot()
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern TypeInfo* XmlMembersMapping_t2913331946_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadRoot_m120589334_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadRoot_m120589334 (XmlSerializationReaderInterpreter_t1865114396 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadRoot_m120589334_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlMapping_t2344951413 * L_1 = __this->get__typeMap_25();
if (!((XmlTypeMapping_t988104027 *)IsInstClass(L_1, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var)))
{
goto IL_004c;
}
}
{
int32_t L_2 = __this->get__format_26();
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_003a;
}
}
{
XmlMapping_t2344951413 * L_3 = __this->get__typeMap_25();
Il2CppObject * L_4 = XmlSerializationReaderInterpreter_ReadRoot_m208594379(__this, ((XmlTypeMapping_t988104027 *)CastclassClass(L_3, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_4;
}
IL_003a:
{
XmlMapping_t2344951413 * L_5 = __this->get__typeMap_25();
Il2CppObject * L_6 = XmlSerializationReaderInterpreter_ReadEncodedObject_m368094182(__this, ((XmlTypeMapping_t988104027 *)CastclassClass(L_5, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_6;
}
IL_004c:
{
XmlMapping_t2344951413 * L_7 = __this->get__typeMap_25();
Il2CppObject * L_8 = VirtFuncInvoker1< Il2CppObject *, XmlMembersMapping_t2913331946 * >::Invoke(6 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping) */, __this, ((XmlMembersMapping_t2913331946 *)CastclassClass(L_7, XmlMembersMapping_t2913331946_il2cpp_TypeInfo_var)));
return L_8;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEncodedObject(System.Xml.Serialization.XmlTypeMapping)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadEncodedObject_m368094182_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadEncodedObject_m368094182 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadEncodedObject_m368094182_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
{
V_0 = NULL;
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4229084514 * L_1 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_006d;
}
}
{
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3);
XmlTypeMapping_t988104027 * L_5 = ___typeMap;
NullCheck(L_5);
String_t* L_6 = XmlMapping_get_ElementName_m2753779381(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_7 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0061;
}
}
{
XmlReader_t4229084514 * L_8 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_8);
XmlTypeMapping_t988104027 * L_10 = ___typeMap;
NullCheck(L_10);
String_t* L_11 = XmlMapping_get_Namespace_m4151275177(L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_12 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_9, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0061;
}
}
{
Il2CppObject * L_13 = XmlSerializationReader_ReadReferencedElement_m2806902705(__this, /*hidden argument*/NULL);
V_0 = L_13;
goto IL_0068;
}
IL_0061:
{
Exception_t1967233988 * L_14 = XmlSerializationReader_CreateUnknownNodeException_m2252572497(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14);
}
IL_0068:
{
goto IL_0074;
}
IL_006d:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
}
IL_0074:
{
XmlSerializationReader_ReadReferencedElements_m1322468249(__this, /*hidden argument*/NULL);
Il2CppObject * L_15 = V_0;
return L_15;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var;
extern TypeInfo* XmlConvert_t1882388356_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3506402;
extern Il2CppCodeGenString* _stringLiteral3403005341;
extern const uint32_t XmlSerializationReaderInterpreter_ReadMessage_m3644585757_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadMessage_m3644585757 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlMembersMapping_t2913331946 * ___typeMap, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadMessage_m3644585757_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ObjectU5BU5D_t11523773* V_0 = NULL;
ArrayList_t2121638921 * V_1 = NULL;
int32_t V_2 = 0;
XmlTypeMapMember_t757519331 * V_3 = NULL;
String_t* V_4 = NULL;
{
XmlMembersMapping_t2913331946 * L_0 = ___typeMap;
NullCheck(L_0);
int32_t L_1 = XmlMembersMapping_get_Count_m3479698991(L_0, /*hidden argument*/NULL);
V_0 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)L_1));
XmlMembersMapping_t2913331946 * L_2 = ___typeMap;
NullCheck(L_2);
bool L_3 = XmlMembersMapping_get_HasWrapperElement_m915764701(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_01b4;
}
}
{
XmlMembersMapping_t2913331946 * L_4 = ___typeMap;
NullCheck(L_4);
ObjectMap_t669501211 * L_5 = XmlMapping_get_ObjectMap_m3032707184(L_4, /*hidden argument*/NULL);
NullCheck(((ClassMap_t912207490 *)CastclassClass(L_5, ClassMap_t912207490_il2cpp_TypeInfo_var)));
ArrayList_t2121638921 * L_6 = ClassMap_get_AllMembers_m2801991306(((ClassMap_t912207490 *)CastclassClass(L_5, ClassMap_t912207490_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_1 = L_6;
V_2 = 0;
goto IL_0075;
}
IL_002f:
{
ArrayList_t2121638921 * L_7 = V_1;
int32_t L_8 = V_2;
NullCheck(L_7);
Il2CppObject * L_9 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_7, L_8);
V_3 = ((XmlTypeMapMember_t757519331 *)CastclassClass(L_9, XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var));
XmlTypeMapMember_t757519331 * L_10 = V_3;
NullCheck(L_10);
bool L_11 = XmlTypeMapMember_get_IsReturnValue_m41810588(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0071;
}
}
{
XmlTypeMapMember_t757519331 * L_12 = V_3;
NullCheck(L_12);
TypeData_t3837952962 * L_13 = XmlTypeMapMember_get_TypeData_m3428473262(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
bool L_14 = TypeData_get_IsValueType_m321491079(L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0071;
}
}
{
XmlTypeMapMember_t757519331 * L_15 = V_3;
ObjectU5BU5D_t11523773* L_16 = V_0;
XmlTypeMapMember_t757519331 * L_17 = V_3;
NullCheck(L_17);
TypeData_t3837952962 * L_18 = XmlTypeMapMember_get_TypeData_m3428473262(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
Type_t * L_19 = TypeData_get_Type_m2191724548(L_18, /*hidden argument*/NULL);
Il2CppObject * L_20 = XmlSerializationReaderInterpreter_CreateInstance_m893565418(__this, L_19, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m2685661441(__this, L_15, (Il2CppObject *)(Il2CppObject *)L_16, L_20, (bool)1, /*hidden argument*/NULL);
}
IL_0071:
{
int32_t L_21 = V_2;
V_2 = ((int32_t)((int32_t)L_21+(int32_t)1));
}
IL_0075:
{
int32_t L_22 = V_2;
ArrayList_t2121638921 * L_23 = V_1;
NullCheck(L_23);
int32_t L_24 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_23);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_002f;
}
}
{
int32_t L_25 = __this->get__format_26();
if (L_25)
{
goto IL_00e4;
}
}
{
goto IL_00d3;
}
IL_0091:
{
XmlReader_t4229084514 * L_26 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_26);
String_t* L_27 = VirtFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(28 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_26, _stringLiteral3506402, _stringLiteral3403005341);
V_4 = L_27;
String_t* L_28 = V_4;
if (!L_28)
{
goto IL_00bb;
}
}
{
String_t* L_29 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1882388356_il2cpp_TypeInfo_var);
bool L_30 = XmlConvert_ToBoolean_m3758854944(NULL /*static, unused*/, L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00c0;
}
}
IL_00bb:
{
goto IL_00e4;
}
IL_00c0:
{
XmlSerializationReader_ReadReferencedElement_m2806902705(__this, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_31 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_31);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_31);
}
IL_00d3:
{
XmlReader_t4229084514 * L_32 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_32);
int32_t L_33 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_32);
if ((((int32_t)L_33) == ((int32_t)1)))
{
goto IL_0091;
}
}
IL_00e4:
{
goto IL_018c;
}
IL_00e9:
{
XmlReader_t4229084514 * L_34 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
XmlMembersMapping_t2913331946 * L_35 = ___typeMap;
NullCheck(L_35);
String_t* L_36 = XmlMapping_get_ElementName_m2753779381(L_35, /*hidden argument*/NULL);
XmlMembersMapping_t2913331946 * L_37 = ___typeMap;
NullCheck(L_37);
String_t* L_38 = XmlMapping_get_Namespace_m4151275177(L_37, /*hidden argument*/NULL);
NullCheck(L_34);
bool L_39 = VirtFuncInvoker2< bool, String_t*, String_t* >::Invoke(30 /* System.Boolean System.Xml.XmlReader::IsStartElement(System.String,System.String) */, L_34, L_36, L_38);
if (L_39)
{
goto IL_0110;
}
}
{
int32_t L_40 = __this->get__format_26();
if (L_40)
{
goto IL_0179;
}
}
IL_0110:
{
XmlMembersMapping_t2913331946 * L_41 = ___typeMap;
NullCheck(L_41);
ObjectMap_t669501211 * L_42 = XmlMapping_get_ObjectMap_m3032707184(L_41, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_43 = V_0;
XmlSerializationReaderInterpreter_ReadAttributeMembers_m771506417(__this, ((ClassMap_t912207490 *)CastclassClass(L_42, ClassMap_t912207490_il2cpp_TypeInfo_var)), (Il2CppObject *)(Il2CppObject *)L_43, (bool)1, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_44 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_44);
bool L_45 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_44);
if (!L_45)
{
goto IL_014f;
}
}
{
XmlReader_t4229084514 * L_46 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_46);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_46);
XmlReader_t4229084514 * L_47 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_47);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_47);
goto IL_018c;
}
IL_014f:
{
XmlReader_t4229084514 * L_48 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_48);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_48);
XmlMembersMapping_t2913331946 * L_49 = ___typeMap;
NullCheck(L_49);
ObjectMap_t669501211 * L_50 = XmlMapping_get_ObjectMap_m3032707184(L_49, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_51 = V_0;
XmlSerializationReaderInterpreter_ReadMembers_m3531833708(__this, ((ClassMap_t912207490 *)CastclassClass(L_50, ClassMap_t912207490_il2cpp_TypeInfo_var)), (Il2CppObject *)(Il2CppObject *)L_51, (bool)1, (bool)0, /*hidden argument*/NULL);
XmlSerializationReader_ReadEndElement_m3127481962(__this, /*hidden argument*/NULL);
goto IL_01af;
}
IL_0179:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_52 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_52);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_52);
}
IL_018c:
{
XmlReader_t4229084514 * L_53 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_53);
int32_t L_54 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_53);
if ((((int32_t)L_54) == ((int32_t)((int32_t)15))))
{
goto IL_01af;
}
}
{
XmlReader_t4229084514 * L_55 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_55);
int32_t L_56 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_55);
if ((((int32_t)L_56) == ((int32_t)1)))
{
goto IL_00e9;
}
}
IL_01af:
{
goto IL_01d0;
}
IL_01b4:
{
XmlMembersMapping_t2913331946 * L_57 = ___typeMap;
NullCheck(L_57);
ObjectMap_t669501211 * L_58 = XmlMapping_get_ObjectMap_m3032707184(L_57, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_59 = V_0;
int32_t L_60 = __this->get__format_26();
XmlSerializationReaderInterpreter_ReadMembers_m3531833708(__this, ((ClassMap_t912207490 *)CastclassClass(L_58, ClassMap_t912207490_il2cpp_TypeInfo_var)), (Il2CppObject *)(Il2CppObject *)L_59, (bool)1, (bool)((((int32_t)L_60) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
}
IL_01d0:
{
int32_t L_61 = __this->get__format_26();
if (L_61)
{
goto IL_01e1;
}
}
{
XmlSerializationReader_ReadReferencedElements_m1322468249(__this, /*hidden argument*/NULL);
}
IL_01e1:
{
ObjectU5BU5D_t11523773* L_62 = V_0;
return (Il2CppObject *)L_62;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot(System.Xml.Serialization.XmlTypeMapping)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadRoot_m208594379_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadRoot_m208594379 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___rootMap, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadRoot_m208594379_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapping_t988104027 * L_0 = ___rootMap;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapping_get_TypeData_m3898113510(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = TypeData_get_SchemaType_m1693934194(L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)6))))
{
goto IL_001a;
}
}
{
XmlTypeMapping_t988104027 * L_3 = ___rootMap;
Il2CppObject * L_4 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_m2666956979(__this, L_3, (bool)1, /*hidden argument*/NULL);
return L_4;
}
IL_001a:
{
XmlReader_t4229084514 * L_5 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_5);
XmlTypeMapping_t988104027 * L_7 = ___rootMap;
NullCheck(L_7);
String_t* L_8 = XmlMapping_get_ElementName_m2753779381(L_7, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_9 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_6, L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0050;
}
}
{
XmlReader_t4229084514 * L_10 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_10);
XmlTypeMapping_t988104027 * L_12 = ___rootMap;
NullCheck(L_12);
String_t* L_13 = XmlMapping_get_Namespace_m4151275177(L_12, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_14 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0057;
}
}
IL_0050:
{
Exception_t1967233988 * L_15 = XmlSerializationReader_CreateUnknownNodeException_m2252572497(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15);
}
IL_0057:
{
XmlTypeMapping_t988104027 * L_16 = ___rootMap;
XmlTypeMapping_t988104027 * L_17 = ___rootMap;
NullCheck(L_17);
bool L_18 = XmlTypeMapping_get_IsNullable_m276935072(L_17, /*hidden argument*/NULL);
Il2CppObject * L_19 = VirtFuncInvoker3< Il2CppObject *, XmlTypeMapping_t988104027 *, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_16, L_18, (bool)1);
return L_19;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean)
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3483136297;
extern const uint32_t XmlSerializationReaderInterpreter_ReadObject_m4289503918_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadObject_m4289503918 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, bool ___checkType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadObject_m4289503918_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapping_get_TypeData_m3898113510(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = TypeData_get_SchemaType_m1693934194(L_1, /*hidden argument*/NULL);
V_0 = L_2;
int32_t L_3 = V_0;
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 0)
{
goto IL_004f;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 1)
{
goto IL_0058;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 2)
{
goto IL_003b;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 3)
{
goto IL_0031;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 4)
{
goto IL_0061;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 5)
{
goto IL_0046;
}
}
{
goto IL_006a;
}
IL_0031:
{
XmlTypeMapping_t988104027 * L_4 = ___typeMap;
bool L_5 = ___isNullable;
bool L_6 = ___checkType;
Il2CppObject * L_7 = VirtFuncInvoker3< Il2CppObject *, XmlTypeMapping_t988104027 *, bool, bool >::Invoke(8 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_4, L_5, L_6);
return L_7;
}
IL_003b:
{
XmlTypeMapping_t988104027 * L_8 = ___typeMap;
bool L_9 = ___isNullable;
Il2CppObject * L_10 = XmlSerializationReaderInterpreter_ReadListElement_m2231524935(__this, L_8, L_9, NULL, (bool)1, /*hidden argument*/NULL);
return L_10;
}
IL_0046:
{
XmlTypeMapping_t988104027 * L_11 = ___typeMap;
bool L_12 = ___isNullable;
Il2CppObject * L_13 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_m2666956979(__this, L_11, L_12, /*hidden argument*/NULL);
return L_13;
}
IL_004f:
{
XmlTypeMapping_t988104027 * L_14 = ___typeMap;
bool L_15 = ___isNullable;
Il2CppObject * L_16 = XmlSerializationReaderInterpreter_ReadPrimitiveElement_m3056638981(__this, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0058:
{
XmlTypeMapping_t988104027 * L_17 = ___typeMap;
bool L_18 = ___isNullable;
Il2CppObject * L_19 = XmlSerializationReaderInterpreter_ReadEnumElement_m642699493(__this, L_17, L_18, /*hidden argument*/NULL);
return L_19;
}
IL_0061:
{
XmlTypeMapping_t988104027 * L_20 = ___typeMap;
bool L_21 = ___isNullable;
Il2CppObject * L_22 = XmlSerializationReaderInterpreter_ReadXmlSerializableElement_m148149782(__this, L_20, L_21, /*hidden argument*/NULL);
return L_22;
}
IL_006a:
{
Exception_t1967233988 * L_23 = (Exception_t1967233988 *)il2cpp_codegen_object_new(Exception_t1967233988_il2cpp_TypeInfo_var);
Exception__ctor_m3870771296(L_23, _stringLiteral3483136297, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23);
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadClassInstance_m2508680070_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadClassInstance_m2508680070 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, bool ___checkType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadClassInstance_m2508680070_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
bool V_3 = false;
{
bool L_0 = ___isNullable;
if (!L_0)
{
goto IL_0013;
}
}
{
bool L_1 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
return NULL;
}
IL_0013:
{
bool L_2 = ___checkType;
if (!L_2)
{
goto IL_00ab;
}
}
{
XmlQualifiedName_t176365656 * L_3 = XmlSerializationReader_GetXsiType_m305667192(__this, /*hidden argument*/NULL);
V_0 = L_3;
XmlQualifiedName_t176365656 * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_5 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_4, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0085;
}
}
{
XmlTypeMapping_t988104027 * L_6 = ___typeMap;
XmlQualifiedName_t176365656 * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = XmlQualifiedName_get_Name_m607016698(L_7, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_9 = V_0;
NullCheck(L_9);
String_t* L_10 = XmlQualifiedName_get_Namespace_m2987642414(L_9, /*hidden argument*/NULL);
NullCheck(L_6);
XmlTypeMapping_t988104027 * L_11 = XmlTypeMapping_GetRealElementMap_m2295230554(L_6, L_8, L_10, /*hidden argument*/NULL);
V_1 = L_11;
XmlTypeMapping_t988104027 * L_12 = V_1;
if (L_12)
{
goto IL_006f;
}
}
{
XmlTypeMapping_t988104027 * L_13 = ___typeMap;
NullCheck(L_13);
TypeData_t3837952962 * L_14 = XmlTypeMapping_get_TypeData_m3898113510(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
Type_t * L_15 = TypeData_get_Type_m2191724548(L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_15) == ((Il2CppObject*)(Type_t *)L_16))))
{
goto IL_0067;
}
}
{
XmlQualifiedName_t176365656 * L_17 = V_0;
Il2CppObject * L_18 = XmlSerializationReader_ReadTypedPrimitive_m827243227(__this, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0067:
{
XmlQualifiedName_t176365656 * L_19 = V_0;
Exception_t1967233988 * L_20 = XmlSerializationReader_CreateUnknownTypeException_m3019837971(__this, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20);
}
IL_006f:
{
XmlTypeMapping_t988104027 * L_21 = V_1;
XmlTypeMapping_t988104027 * L_22 = ___typeMap;
if ((((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_21) == ((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_22)))
{
goto IL_0080;
}
}
{
XmlTypeMapping_t988104027 * L_23 = V_1;
Il2CppObject * L_24 = VirtFuncInvoker3< Il2CppObject *, XmlTypeMapping_t988104027 *, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_23, (bool)0, (bool)0);
return L_24;
}
IL_0080:
{
goto IL_00ab;
}
IL_0085:
{
XmlTypeMapping_t988104027 * L_25 = ___typeMap;
NullCheck(L_25);
TypeData_t3837952962 * L_26 = XmlTypeMapping_get_TypeData_m3898113510(L_25, /*hidden argument*/NULL);
NullCheck(L_26);
Type_t * L_27 = TypeData_get_Type_m2191724548(L_26, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_27) == ((Il2CppObject*)(Type_t *)L_28))))
{
goto IL_00ab;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var);
XmlQualifiedName_t176365656 * L_29 = ((XmlSerializationReaderInterpreter_t1865114396_StaticFields*)XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var->static_fields)->get_AnyType_27();
Il2CppObject * L_30 = XmlSerializationReader_ReadTypedPrimitive_m827243227(__this, L_29, /*hidden argument*/NULL);
return L_30;
}
IL_00ab:
{
XmlTypeMapping_t988104027 * L_31 = ___typeMap;
NullCheck(L_31);
TypeData_t3837952962 * L_32 = XmlTypeMapping_get_TypeData_m3898113510(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
Type_t * L_33 = TypeData_get_Type_m2191724548(L_32, /*hidden argument*/NULL);
Il2CppObject * L_34 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_33, (bool)1, /*hidden argument*/NULL);
V_2 = L_34;
XmlReader_t4229084514 * L_35 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_35);
VirtFuncInvoker0< bool >::Invoke(35 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_35);
XmlReader_t4229084514 * L_36 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_36);
bool L_37 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_36);
V_3 = L_37;
XmlTypeMapping_t988104027 * L_38 = ___typeMap;
Il2CppObject * L_39 = V_2;
VirtActionInvoker2< XmlTypeMapping_t988104027 *, Il2CppObject * >::Invoke(9 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_38, L_39);
bool L_40 = V_3;
if (!L_40)
{
goto IL_00f3;
}
}
{
XmlReader_t4229084514 * L_41 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_41);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_41);
goto IL_00f9;
}
IL_00f3:
{
XmlSerializationReader_ReadEndElement_m3127481962(__this, /*hidden argument*/NULL);
}
IL_00f9:
{
Il2CppObject * L_42 = V_2;
return L_42;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object)
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadClassInstanceMembers_m341843236_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_ReadClassInstanceMembers_m341843236 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadClassInstanceMembers_m341843236_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
ObjectMap_t669501211 * L_1 = XmlMapping_get_ObjectMap_m3032707184(L_0, /*hidden argument*/NULL);
Il2CppObject * L_2 = ___ob;
XmlSerializationReaderInterpreter_ReadMembers_m3531833708(__this, ((ClassMap_t912207490 *)CastclassClass(L_1, ClassMap_t912207490_il2cpp_TypeInfo_var)), L_2, (bool)0, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern TypeInfo* XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttribute_t2022155821_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern const uint32_t XmlSerializationReaderInterpreter_ReadAttributeMembers_m771506417_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_ReadAttributeMembers_m771506417 (XmlSerializationReaderInterpreter_t1865114396 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadAttributeMembers_m771506417_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMember_t757519331 * V_0 = NULL;
int32_t V_1 = 0;
Il2CppObject * V_2 = NULL;
XmlTypeMapMemberAttribute_t2837866357 * V_3 = NULL;
XmlSerializerNamespaces_t2229116383 * V_4 = NULL;
XmlAttribute_t2022155821 * V_5 = NULL;
{
ClassMap_t912207490 * L_0 = ___map;
NullCheck(L_0);
XmlTypeMapMemberAnyAttribute_t576758419 * L_1 = ClassMap_get_DefaultAnyAttributeMember_m2749385715(L_0, /*hidden argument*/NULL);
V_0 = L_1;
V_1 = 0;
V_2 = NULL;
goto IL_0152;
}
IL_0010:
{
ClassMap_t912207490 * L_2 = ___map;
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3);
XmlReader_t4229084514 * L_5 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_5);
NullCheck(L_2);
XmlTypeMapMemberAttribute_t2837866357 * L_7 = ClassMap_GetAttribute_m3196217067(L_2, L_4, L_6, /*hidden argument*/NULL);
V_3 = L_7;
XmlTypeMapMemberAttribute_t2837866357 * L_8 = V_3;
if (!L_8)
{
goto IL_005e;
}
}
{
XmlTypeMapMemberAttribute_t2837866357 * L_9 = V_3;
Il2CppObject * L_10 = ___ob;
XmlReader_t4229084514 * L_11 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::get_Value() */, L_11);
XmlTypeMapMemberAttribute_t2837866357 * L_13 = V_3;
NullCheck(L_13);
TypeData_t3837952962 * L_14 = XmlTypeMapMember_get_TypeData_m3428473262(L_13, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_15 = V_3;
NullCheck(L_15);
XmlTypeMapping_t988104027 * L_16 = XmlTypeMapMemberAttribute_get_MappedType_m3750014842(L_15, /*hidden argument*/NULL);
Il2CppObject * L_17 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250(__this, L_12, L_14, L_16, /*hidden argument*/NULL);
bool L_18 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_9, L_10, L_17, L_18, /*hidden argument*/NULL);
goto IL_0152;
}
IL_005e:
{
XmlReader_t4229084514 * L_19 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlReader::get_Name() */, L_19);
bool L_21 = XmlSerializationReader_IsXmlnsAttribute_m2409816365(__this, L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_010a;
}
}
{
ClassMap_t912207490 * L_22 = ___map;
NullCheck(L_22);
XmlTypeMapMemberNamespaces_t1473492027 * L_23 = ClassMap_get_NamespaceDeclarations_m3505324052(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0105;
}
}
{
ClassMap_t912207490 * L_24 = ___map;
NullCheck(L_24);
XmlTypeMapMemberNamespaces_t1473492027 * L_25 = ClassMap_get_NamespaceDeclarations_m3505324052(L_24, /*hidden argument*/NULL);
Il2CppObject * L_26 = ___ob;
bool L_27 = ___isValueList;
Il2CppObject * L_28 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_25, L_26, L_27, /*hidden argument*/NULL);
V_4 = ((XmlSerializerNamespaces_t2229116383 *)IsInstClass(L_28, XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var));
XmlSerializerNamespaces_t2229116383 * L_29 = V_4;
if (L_29)
{
goto IL_00b2;
}
}
{
XmlSerializerNamespaces_t2229116383 * L_30 = (XmlSerializerNamespaces_t2229116383 *)il2cpp_codegen_object_new(XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var);
XmlSerializerNamespaces__ctor_m2004798200(L_30, /*hidden argument*/NULL);
V_4 = L_30;
ClassMap_t912207490 * L_31 = ___map;
NullCheck(L_31);
XmlTypeMapMemberNamespaces_t1473492027 * L_32 = ClassMap_get_NamespaceDeclarations_m3505324052(L_31, /*hidden argument*/NULL);
Il2CppObject * L_33 = ___ob;
XmlSerializerNamespaces_t2229116383 * L_34 = V_4;
bool L_35 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_32, L_33, L_34, L_35, /*hidden argument*/NULL);
}
IL_00b2:
{
XmlReader_t4229084514 * L_36 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_36);
String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.XmlReader::get_Prefix() */, L_36);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_38 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_37, _stringLiteral114177052, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00ee;
}
}
{
XmlSerializerNamespaces_t2229116383 * L_39 = V_4;
XmlReader_t4229084514 * L_40 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_40);
String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_40);
XmlReader_t4229084514 * L_42 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_42);
String_t* L_43 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::get_Value() */, L_42);
NullCheck(L_39);
XmlSerializerNamespaces_Add_m10927015(L_39, L_41, L_43, /*hidden argument*/NULL);
goto IL_0105;
}
IL_00ee:
{
XmlSerializerNamespaces_t2229116383 * L_44 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_45 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlReader_t4229084514 * L_46 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_46);
String_t* L_47 = VirtFuncInvoker0< String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::get_Value() */, L_46);
NullCheck(L_44);
XmlSerializerNamespaces_Add_m10927015(L_44, L_45, L_47, /*hidden argument*/NULL);
}
IL_0105:
{
goto IL_0152;
}
IL_010a:
{
XmlTypeMapMember_t757519331 * L_48 = V_0;
if (!L_48)
{
goto IL_014b;
}
}
{
XmlDocument_t3705263098 * L_49 = XmlSerializationReader_get_Document_m483267938(__this, /*hidden argument*/NULL);
XmlReader_t4229084514 * L_50 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_49);
XmlNode_t3592213601 * L_51 = VirtFuncInvoker1< XmlNode_t3592213601 *, XmlReader_t4229084514 * >::Invoke(54 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_49, L_50);
V_5 = ((XmlAttribute_t2022155821 *)CastclassClass(L_51, XmlAttribute_t2022155821_il2cpp_TypeInfo_var));
XmlAttribute_t2022155821 * L_52 = V_5;
XmlSerializationReader_ParseWsdlArrayType_m82075816(__this, L_52, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_53 = V_0;
NullCheck(L_53);
TypeData_t3837952962 * L_54 = XmlTypeMapMember_get_TypeData_m3428473262(L_53, /*hidden argument*/NULL);
int32_t L_55 = V_1;
int32_t L_56 = L_55;
V_1 = ((int32_t)((int32_t)L_56+(int32_t)1));
XmlAttribute_t2022155821 * L_57 = V_5;
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_54, (&V_2), L_56, L_57, (bool)1, /*hidden argument*/NULL);
goto IL_0152;
}
IL_014b:
{
Il2CppObject * L_58 = ___ob;
VirtActionInvoker1< Il2CppObject * >::Invoke(10 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object) */, __this, L_58);
}
IL_0152:
{
XmlReader_t4229084514 * L_59 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_59);
bool L_60 = VirtFuncInvoker0< bool >::Invoke(37 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_59);
if (L_60)
{
goto IL_0010;
}
}
{
XmlTypeMapMember_t757519331 * L_61 = V_0;
if (!L_61)
{
goto IL_0191;
}
}
{
Il2CppObject * L_62 = V_2;
int32_t L_63 = V_1;
XmlTypeMapMember_t757519331 * L_64 = V_0;
NullCheck(L_64);
TypeData_t3837952962 * L_65 = XmlTypeMapMember_get_TypeData_m3428473262(L_64, /*hidden argument*/NULL);
NullCheck(L_65);
Type_t * L_66 = TypeData_get_Type_m2191724548(L_65, /*hidden argument*/NULL);
NullCheck(L_66);
Type_t * L_67 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_66);
Il2CppArray * L_68 = XmlSerializationReader_ShrinkArray_m1340798607(__this, ((Il2CppArray *)CastclassClass(L_62, Il2CppArray_il2cpp_TypeInfo_var)), L_63, L_67, (bool)1, /*hidden argument*/NULL);
V_2 = L_68;
XmlTypeMapMember_t757519331 * L_69 = V_0;
Il2CppObject * L_70 = ___ob;
Il2CppObject * L_71 = V_2;
bool L_72 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_69, L_70, L_71, L_72, /*hidden argument*/NULL);
}
IL_0191:
{
XmlReader_t4229084514 * L_73 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_73);
VirtFuncInvoker0< bool >::Invoke(35 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_73);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean,System.Boolean)
extern const Il2CppType* XmlTypeMapMemberList_t2630503969_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberFlatList_t1312744122_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberAnyElement_t2899433779_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberElement_t1386704533_0_0_0_var;
extern const Il2CppType* String_t_0_0_0_var;
extern TypeInfo* ICollection_t3761522009_il2cpp_TypeInfo_var;
extern TypeInfo* BooleanU5BU5D_t3804927312_il2cpp_TypeInfo_var;
extern TypeInfo* Int32U5BU5D_t1809983122_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* FixupCallbackInfo_t3459720195_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationFixupCallback_t3787251386_il2cpp_TypeInfo_var;
extern TypeInfo* Fixup_t67893584_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationCollectionFixupCallback_t2598659068_il2cpp_TypeInfo_var;
extern TypeInfo* CollectionFixup_t40072530_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern const MethodInfo* FixupCallbackInfo_FixupMembers_m2627474254_MethodInfo_var;
extern const MethodInfo* XmlSerializationReaderInterpreter_FillList_m2781762456_MethodInfo_var;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral431195658;
extern const uint32_t XmlSerializationReaderInterpreter_ReadMembers_m3531833708_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_ReadMembers_m3531833708 (XmlSerializationReaderInterpreter_t1865114396 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, bool ___readByOrder, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadMembers_m3531833708_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
BooleanU5BU5D_t3804927312* V_0 = NULL;
bool V_1 = false;
Int32U5BU5D_t1809983122* V_2 = NULL;
ObjectU5BU5D_t11523773* V_3 = NULL;
ObjectU5BU5D_t11523773* V_4 = NULL;
Fixup_t67893584 * V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
XmlTypeMapMemberExpandable_t1849554103 * V_8 = NULL;
Il2CppObject * V_9 = NULL;
Il2CppObject * V_10 = NULL;
FixupCallbackInfo_t3459720195 * V_11 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_12 = NULL;
Il2CppObject * V_13 = NULL;
Il2CppObject * V_14 = NULL;
Il2CppObject * V_15 = NULL;
XmlTypeMapMemberFlatList_t1312744122 * V_16 = NULL;
XmlTypeMapMemberAnyElement_t2899433779 * V_17 = NULL;
Il2CppObject * V_18 = NULL;
XmlTypeMapMemberElement_t1386704533 * V_19 = NULL;
XmlTypeMapMemberAnyElement_t2899433779 * V_20 = NULL;
XmlTypeMapMemberExpandable_t1849554103 * V_21 = NULL;
XmlTypeMapMemberFlatList_t1312744122 * V_22 = NULL;
TypeData_t3837952962 * V_23 = NULL;
Il2CppObject * V_24 = NULL;
XmlTypeMapMemberElement_t1386704533 * V_25 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_26 = NULL;
XmlTypeMapMemberExpandable_t1849554103 * V_27 = NULL;
Il2CppObject * V_28 = NULL;
Il2CppObject * V_29 = NULL;
XmlTypeMapMemberExpandable_t1849554103 * V_30 = NULL;
Il2CppObject * V_31 = NULL;
Il2CppObject * V_32 = NULL;
Il2CppObject * V_33 = NULL;
int32_t V_34 = 0;
Il2CppObject * V_35 = NULL;
Il2CppObject * V_36 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
int32_t G_B7_0 = 0;
int32_t G_B11_0 = 0;
TypeData_t3837952962 * G_B112_0 = NULL;
Il2CppObject * G_B115_0 = NULL;
{
ClassMap_t912207490 * L_0 = ___map;
Il2CppObject * L_1 = ___ob;
bool L_2 = ___isValueList;
XmlSerializationReaderInterpreter_ReadAttributeMembers_m771506417(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
bool L_3 = ___isValueList;
if (L_3)
{
goto IL_0040;
}
}
{
XmlReader_t4229084514 * L_4 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_4);
VirtFuncInvoker0< bool >::Invoke(35 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_4);
XmlReader_t4229084514 * L_5 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_5);
if (!L_6)
{
goto IL_0035;
}
}
{
ClassMap_t912207490 * L_7 = ___map;
Il2CppObject * L_8 = ___ob;
bool L_9 = ___isValueList;
XmlSerializationReaderInterpreter_SetListMembersDefaults_m2216929449(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
return;
}
IL_0035:
{
XmlReader_t4229084514 * L_10 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_10);
}
IL_0040:
{
ClassMap_t912207490 * L_11 = ___map;
NullCheck(L_11);
Il2CppObject * L_12 = ClassMap_get_ElementMembers_m1176036895(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_005b;
}
}
{
ClassMap_t912207490 * L_13 = ___map;
NullCheck(L_13);
Il2CppObject * L_14 = ClassMap_get_ElementMembers_m1176036895(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
int32_t L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3761522009_il2cpp_TypeInfo_var, L_14);
G_B7_0 = L_15;
goto IL_005c;
}
IL_005b:
{
G_B7_0 = 0;
}
IL_005c:
{
V_0 = ((BooleanU5BU5D_t3804927312*)SZArrayNew(BooleanU5BU5D_t3804927312_il2cpp_TypeInfo_var, (uint32_t)G_B7_0));
bool L_16 = ___isValueList;
if (!L_16)
{
goto IL_0081;
}
}
{
int32_t L_17 = __this->get__format_26();
if (L_17)
{
goto IL_0081;
}
}
{
ClassMap_t912207490 * L_18 = ___map;
NullCheck(L_18);
XmlTypeMapMember_t757519331 * L_19 = ClassMap_get_ReturnMember_m2751635476(L_18, /*hidden argument*/NULL);
G_B11_0 = ((((int32_t)((((Il2CppObject*)(XmlTypeMapMember_t757519331 *)L_19) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0082;
}
IL_0081:
{
G_B11_0 = 0;
}
IL_0082:
{
V_1 = (bool)G_B11_0;
XmlReader_t4229084514 * L_20 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_20);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_20);
V_2 = (Int32U5BU5D_t1809983122*)NULL;
V_3 = (ObjectU5BU5D_t11523773*)NULL;
V_4 = (ObjectU5BU5D_t11523773*)NULL;
V_5 = (Fixup_t67893584 *)NULL;
V_6 = 0;
bool L_21 = ___readByOrder;
if (!L_21)
{
goto IL_00c8;
}
}
{
ClassMap_t912207490 * L_22 = ___map;
NullCheck(L_22);
Il2CppObject * L_23 = ClassMap_get_ElementMembers_m1176036895(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00c0;
}
}
{
ClassMap_t912207490 * L_24 = ___map;
NullCheck(L_24);
Il2CppObject * L_25 = ClassMap_get_ElementMembers_m1176036895(L_24, /*hidden argument*/NULL);
NullCheck(L_25);
int32_t L_26 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3761522009_il2cpp_TypeInfo_var, L_25);
V_7 = L_26;
goto IL_00c3;
}
IL_00c0:
{
V_7 = 0;
}
IL_00c3:
{
goto IL_00cf;
}
IL_00c8:
{
V_7 = ((int32_t)2147483647LL);
}
IL_00cf:
{
ClassMap_t912207490 * L_27 = ___map;
NullCheck(L_27);
ArrayList_t2121638921 * L_28 = ClassMap_get_FlatLists_m836694060(L_27, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_0213;
}
}
{
ClassMap_t912207490 * L_29 = ___map;
NullCheck(L_29);
ArrayList_t2121638921 * L_30 = ClassMap_get_FlatLists_m836694060(L_29, /*hidden argument*/NULL);
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_30);
V_2 = ((Int32U5BU5D_t1809983122*)SZArrayNew(Int32U5BU5D_t1809983122_il2cpp_TypeInfo_var, (uint32_t)L_31));
ClassMap_t912207490 * L_32 = ___map;
NullCheck(L_32);
ArrayList_t2121638921 * L_33 = ClassMap_get_FlatLists_m836694060(L_32, /*hidden argument*/NULL);
NullCheck(L_33);
int32_t L_34 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_33);
V_3 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)L_34));
ClassMap_t912207490 * L_35 = ___map;
NullCheck(L_35);
ArrayList_t2121638921 * L_36 = ClassMap_get_FlatLists_m836694060(L_35, /*hidden argument*/NULL);
NullCheck(L_36);
Il2CppObject * L_37 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_36);
V_9 = L_37;
}
IL_0109:
try
{ // begin try (depth: 1)
{
goto IL_01ec;
}
IL_010e:
{
Il2CppObject * L_38 = V_9;
NullCheck(L_38);
Il2CppObject * L_39 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_38);
V_8 = ((XmlTypeMapMemberExpandable_t1849554103 *)CastclassClass(L_39, XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var));
XmlTypeMapMemberExpandable_t1849554103 * L_40 = V_8;
XmlTypeMapMemberExpandable_t1849554103 * L_41 = V_8;
NullCheck(L_41);
TypeData_t3837952962 * L_42 = XmlTypeMapMember_get_TypeData_m3428473262(L_41, /*hidden argument*/NULL);
Il2CppObject * L_43 = ___ob;
bool L_44 = ___isValueList;
bool L_45 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_40, L_42, L_43, L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_0148;
}
}
IL_0132:
{
ObjectU5BU5D_t11523773* L_46 = V_3;
XmlTypeMapMemberExpandable_t1849554103 * L_47 = V_8;
NullCheck(L_47);
int32_t L_48 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_47, /*hidden argument*/NULL);
XmlTypeMapMemberExpandable_t1849554103 * L_49 = V_8;
Il2CppObject * L_50 = ___ob;
NullCheck(L_49);
Il2CppObject * L_51 = XmlTypeMapMember_GetValue_m1259309106(L_49, L_50, /*hidden argument*/NULL);
NullCheck(L_46);
IL2CPP_ARRAY_BOUNDS_CHECK(L_46, L_48);
ArrayElementTypeCheck (L_46, L_51);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(L_48), (Il2CppObject *)L_51);
goto IL_01b0;
}
IL_0148:
{
XmlTypeMapMemberExpandable_t1849554103 * L_52 = V_8;
NullCheck(L_52);
TypeData_t3837952962 * L_53 = XmlTypeMapMember_get_TypeData_m3428473262(L_52, /*hidden argument*/NULL);
NullCheck(L_53);
Type_t * L_54 = TypeData_get_Type_m2191724548(L_53, /*hidden argument*/NULL);
NullCheck(L_54);
bool L_55 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_54);
if (!L_55)
{
goto IL_0179;
}
}
IL_015e:
{
ObjectU5BU5D_t11523773* L_56 = V_3;
XmlTypeMapMemberExpandable_t1849554103 * L_57 = V_8;
NullCheck(L_57);
int32_t L_58 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_57, /*hidden argument*/NULL);
XmlTypeMapMemberExpandable_t1849554103 * L_59 = V_8;
NullCheck(L_59);
TypeData_t3837952962 * L_60 = XmlTypeMapMember_get_TypeData_m3428473262(L_59, /*hidden argument*/NULL);
Il2CppObject * L_61 = XmlSerializationReaderInterpreter_InitializeList_m546932942(__this, L_60, /*hidden argument*/NULL);
NullCheck(L_56);
IL2CPP_ARRAY_BOUNDS_CHECK(L_56, L_58);
ArrayElementTypeCheck (L_56, L_61);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(L_58), (Il2CppObject *)L_61);
goto IL_01b0;
}
IL_0179:
{
XmlTypeMapMemberExpandable_t1849554103 * L_62 = V_8;
Il2CppObject * L_63 = ___ob;
NullCheck(L_62);
Il2CppObject * L_64 = XmlTypeMapMember_GetValue_m1259309106(L_62, L_63, /*hidden argument*/NULL);
V_10 = L_64;
Il2CppObject * L_65 = V_10;
if (L_65)
{
goto IL_01a5;
}
}
IL_018a:
{
XmlTypeMapMemberExpandable_t1849554103 * L_66 = V_8;
NullCheck(L_66);
TypeData_t3837952962 * L_67 = XmlTypeMapMember_get_TypeData_m3428473262(L_66, /*hidden argument*/NULL);
Il2CppObject * L_68 = XmlSerializationReaderInterpreter_InitializeList_m546932942(__this, L_67, /*hidden argument*/NULL);
V_10 = L_68;
XmlTypeMapMemberExpandable_t1849554103 * L_69 = V_8;
Il2CppObject * L_70 = ___ob;
Il2CppObject * L_71 = V_10;
bool L_72 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_69, L_70, L_71, L_72, /*hidden argument*/NULL);
}
IL_01a5:
{
ObjectU5BU5D_t11523773* L_73 = V_3;
XmlTypeMapMemberExpandable_t1849554103 * L_74 = V_8;
NullCheck(L_74);
int32_t L_75 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_74, /*hidden argument*/NULL);
Il2CppObject * L_76 = V_10;
NullCheck(L_73);
IL2CPP_ARRAY_BOUNDS_CHECK(L_73, L_75);
ArrayElementTypeCheck (L_73, L_76);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(L_75), (Il2CppObject *)L_76);
}
IL_01b0:
{
XmlTypeMapMemberExpandable_t1849554103 * L_77 = V_8;
NullCheck(L_77);
String_t* L_78 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_77, /*hidden argument*/NULL);
if (!L_78)
{
goto IL_01ec;
}
}
IL_01bc:
{
ObjectU5BU5D_t11523773* L_79 = V_4;
if (L_79)
{
goto IL_01d5;
}
}
IL_01c3:
{
ClassMap_t912207490 * L_80 = ___map;
NullCheck(L_80);
ArrayList_t2121638921 * L_81 = ClassMap_get_FlatLists_m836694060(L_80, /*hidden argument*/NULL);
NullCheck(L_81);
int32_t L_82 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_81);
V_4 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)L_82));
}
IL_01d5:
{
ObjectU5BU5D_t11523773* L_83 = V_4;
XmlTypeMapMemberExpandable_t1849554103 * L_84 = V_8;
NullCheck(L_84);
int32_t L_85 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_84, /*hidden argument*/NULL);
XmlTypeMapMemberExpandable_t1849554103 * L_86 = V_8;
NullCheck(L_86);
TypeData_t3837952962 * L_87 = XmlTypeMapMemberElement_get_ChoiceTypeData_m3523493323(L_86, /*hidden argument*/NULL);
Il2CppObject * L_88 = XmlSerializationReaderInterpreter_InitializeList_m546932942(__this, L_87, /*hidden argument*/NULL);
NullCheck(L_83);
IL2CPP_ARRAY_BOUNDS_CHECK(L_83, L_85);
ArrayElementTypeCheck (L_83, L_88);
(L_83)->SetAt(static_cast<il2cpp_array_size_t>(L_85), (Il2CppObject *)L_88);
}
IL_01ec:
{
Il2CppObject * L_89 = V_9;
NullCheck(L_89);
bool L_90 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_89);
if (L_90)
{
goto IL_010e;
}
}
IL_01f8:
{
IL2CPP_LEAVE(0x213, FINALLY_01fd);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_01fd;
}
FINALLY_01fd:
{ // begin finally (depth: 1)
{
Il2CppObject * L_91 = V_9;
V_33 = ((Il2CppObject *)IsInst(L_91, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_92 = V_33;
if (L_92)
{
goto IL_020b;
}
}
IL_020a:
{
IL2CPP_END_FINALLY(509)
}
IL_020b:
{
Il2CppObject * L_93 = V_33;
NullCheck(L_93);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_93);
IL2CPP_END_FINALLY(509)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(509)
{
IL2CPP_JUMP_TBL(0x213, IL_0213)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0213:
{
int32_t L_94 = __this->get__format_26();
if (L_94)
{
goto IL_025b;
}
}
{
ClassMap_t912207490 * L_95 = ___map;
NullCheck(L_95);
Il2CppObject * L_96 = ClassMap_get_ElementMembers_m1176036895(L_95, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_025b;
}
}
{
ClassMap_t912207490 * L_97 = ___map;
bool L_98 = ___isValueList;
FixupCallbackInfo_t3459720195 * L_99 = (FixupCallbackInfo_t3459720195 *)il2cpp_codegen_object_new(FixupCallbackInfo_t3459720195_il2cpp_TypeInfo_var);
FixupCallbackInfo__ctor_m2836221356(L_99, __this, L_97, L_98, /*hidden argument*/NULL);
V_11 = L_99;
Il2CppObject * L_100 = ___ob;
FixupCallbackInfo_t3459720195 * L_101 = V_11;
IntPtr_t L_102;
L_102.set_m_value_0((void*)FixupCallbackInfo_FixupMembers_m2627474254_MethodInfo_var);
XmlSerializationFixupCallback_t3787251386 * L_103 = (XmlSerializationFixupCallback_t3787251386 *)il2cpp_codegen_object_new(XmlSerializationFixupCallback_t3787251386_il2cpp_TypeInfo_var);
XmlSerializationFixupCallback__ctor_m3257712133(L_103, L_101, L_102, /*hidden argument*/NULL);
ClassMap_t912207490 * L_104 = ___map;
NullCheck(L_104);
Il2CppObject * L_105 = ClassMap_get_ElementMembers_m1176036895(L_104, /*hidden argument*/NULL);
NullCheck(L_105);
int32_t L_106 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3761522009_il2cpp_TypeInfo_var, L_105);
Fixup_t67893584 * L_107 = (Fixup_t67893584 *)il2cpp_codegen_object_new(Fixup_t67893584_il2cpp_TypeInfo_var);
Fixup__ctor_m366540637(L_107, L_100, L_103, L_106, /*hidden argument*/NULL);
V_5 = L_107;
Fixup_t67893584 * L_108 = V_5;
XmlSerializationReader_AddFixup_m3636976287(__this, L_108, /*hidden argument*/NULL);
}
IL_025b:
{
goto IL_0a38;
}
IL_0260:
{
XmlReader_t4229084514 * L_109 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_109);
int32_t L_110 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_109);
if ((!(((uint32_t)L_110) == ((uint32_t)1))))
{
goto IL_08af;
}
}
{
bool L_111 = ___readByOrder;
if (!L_111)
{
goto IL_028c;
}
}
{
ClassMap_t912207490 * L_112 = ___map;
int32_t L_113 = V_6;
int32_t L_114 = L_113;
V_6 = ((int32_t)((int32_t)L_114+(int32_t)1));
NullCheck(L_112);
XmlTypeMapElementInfo_t3184170653 * L_115 = ClassMap_GetElement_m4004624716(L_112, L_114, /*hidden argument*/NULL);
V_12 = L_115;
goto IL_02d4;
}
IL_028c:
{
bool L_116 = V_1;
if (!L_116)
{
goto IL_02b6;
}
}
{
ClassMap_t912207490 * L_117 = ___map;
NullCheck(L_117);
XmlTypeMapMember_t757519331 * L_118 = ClassMap_get_ReturnMember_m2751635476(L_117, /*hidden argument*/NULL);
NullCheck(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_118, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)));
XmlTypeMapElementInfoList_t3690603483 * L_119 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_118, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
NullCheck(L_119);
Il2CppObject * L_120 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_119, 0);
V_12 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_120, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
V_1 = (bool)0;
goto IL_02d4;
}
IL_02b6:
{
ClassMap_t912207490 * L_121 = ___map;
XmlReader_t4229084514 * L_122 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_122);
String_t* L_123 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_122);
XmlReader_t4229084514 * L_124 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_124);
String_t* L_125 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_124);
NullCheck(L_121);
XmlTypeMapElementInfo_t3184170653 * L_126 = ClassMap_GetElement_m3737748067(L_121, L_123, L_125, /*hidden argument*/NULL);
V_12 = L_126;
}
IL_02d4:
{
XmlTypeMapElementInfo_t3184170653 * L_127 = V_12;
if (!L_127)
{
goto IL_0818;
}
}
{
BooleanU5BU5D_t3804927312* L_128 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_129 = V_12;
NullCheck(L_129);
XmlTypeMapMember_t757519331 * L_130 = XmlTypeMapElementInfo_get_Member_m101276455(L_129, /*hidden argument*/NULL);
NullCheck(L_130);
int32_t L_131 = XmlTypeMapMember_get_Index_m1785150577(L_130, /*hidden argument*/NULL);
NullCheck(L_128);
IL2CPP_ARRAY_BOUNDS_CHECK(L_128, L_131);
int32_t L_132 = L_131;
if (((L_128)->GetAt(static_cast<il2cpp_array_size_t>(L_132))))
{
goto IL_0818;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_133 = V_12;
NullCheck(L_133);
XmlTypeMapMember_t757519331 * L_134 = XmlTypeMapElementInfo_get_Member_m101276455(L_133, /*hidden argument*/NULL);
NullCheck(L_134);
Type_t * L_135 = Object_GetType_m2022236990(L_134, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_136 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberList_t2630503969_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_135) == ((Il2CppObject*)(Type_t *)L_136))))
{
goto IL_0569;
}
}
{
int32_t L_137 = __this->get__format_26();
if (L_137)
{
goto IL_045a;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_138 = V_12;
NullCheck(L_138);
bool L_139 = XmlTypeMapElementInfo_get_MultiReferenceType_m3638335751(L_138, /*hidden argument*/NULL);
if (!L_139)
{
goto IL_045a;
}
}
{
Fixup_t67893584 * L_140 = V_5;
NullCheck(L_140);
StringU5BU5D_t2956870243* L_141 = Fixup_get_Ids_m368502302(L_140, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_142 = V_12;
NullCheck(L_142);
XmlTypeMapMember_t757519331 * L_143 = XmlTypeMapElementInfo_get_Member_m101276455(L_142, /*hidden argument*/NULL);
NullCheck(L_143);
int32_t L_144 = XmlTypeMapMember_get_Index_m1785150577(L_143, /*hidden argument*/NULL);
NullCheck(L_141);
IL2CPP_ARRAY_BOUNDS_CHECK(L_141, L_144);
Il2CppObject * L_145 = XmlSerializationReader_ReadReferencingElement_m3478666258(__this, ((L_141)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_144))), /*hidden argument*/NULL);
V_13 = L_145;
Fixup_t67893584 * L_146 = V_5;
NullCheck(L_146);
StringU5BU5D_t2956870243* L_147 = Fixup_get_Ids_m368502302(L_146, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_148 = V_12;
NullCheck(L_148);
XmlTypeMapMember_t757519331 * L_149 = XmlTypeMapElementInfo_get_Member_m101276455(L_148, /*hidden argument*/NULL);
NullCheck(L_149);
int32_t L_150 = XmlTypeMapMember_get_Index_m1785150577(L_149, /*hidden argument*/NULL);
NullCheck(L_147);
IL2CPP_ARRAY_BOUNDS_CHECK(L_147, L_150);
int32_t L_151 = L_150;
if (((L_147)->GetAt(static_cast<il2cpp_array_size_t>(L_151))))
{
goto IL_039d;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_152 = V_12;
NullCheck(L_152);
XmlTypeMapMember_t757519331 * L_153 = XmlTypeMapElementInfo_get_Member_m101276455(L_152, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_154 = V_12;
NullCheck(L_154);
TypeData_t3837952962 * L_155 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_154, /*hidden argument*/NULL);
Il2CppObject * L_156 = ___ob;
bool L_157 = ___isValueList;
bool L_158 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_153, L_155, L_156, L_157, /*hidden argument*/NULL);
if (!L_158)
{
goto IL_0387;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_159 = V_12;
NullCheck(L_159);
TypeData_t3837952962 * L_160 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_159, /*hidden argument*/NULL);
NullCheck(L_160);
String_t* L_161 = TypeData_get_FullTypeName_m2969171957(L_160, /*hidden argument*/NULL);
Exception_t1967233988 * L_162 = XmlSerializationReader_CreateReadOnlyCollectionException_m494995583(__this, L_161, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_162);
}
IL_0387:
{
XmlTypeMapElementInfo_t3184170653 * L_163 = V_12;
NullCheck(L_163);
XmlTypeMapMember_t757519331 * L_164 = XmlTypeMapElementInfo_get_Member_m101276455(L_163, /*hidden argument*/NULL);
Il2CppObject * L_165 = ___ob;
Il2CppObject * L_166 = V_13;
bool L_167 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_164, L_165, L_166, L_167, /*hidden argument*/NULL);
goto IL_0455;
}
IL_039d:
{
XmlTypeMapElementInfo_t3184170653 * L_168 = V_12;
NullCheck(L_168);
XmlTypeMapping_t988104027 * L_169 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_168, /*hidden argument*/NULL);
NullCheck(L_169);
TypeData_t3837952962 * L_170 = XmlTypeMapping_get_TypeData_m3898113510(L_169, /*hidden argument*/NULL);
NullCheck(L_170);
Type_t * L_171 = TypeData_get_Type_m2191724548(L_170, /*hidden argument*/NULL);
NullCheck(L_171);
bool L_172 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_171);
if (L_172)
{
goto IL_0455;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_173 = V_12;
NullCheck(L_173);
XmlTypeMapMember_t757519331 * L_174 = XmlTypeMapElementInfo_get_Member_m101276455(L_173, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_175 = V_12;
NullCheck(L_175);
TypeData_t3837952962 * L_176 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_175, /*hidden argument*/NULL);
Il2CppObject * L_177 = ___ob;
bool L_178 = ___isValueList;
bool L_179 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_174, L_176, L_177, L_178, /*hidden argument*/NULL);
if (!L_179)
{
goto IL_03e9;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_180 = V_12;
NullCheck(L_180);
XmlTypeMapMember_t757519331 * L_181 = XmlTypeMapElementInfo_get_Member_m101276455(L_180, /*hidden argument*/NULL);
Il2CppObject * L_182 = ___ob;
bool L_183 = ___isValueList;
Il2CppObject * L_184 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_181, L_182, L_183, /*hidden argument*/NULL);
V_13 = L_184;
goto IL_0413;
}
IL_03e9:
{
XmlTypeMapElementInfo_t3184170653 * L_185 = V_12;
NullCheck(L_185);
XmlTypeMapping_t988104027 * L_186 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_185, /*hidden argument*/NULL);
NullCheck(L_186);
TypeData_t3837952962 * L_187 = XmlTypeMapping_get_TypeData_m3898113510(L_186, /*hidden argument*/NULL);
NullCheck(L_187);
Type_t * L_188 = TypeData_get_Type_m2191724548(L_187, /*hidden argument*/NULL);
Il2CppObject * L_189 = XmlSerializationReaderInterpreter_CreateList_m986025985(__this, L_188, /*hidden argument*/NULL);
V_13 = L_189;
XmlTypeMapElementInfo_t3184170653 * L_190 = V_12;
NullCheck(L_190);
XmlTypeMapMember_t757519331 * L_191 = XmlTypeMapElementInfo_get_Member_m101276455(L_190, /*hidden argument*/NULL);
Il2CppObject * L_192 = ___ob;
Il2CppObject * L_193 = V_13;
bool L_194 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_191, L_192, L_193, L_194, /*hidden argument*/NULL);
}
IL_0413:
{
Il2CppObject * L_195 = V_13;
IntPtr_t L_196;
L_196.set_m_value_0((void*)XmlSerializationReaderInterpreter_FillList_m2781762456_MethodInfo_var);
XmlSerializationCollectionFixupCallback_t2598659068 * L_197 = (XmlSerializationCollectionFixupCallback_t2598659068 *)il2cpp_codegen_object_new(XmlSerializationCollectionFixupCallback_t2598659068_il2cpp_TypeInfo_var);
XmlSerializationCollectionFixupCallback__ctor_m2039963079(L_197, __this, L_196, /*hidden argument*/NULL);
Fixup_t67893584 * L_198 = V_5;
NullCheck(L_198);
StringU5BU5D_t2956870243* L_199 = Fixup_get_Ids_m368502302(L_198, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_200 = V_12;
NullCheck(L_200);
XmlTypeMapMember_t757519331 * L_201 = XmlTypeMapElementInfo_get_Member_m101276455(L_200, /*hidden argument*/NULL);
NullCheck(L_201);
int32_t L_202 = XmlTypeMapMember_get_Index_m1785150577(L_201, /*hidden argument*/NULL);
NullCheck(L_199);
IL2CPP_ARRAY_BOUNDS_CHECK(L_199, L_202);
int32_t L_203 = L_202;
CollectionFixup_t40072530 * L_204 = (CollectionFixup_t40072530 *)il2cpp_codegen_object_new(CollectionFixup_t40072530_il2cpp_TypeInfo_var);
CollectionFixup__ctor_m492916146(L_204, L_195, L_197, ((L_199)->GetAt(static_cast<il2cpp_array_size_t>(L_203))), /*hidden argument*/NULL);
XmlSerializationReader_AddFixup_m2940395357(__this, L_204, /*hidden argument*/NULL);
Fixup_t67893584 * L_205 = V_5;
NullCheck(L_205);
StringU5BU5D_t2956870243* L_206 = Fixup_get_Ids_m368502302(L_205, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_207 = V_12;
NullCheck(L_207);
XmlTypeMapMember_t757519331 * L_208 = XmlTypeMapElementInfo_get_Member_m101276455(L_207, /*hidden argument*/NULL);
NullCheck(L_208);
int32_t L_209 = XmlTypeMapMember_get_Index_m1785150577(L_208, /*hidden argument*/NULL);
NullCheck(L_206);
IL2CPP_ARRAY_BOUNDS_CHECK(L_206, L_209);
ArrayElementTypeCheck (L_206, NULL);
(L_206)->SetAt(static_cast<il2cpp_array_size_t>(L_209), (String_t*)NULL);
}
IL_0455:
{
goto IL_0555;
}
IL_045a:
{
XmlTypeMapElementInfo_t3184170653 * L_210 = V_12;
NullCheck(L_210);
XmlTypeMapMember_t757519331 * L_211 = XmlTypeMapElementInfo_get_Member_m101276455(L_210, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_212 = V_12;
NullCheck(L_212);
TypeData_t3837952962 * L_213 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_212, /*hidden argument*/NULL);
Il2CppObject * L_214 = ___ob;
bool L_215 = ___isValueList;
bool L_216 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_211, L_213, L_214, L_215, /*hidden argument*/NULL);
if (!L_216)
{
goto IL_049f;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_217 = V_12;
NullCheck(L_217);
XmlTypeMapping_t988104027 * L_218 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_217, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_219 = V_12;
NullCheck(L_219);
bool L_220 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_219, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_221 = V_12;
NullCheck(L_221);
XmlTypeMapMember_t757519331 * L_222 = XmlTypeMapElementInfo_get_Member_m101276455(L_221, /*hidden argument*/NULL);
Il2CppObject * L_223 = ___ob;
bool L_224 = ___isValueList;
Il2CppObject * L_225 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_222, L_223, L_224, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_ReadListElement_m2231524935(__this, L_218, L_220, L_225, (bool)0, /*hidden argument*/NULL);
goto IL_0555;
}
IL_049f:
{
XmlTypeMapElementInfo_t3184170653 * L_226 = V_12;
NullCheck(L_226);
XmlTypeMapping_t988104027 * L_227 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_226, /*hidden argument*/NULL);
NullCheck(L_227);
TypeData_t3837952962 * L_228 = XmlTypeMapping_get_TypeData_m3898113510(L_227, /*hidden argument*/NULL);
NullCheck(L_228);
Type_t * L_229 = TypeData_get_Type_m2191724548(L_228, /*hidden argument*/NULL);
NullCheck(L_229);
bool L_230 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_229);
if (!L_230)
{
goto IL_04fb;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_231 = V_12;
NullCheck(L_231);
XmlTypeMapping_t988104027 * L_232 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_231, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_233 = V_12;
NullCheck(L_233);
bool L_234 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_233, /*hidden argument*/NULL);
Il2CppObject * L_235 = XmlSerializationReaderInterpreter_ReadListElement_m2231524935(__this, L_232, L_234, NULL, (bool)1, /*hidden argument*/NULL);
V_14 = L_235;
Il2CppObject * L_236 = V_14;
if (L_236)
{
goto IL_04e5;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_237 = V_12;
NullCheck(L_237);
bool L_238 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_237, /*hidden argument*/NULL);
if (!L_238)
{
goto IL_04f6;
}
}
IL_04e5:
{
XmlTypeMapElementInfo_t3184170653 * L_239 = V_12;
NullCheck(L_239);
XmlTypeMapMember_t757519331 * L_240 = XmlTypeMapElementInfo_get_Member_m101276455(L_239, /*hidden argument*/NULL);
Il2CppObject * L_241 = ___ob;
Il2CppObject * L_242 = V_14;
bool L_243 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_240, L_241, L_242, L_243, /*hidden argument*/NULL);
}
IL_04f6:
{
goto IL_0555;
}
IL_04fb:
{
XmlTypeMapElementInfo_t3184170653 * L_244 = V_12;
NullCheck(L_244);
XmlTypeMapMember_t757519331 * L_245 = XmlTypeMapElementInfo_get_Member_m101276455(L_244, /*hidden argument*/NULL);
Il2CppObject * L_246 = ___ob;
bool L_247 = ___isValueList;
Il2CppObject * L_248 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_245, L_246, L_247, /*hidden argument*/NULL);
V_15 = L_248;
Il2CppObject * L_249 = V_15;
if (L_249)
{
goto IL_053d;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_250 = V_12;
NullCheck(L_250);
XmlTypeMapping_t988104027 * L_251 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_250, /*hidden argument*/NULL);
NullCheck(L_251);
TypeData_t3837952962 * L_252 = XmlTypeMapping_get_TypeData_m3898113510(L_251, /*hidden argument*/NULL);
NullCheck(L_252);
Type_t * L_253 = TypeData_get_Type_m2191724548(L_252, /*hidden argument*/NULL);
Il2CppObject * L_254 = XmlSerializationReaderInterpreter_CreateList_m986025985(__this, L_253, /*hidden argument*/NULL);
V_15 = L_254;
XmlTypeMapElementInfo_t3184170653 * L_255 = V_12;
NullCheck(L_255);
XmlTypeMapMember_t757519331 * L_256 = XmlTypeMapElementInfo_get_Member_m101276455(L_255, /*hidden argument*/NULL);
Il2CppObject * L_257 = ___ob;
Il2CppObject * L_258 = V_15;
bool L_259 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_256, L_257, L_258, L_259, /*hidden argument*/NULL);
}
IL_053d:
{
XmlTypeMapElementInfo_t3184170653 * L_260 = V_12;
NullCheck(L_260);
XmlTypeMapping_t988104027 * L_261 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_260, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_262 = V_12;
NullCheck(L_262);
bool L_263 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_262, /*hidden argument*/NULL);
Il2CppObject * L_264 = V_15;
XmlSerializationReaderInterpreter_ReadListElement_m2231524935(__this, L_261, L_263, L_264, (bool)1, /*hidden argument*/NULL);
}
IL_0555:
{
BooleanU5BU5D_t3804927312* L_265 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_266 = V_12;
NullCheck(L_266);
XmlTypeMapMember_t757519331 * L_267 = XmlTypeMapElementInfo_get_Member_m101276455(L_266, /*hidden argument*/NULL);
NullCheck(L_267);
int32_t L_268 = XmlTypeMapMember_get_Index_m1785150577(L_267, /*hidden argument*/NULL);
NullCheck(L_265);
IL2CPP_ARRAY_BOUNDS_CHECK(L_265, L_268);
(L_265)->SetAt(static_cast<il2cpp_array_size_t>(L_268), (bool)1);
goto IL_0813;
}
IL_0569:
{
XmlTypeMapElementInfo_t3184170653 * L_269 = V_12;
NullCheck(L_269);
XmlTypeMapMember_t757519331 * L_270 = XmlTypeMapElementInfo_get_Member_m101276455(L_269, /*hidden argument*/NULL);
NullCheck(L_270);
Type_t * L_271 = Object_GetType_m2022236990(L_270, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_272 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberFlatList_t1312744122_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_271) == ((Il2CppObject*)(Type_t *)L_272))))
{
goto IL_0623;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_273 = V_12;
NullCheck(L_273);
XmlTypeMapMember_t757519331 * L_274 = XmlTypeMapElementInfo_get_Member_m101276455(L_273, /*hidden argument*/NULL);
V_16 = ((XmlTypeMapMemberFlatList_t1312744122 *)CastclassClass(L_274, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var));
XmlTypeMapMemberFlatList_t1312744122 * L_275 = V_16;
NullCheck(L_275);
TypeData_t3837952962 * L_276 = XmlTypeMapMember_get_TypeData_m3428473262(L_275, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_277 = V_3;
XmlTypeMapMemberFlatList_t1312744122 * L_278 = V_16;
NullCheck(L_278);
int32_t L_279 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_278, /*hidden argument*/NULL);
NullCheck(L_277);
IL2CPP_ARRAY_BOUNDS_CHECK(L_277, L_279);
Int32U5BU5D_t1809983122* L_280 = V_2;
XmlTypeMapMemberFlatList_t1312744122 * L_281 = V_16;
NullCheck(L_281);
int32_t L_282 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_281, /*hidden argument*/NULL);
NullCheck(L_280);
IL2CPP_ARRAY_BOUNDS_CHECK(L_280, L_282);
int32_t* L_283 = ((L_280)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_282)));
int32_t L_284 = (*((int32_t*)L_283));
V_34 = L_284;
*((int32_t*)(L_283)) = (int32_t)((int32_t)((int32_t)L_284+(int32_t)1));
int32_t L_285 = V_34;
XmlTypeMapElementInfo_t3184170653 * L_286 = V_12;
Il2CppObject * L_287 = XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400(__this, L_286, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_288 = V_12;
NullCheck(L_288);
XmlTypeMapMember_t757519331 * L_289 = XmlTypeMapElementInfo_get_Member_m101276455(L_288, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_290 = V_12;
NullCheck(L_290);
TypeData_t3837952962 * L_291 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_290, /*hidden argument*/NULL);
Il2CppObject * L_292 = ___ob;
bool L_293 = ___isValueList;
bool L_294 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_289, L_291, L_292, L_293, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_276, ((L_277)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_279))), L_285, L_287, (bool)((((int32_t)L_294) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
XmlTypeMapMemberFlatList_t1312744122 * L_295 = V_16;
NullCheck(L_295);
String_t* L_296 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_295, /*hidden argument*/NULL);
if (!L_296)
{
goto IL_061e;
}
}
{
XmlTypeMapMemberFlatList_t1312744122 * L_297 = V_16;
NullCheck(L_297);
TypeData_t3837952962 * L_298 = XmlTypeMapMemberElement_get_ChoiceTypeData_m3523493323(L_297, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_299 = V_4;
XmlTypeMapMemberFlatList_t1312744122 * L_300 = V_16;
NullCheck(L_300);
int32_t L_301 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_300, /*hidden argument*/NULL);
NullCheck(L_299);
IL2CPP_ARRAY_BOUNDS_CHECK(L_299, L_301);
Int32U5BU5D_t1809983122* L_302 = V_2;
XmlTypeMapMemberFlatList_t1312744122 * L_303 = V_16;
NullCheck(L_303);
int32_t L_304 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_303, /*hidden argument*/NULL);
NullCheck(L_302);
IL2CPP_ARRAY_BOUNDS_CHECK(L_302, L_304);
int32_t L_305 = L_304;
XmlTypeMapElementInfo_t3184170653 * L_306 = V_12;
NullCheck(L_306);
Il2CppObject * L_307 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_306, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_298, ((L_299)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_301))), ((int32_t)((int32_t)((L_302)->GetAt(static_cast<il2cpp_array_size_t>(L_305)))-(int32_t)1)), L_307, (bool)1, /*hidden argument*/NULL);
}
IL_061e:
{
goto IL_0813;
}
IL_0623:
{
XmlTypeMapElementInfo_t3184170653 * L_308 = V_12;
NullCheck(L_308);
XmlTypeMapMember_t757519331 * L_309 = XmlTypeMapElementInfo_get_Member_m101276455(L_308, /*hidden argument*/NULL);
NullCheck(L_309);
Type_t * L_310 = Object_GetType_m2022236990(L_309, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_311 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberAnyElement_t2899433779_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_310) == ((Il2CppObject*)(Type_t *)L_311))))
{
goto IL_06c4;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_312 = V_12;
NullCheck(L_312);
XmlTypeMapMember_t757519331 * L_313 = XmlTypeMapElementInfo_get_Member_m101276455(L_312, /*hidden argument*/NULL);
V_17 = ((XmlTypeMapMemberAnyElement_t2899433779 *)CastclassClass(L_313, XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var));
XmlTypeMapMemberAnyElement_t2899433779 * L_314 = V_17;
NullCheck(L_314);
TypeData_t3837952962 * L_315 = XmlTypeMapMember_get_TypeData_m3428473262(L_314, /*hidden argument*/NULL);
NullCheck(L_315);
bool L_316 = TypeData_get_IsListType_m1977463454(L_315, /*hidden argument*/NULL);
if (!L_316)
{
goto IL_06a7;
}
}
{
XmlTypeMapMemberAnyElement_t2899433779 * L_317 = V_17;
NullCheck(L_317);
TypeData_t3837952962 * L_318 = XmlTypeMapMember_get_TypeData_m3428473262(L_317, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_319 = V_3;
XmlTypeMapMemberAnyElement_t2899433779 * L_320 = V_17;
NullCheck(L_320);
int32_t L_321 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_320, /*hidden argument*/NULL);
NullCheck(L_319);
IL2CPP_ARRAY_BOUNDS_CHECK(L_319, L_321);
Int32U5BU5D_t1809983122* L_322 = V_2;
XmlTypeMapMemberAnyElement_t2899433779 * L_323 = V_17;
NullCheck(L_323);
int32_t L_324 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_323, /*hidden argument*/NULL);
NullCheck(L_322);
IL2CPP_ARRAY_BOUNDS_CHECK(L_322, L_324);
int32_t* L_325 = ((L_322)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_324)));
int32_t L_326 = (*((int32_t*)L_325));
V_34 = L_326;
*((int32_t*)(L_325)) = (int32_t)((int32_t)((int32_t)L_326+(int32_t)1));
int32_t L_327 = V_34;
XmlTypeMapMemberAnyElement_t2899433779 * L_328 = V_17;
NullCheck(L_328);
TypeData_t3837952962 * L_329 = XmlTypeMapMember_get_TypeData_m3428473262(L_328, /*hidden argument*/NULL);
NullCheck(L_329);
TypeData_t3837952962 * L_330 = TypeData_get_ListItemTypeData_m3943692862(L_329, /*hidden argument*/NULL);
Il2CppObject * L_331 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_330, (bool)0, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_318, ((L_319)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_321))), L_327, L_331, (bool)1, /*hidden argument*/NULL);
goto IL_06bf;
}
IL_06a7:
{
XmlTypeMapMemberAnyElement_t2899433779 * L_332 = V_17;
Il2CppObject * L_333 = ___ob;
XmlTypeMapMemberAnyElement_t2899433779 * L_334 = V_17;
NullCheck(L_334);
TypeData_t3837952962 * L_335 = XmlTypeMapMember_get_TypeData_m3428473262(L_334, /*hidden argument*/NULL);
Il2CppObject * L_336 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_335, (bool)0, /*hidden argument*/NULL);
bool L_337 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_332, L_333, L_336, L_337, /*hidden argument*/NULL);
}
IL_06bf:
{
goto IL_0813;
}
IL_06c4:
{
XmlTypeMapElementInfo_t3184170653 * L_338 = V_12;
NullCheck(L_338);
XmlTypeMapMember_t757519331 * L_339 = XmlTypeMapElementInfo_get_Member_m101276455(L_338, /*hidden argument*/NULL);
NullCheck(L_339);
Type_t * L_340 = Object_GetType_m2022236990(L_339, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_341 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberElement_t1386704533_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_340) == ((Il2CppObject*)(Type_t *)L_341))))
{
goto IL_0808;
}
}
{
BooleanU5BU5D_t3804927312* L_342 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_343 = V_12;
NullCheck(L_343);
XmlTypeMapMember_t757519331 * L_344 = XmlTypeMapElementInfo_get_Member_m101276455(L_343, /*hidden argument*/NULL);
NullCheck(L_344);
int32_t L_345 = XmlTypeMapMember_get_Index_m1785150577(L_344, /*hidden argument*/NULL);
NullCheck(L_342);
IL2CPP_ARRAY_BOUNDS_CHECK(L_342, L_345);
(L_342)->SetAt(static_cast<il2cpp_array_size_t>(L_345), (bool)1);
int32_t L_346 = __this->get__format_26();
if (L_346)
{
goto IL_07c3;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_347 = V_12;
NullCheck(L_347);
XmlTypeMapMember_t757519331 * L_348 = XmlTypeMapElementInfo_get_Member_m101276455(L_347, /*hidden argument*/NULL);
NullCheck(L_348);
TypeData_t3837952962 * L_349 = XmlTypeMapMember_get_TypeData_m3428473262(L_348, /*hidden argument*/NULL);
NullCheck(L_349);
int32_t L_350 = TypeData_get_SchemaType_m1693934194(L_349, /*hidden argument*/NULL);
if ((((int32_t)L_350) == ((int32_t)1)))
{
goto IL_0735;
}
}
{
Fixup_t67893584 * L_351 = V_5;
NullCheck(L_351);
StringU5BU5D_t2956870243* L_352 = Fixup_get_Ids_m368502302(L_351, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_353 = V_12;
NullCheck(L_353);
XmlTypeMapMember_t757519331 * L_354 = XmlTypeMapElementInfo_get_Member_m101276455(L_353, /*hidden argument*/NULL);
NullCheck(L_354);
int32_t L_355 = XmlTypeMapMember_get_Index_m1785150577(L_354, /*hidden argument*/NULL);
NullCheck(L_352);
IL2CPP_ARRAY_BOUNDS_CHECK(L_352, L_355);
Il2CppObject * L_356 = XmlSerializationReader_ReadReferencingElement_m3478666258(__this, ((L_352)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_355))), /*hidden argument*/NULL);
V_18 = L_356;
goto IL_076b;
}
IL_0735:
{
XmlTypeMapElementInfo_t3184170653 * L_357 = V_12;
NullCheck(L_357);
XmlTypeMapMember_t757519331 * L_358 = XmlTypeMapElementInfo_get_Member_m101276455(L_357, /*hidden argument*/NULL);
NullCheck(L_358);
TypeData_t3837952962 * L_359 = XmlTypeMapMember_get_TypeData_m3428473262(L_358, /*hidden argument*/NULL);
NullCheck(L_359);
String_t* L_360 = TypeData_get_XmlType_m3918246226(L_359, /*hidden argument*/NULL);
Fixup_t67893584 * L_361 = V_5;
NullCheck(L_361);
StringU5BU5D_t2956870243* L_362 = Fixup_get_Ids_m368502302(L_361, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_363 = V_12;
NullCheck(L_363);
XmlTypeMapMember_t757519331 * L_364 = XmlTypeMapElementInfo_get_Member_m101276455(L_363, /*hidden argument*/NULL);
NullCheck(L_364);
int32_t L_365 = XmlTypeMapMember_get_Index_m1785150577(L_364, /*hidden argument*/NULL);
NullCheck(L_362);
IL2CPP_ARRAY_BOUNDS_CHECK(L_362, L_365);
Il2CppObject * L_366 = XmlSerializationReader_ReadReferencingElement_m1454141082(__this, L_360, _stringLiteral1440052060, ((L_362)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_365))), /*hidden argument*/NULL);
V_18 = L_366;
}
IL_076b:
{
XmlTypeMapElementInfo_t3184170653 * L_367 = V_12;
NullCheck(L_367);
bool L_368 = XmlTypeMapElementInfo_get_MultiReferenceType_m3638335751(L_367, /*hidden argument*/NULL);
if (!L_368)
{
goto IL_07a6;
}
}
{
Fixup_t67893584 * L_369 = V_5;
NullCheck(L_369);
StringU5BU5D_t2956870243* L_370 = Fixup_get_Ids_m368502302(L_369, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_371 = V_12;
NullCheck(L_371);
XmlTypeMapMember_t757519331 * L_372 = XmlTypeMapElementInfo_get_Member_m101276455(L_371, /*hidden argument*/NULL);
NullCheck(L_372);
int32_t L_373 = XmlTypeMapMember_get_Index_m1785150577(L_372, /*hidden argument*/NULL);
NullCheck(L_370);
IL2CPP_ARRAY_BOUNDS_CHECK(L_370, L_373);
int32_t L_374 = L_373;
if (((L_370)->GetAt(static_cast<il2cpp_array_size_t>(L_374))))
{
goto IL_07a1;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_375 = V_12;
NullCheck(L_375);
XmlTypeMapMember_t757519331 * L_376 = XmlTypeMapElementInfo_get_Member_m101276455(L_375, /*hidden argument*/NULL);
Il2CppObject * L_377 = ___ob;
Il2CppObject * L_378 = V_18;
bool L_379 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_376, L_377, L_378, L_379, /*hidden argument*/NULL);
}
IL_07a1:
{
goto IL_07be;
}
IL_07a6:
{
Il2CppObject * L_380 = V_18;
if (!L_380)
{
goto IL_07be;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_381 = V_12;
NullCheck(L_381);
XmlTypeMapMember_t757519331 * L_382 = XmlTypeMapElementInfo_get_Member_m101276455(L_381, /*hidden argument*/NULL);
Il2CppObject * L_383 = ___ob;
Il2CppObject * L_384 = V_18;
bool L_385 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_382, L_383, L_384, L_385, /*hidden argument*/NULL);
}
IL_07be:
{
goto IL_0803;
}
IL_07c3:
{
XmlTypeMapElementInfo_t3184170653 * L_386 = V_12;
NullCheck(L_386);
XmlTypeMapMember_t757519331 * L_387 = XmlTypeMapElementInfo_get_Member_m101276455(L_386, /*hidden argument*/NULL);
Il2CppObject * L_388 = ___ob;
XmlTypeMapElementInfo_t3184170653 * L_389 = V_12;
Il2CppObject * L_390 = XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400(__this, L_389, /*hidden argument*/NULL);
bool L_391 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_387, L_388, L_390, L_391, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_392 = V_12;
NullCheck(L_392);
Il2CppObject * L_393 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_392, /*hidden argument*/NULL);
if (!L_393)
{
goto IL_0803;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_394 = V_12;
NullCheck(L_394);
XmlTypeMapMember_t757519331 * L_395 = XmlTypeMapElementInfo_get_Member_m101276455(L_394, /*hidden argument*/NULL);
V_19 = ((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_395, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_396 = V_19;
Il2CppObject * L_397 = ___ob;
XmlTypeMapElementInfo_t3184170653 * L_398 = V_12;
NullCheck(L_398);
Il2CppObject * L_399 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_398, /*hidden argument*/NULL);
NullCheck(L_396);
XmlTypeMapMemberElement_SetChoice_m4110992127(L_396, L_397, L_399, /*hidden argument*/NULL);
}
IL_0803:
{
goto IL_0813;
}
IL_0808:
{
InvalidOperationException_t2420574324 * L_400 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_400, _stringLiteral431195658, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_400);
}
IL_0813:
{
goto IL_08aa;
}
IL_0818:
{
ClassMap_t912207490 * L_401 = ___map;
NullCheck(L_401);
XmlTypeMapMemberAnyElement_t2899433779 * L_402 = ClassMap_get_DefaultAnyElementMember_m3724699635(L_401, /*hidden argument*/NULL);
if (!L_402)
{
goto IL_08a3;
}
}
{
ClassMap_t912207490 * L_403 = ___map;
NullCheck(L_403);
XmlTypeMapMemberAnyElement_t2899433779 * L_404 = ClassMap_get_DefaultAnyElementMember_m3724699635(L_403, /*hidden argument*/NULL);
V_20 = L_404;
XmlTypeMapMemberAnyElement_t2899433779 * L_405 = V_20;
NullCheck(L_405);
TypeData_t3837952962 * L_406 = XmlTypeMapMember_get_TypeData_m3428473262(L_405, /*hidden argument*/NULL);
NullCheck(L_406);
bool L_407 = TypeData_get_IsListType_m1977463454(L_406, /*hidden argument*/NULL);
if (!L_407)
{
goto IL_0886;
}
}
{
XmlTypeMapMemberAnyElement_t2899433779 * L_408 = V_20;
NullCheck(L_408);
TypeData_t3837952962 * L_409 = XmlTypeMapMember_get_TypeData_m3428473262(L_408, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_410 = V_3;
XmlTypeMapMemberAnyElement_t2899433779 * L_411 = V_20;
NullCheck(L_411);
int32_t L_412 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_411, /*hidden argument*/NULL);
NullCheck(L_410);
IL2CPP_ARRAY_BOUNDS_CHECK(L_410, L_412);
Int32U5BU5D_t1809983122* L_413 = V_2;
XmlTypeMapMemberAnyElement_t2899433779 * L_414 = V_20;
NullCheck(L_414);
int32_t L_415 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_414, /*hidden argument*/NULL);
NullCheck(L_413);
IL2CPP_ARRAY_BOUNDS_CHECK(L_413, L_415);
int32_t* L_416 = ((L_413)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_415)));
int32_t L_417 = (*((int32_t*)L_416));
V_34 = L_417;
*((int32_t*)(L_416)) = (int32_t)((int32_t)((int32_t)L_417+(int32_t)1));
int32_t L_418 = V_34;
XmlTypeMapMemberAnyElement_t2899433779 * L_419 = V_20;
NullCheck(L_419);
TypeData_t3837952962 * L_420 = XmlTypeMapMember_get_TypeData_m3428473262(L_419, /*hidden argument*/NULL);
NullCheck(L_420);
TypeData_t3837952962 * L_421 = TypeData_get_ListItemTypeData_m3943692862(L_420, /*hidden argument*/NULL);
Il2CppObject * L_422 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_421, (bool)0, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_409, ((L_410)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_412))), L_418, L_422, (bool)1, /*hidden argument*/NULL);
goto IL_089e;
}
IL_0886:
{
XmlTypeMapMemberAnyElement_t2899433779 * L_423 = V_20;
Il2CppObject * L_424 = ___ob;
XmlTypeMapMemberAnyElement_t2899433779 * L_425 = V_20;
NullCheck(L_425);
TypeData_t3837952962 * L_426 = XmlTypeMapMember_get_TypeData_m3428473262(L_425, /*hidden argument*/NULL);
Il2CppObject * L_427 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_426, (bool)0, /*hidden argument*/NULL);
bool L_428 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_423, L_424, L_427, L_428, /*hidden argument*/NULL);
}
IL_089e:
{
goto IL_08aa;
}
IL_08a3:
{
Il2CppObject * L_429 = ___ob;
VirtActionInvoker1< Il2CppObject * >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object) */, __this, L_429);
}
IL_08aa:
{
goto IL_0a2c;
}
IL_08af:
{
XmlReader_t4229084514 * L_430 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_430);
int32_t L_431 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_430);
if ((((int32_t)L_431) == ((int32_t)3)))
{
goto IL_08d1;
}
}
{
XmlReader_t4229084514 * L_432 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_432);
int32_t L_433 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_432);
if ((!(((uint32_t)L_433) == ((uint32_t)4))))
{
goto IL_0a25;
}
}
IL_08d1:
{
ClassMap_t912207490 * L_434 = ___map;
NullCheck(L_434);
XmlTypeMapMember_t757519331 * L_435 = ClassMap_get_XmlTextCollector_m2750672627(L_434, /*hidden argument*/NULL);
if (!L_435)
{
goto IL_0a25;
}
}
{
ClassMap_t912207490 * L_436 = ___map;
NullCheck(L_436);
XmlTypeMapMember_t757519331 * L_437 = ClassMap_get_XmlTextCollector_m2750672627(L_436, /*hidden argument*/NULL);
if (!((XmlTypeMapMemberExpandable_t1849554103 *)IsInstClass(L_437, XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var)))
{
goto IL_0997;
}
}
{
ClassMap_t912207490 * L_438 = ___map;
NullCheck(L_438);
XmlTypeMapMember_t757519331 * L_439 = ClassMap_get_XmlTextCollector_m2750672627(L_438, /*hidden argument*/NULL);
V_21 = ((XmlTypeMapMemberExpandable_t1849554103 *)CastclassClass(L_439, XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var));
XmlTypeMapMemberExpandable_t1849554103 * L_440 = V_21;
V_22 = ((XmlTypeMapMemberFlatList_t1312744122 *)IsInstClass(L_440, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var));
XmlTypeMapMemberFlatList_t1312744122 * L_441 = V_22;
if (L_441)
{
goto IL_091a;
}
}
{
XmlTypeMapMemberExpandable_t1849554103 * L_442 = V_21;
NullCheck(L_442);
TypeData_t3837952962 * L_443 = XmlTypeMapMember_get_TypeData_m3428473262(L_442, /*hidden argument*/NULL);
NullCheck(L_443);
TypeData_t3837952962 * L_444 = TypeData_get_ListItemTypeData_m3943692862(L_443, /*hidden argument*/NULL);
G_B112_0 = L_444;
goto IL_092b;
}
IL_091a:
{
XmlTypeMapMemberFlatList_t1312744122 * L_445 = V_22;
NullCheck(L_445);
ListMap_t2001748316 * L_446 = XmlTypeMapMemberFlatList_get_ListMap_m1043078955(L_445, /*hidden argument*/NULL);
NullCheck(L_446);
XmlTypeMapElementInfo_t3184170653 * L_447 = ListMap_FindTextElement_m1603103273(L_446, /*hidden argument*/NULL);
NullCheck(L_447);
TypeData_t3837952962 * L_448 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_447, /*hidden argument*/NULL);
G_B112_0 = L_448;
}
IL_092b:
{
V_23 = G_B112_0;
TypeData_t3837952962 * L_449 = V_23;
NullCheck(L_449);
Type_t * L_450 = TypeData_get_Type_m2191724548(L_449, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_451 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_450) == ((Il2CppObject*)(Type_t *)L_451))))
{
goto IL_0953;
}
}
{
XmlReader_t4229084514 * L_452 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_452);
String_t* L_453 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_452);
G_B115_0 = ((Il2CppObject *)(L_453));
goto IL_095c;
}
IL_0953:
{
TypeData_t3837952962 * L_454 = V_23;
Il2CppObject * L_455 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_454, (bool)0, /*hidden argument*/NULL);
G_B115_0 = L_455;
}
IL_095c:
{
V_24 = G_B115_0;
XmlTypeMapMemberExpandable_t1849554103 * L_456 = V_21;
NullCheck(L_456);
TypeData_t3837952962 * L_457 = XmlTypeMapMember_get_TypeData_m3428473262(L_456, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_458 = V_3;
XmlTypeMapMemberExpandable_t1849554103 * L_459 = V_21;
NullCheck(L_459);
int32_t L_460 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_459, /*hidden argument*/NULL);
NullCheck(L_458);
IL2CPP_ARRAY_BOUNDS_CHECK(L_458, L_460);
Int32U5BU5D_t1809983122* L_461 = V_2;
XmlTypeMapMemberExpandable_t1849554103 * L_462 = V_21;
NullCheck(L_462);
int32_t L_463 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_462, /*hidden argument*/NULL);
NullCheck(L_461);
IL2CPP_ARRAY_BOUNDS_CHECK(L_461, L_463);
int32_t* L_464 = ((L_461)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_463)));
int32_t L_465 = (*((int32_t*)L_464));
V_34 = L_465;
*((int32_t*)(L_464)) = (int32_t)((int32_t)((int32_t)L_465+(int32_t)1));
int32_t L_466 = V_34;
Il2CppObject * L_467 = V_24;
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_457, ((L_458)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_460))), L_466, L_467, (bool)1, /*hidden argument*/NULL);
goto IL_0a20;
}
IL_0997:
{
ClassMap_t912207490 * L_468 = ___map;
NullCheck(L_468);
XmlTypeMapMember_t757519331 * L_469 = ClassMap_get_XmlTextCollector_m2750672627(L_468, /*hidden argument*/NULL);
V_25 = ((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_469, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_470 = V_25;
NullCheck(L_470);
XmlTypeMapElementInfoList_t3690603483 * L_471 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_470, /*hidden argument*/NULL);
NullCheck(L_471);
Il2CppObject * L_472 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_471, 0);
V_26 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_472, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_473 = V_26;
NullCheck(L_473);
TypeData_t3837952962 * L_474 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_473, /*hidden argument*/NULL);
NullCheck(L_474);
Type_t * L_475 = TypeData_get_Type_m2191724548(L_474, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_476 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_475) == ((Il2CppObject*)(Type_t *)L_476))))
{
goto IL_09f7;
}
}
{
XmlTypeMapMemberElement_t1386704533 * L_477 = V_25;
Il2CppObject * L_478 = ___ob;
XmlTypeMapMemberElement_t1386704533 * L_479 = V_25;
Il2CppObject * L_480 = ___ob;
bool L_481 = ___isValueList;
Il2CppObject * L_482 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_479, L_480, L_481, /*hidden argument*/NULL);
String_t* L_483 = XmlSerializationReader_ReadString_m3136532811(__this, ((String_t*)CastclassSealed(L_482, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
bool L_484 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_477, L_478, L_483, L_484, /*hidden argument*/NULL);
goto IL_0a20;
}
IL_09f7:
{
XmlTypeMapMemberElement_t1386704533 * L_485 = V_25;
Il2CppObject * L_486 = ___ob;
XmlReader_t4229084514 * L_487 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_487);
String_t* L_488 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_487);
XmlTypeMapElementInfo_t3184170653 * L_489 = V_26;
NullCheck(L_489);
TypeData_t3837952962 * L_490 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_489, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_491 = V_26;
NullCheck(L_491);
XmlTypeMapping_t988104027 * L_492 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_491, /*hidden argument*/NULL);
Il2CppObject * L_493 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250(__this, L_488, L_490, L_492, /*hidden argument*/NULL);
bool L_494 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_485, L_486, L_493, L_494, /*hidden argument*/NULL);
}
IL_0a20:
{
goto IL_0a2c;
}
IL_0a25:
{
Il2CppObject * L_495 = ___ob;
XmlSerializationReader_UnknownNode_m3502370841(__this, L_495, /*hidden argument*/NULL);
}
IL_0a2c:
{
XmlReader_t4229084514 * L_496 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_496);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_496);
}
IL_0a38:
{
XmlReader_t4229084514 * L_497 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_497);
int32_t L_498 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_497);
if ((((int32_t)L_498) == ((int32_t)((int32_t)15))))
{
goto IL_0a53;
}
}
{
int32_t L_499 = V_6;
int32_t L_500 = V_7;
if ((((int32_t)L_499) < ((int32_t)L_500)))
{
goto IL_0260;
}
}
IL_0a53:
{
ObjectU5BU5D_t11523773* L_501 = V_3;
if (!L_501)
{
goto IL_0b23;
}
}
{
ClassMap_t912207490 * L_502 = ___map;
NullCheck(L_502);
ArrayList_t2121638921 * L_503 = ClassMap_get_FlatLists_m836694060(L_502, /*hidden argument*/NULL);
NullCheck(L_503);
Il2CppObject * L_504 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_503);
V_28 = L_504;
}
IL_0a66:
try
{ // begin try (depth: 1)
{
goto IL_0afc;
}
IL_0a6b:
{
Il2CppObject * L_505 = V_28;
NullCheck(L_505);
Il2CppObject * L_506 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_505);
V_27 = ((XmlTypeMapMemberExpandable_t1849554103 *)CastclassClass(L_506, XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var));
ObjectU5BU5D_t11523773* L_507 = V_3;
XmlTypeMapMemberExpandable_t1849554103 * L_508 = V_27;
NullCheck(L_508);
int32_t L_509 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_508, /*hidden argument*/NULL);
NullCheck(L_507);
IL2CPP_ARRAY_BOUNDS_CHECK(L_507, L_509);
int32_t L_510 = L_509;
V_29 = ((L_507)->GetAt(static_cast<il2cpp_array_size_t>(L_510)));
XmlTypeMapMemberExpandable_t1849554103 * L_511 = V_27;
NullCheck(L_511);
TypeData_t3837952962 * L_512 = XmlTypeMapMember_get_TypeData_m3428473262(L_511, /*hidden argument*/NULL);
NullCheck(L_512);
Type_t * L_513 = TypeData_get_Type_m2191724548(L_512, /*hidden argument*/NULL);
NullCheck(L_513);
bool L_514 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_513);
if (!L_514)
{
goto IL_0ac4;
}
}
IL_0a9a:
{
Il2CppObject * L_515 = V_29;
Int32U5BU5D_t1809983122* L_516 = V_2;
XmlTypeMapMemberExpandable_t1849554103 * L_517 = V_27;
NullCheck(L_517);
int32_t L_518 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_517, /*hidden argument*/NULL);
NullCheck(L_516);
IL2CPP_ARRAY_BOUNDS_CHECK(L_516, L_518);
int32_t L_519 = L_518;
XmlTypeMapMemberExpandable_t1849554103 * L_520 = V_27;
NullCheck(L_520);
TypeData_t3837952962 * L_521 = XmlTypeMapMember_get_TypeData_m3428473262(L_520, /*hidden argument*/NULL);
NullCheck(L_521);
Type_t * L_522 = TypeData_get_Type_m2191724548(L_521, /*hidden argument*/NULL);
NullCheck(L_522);
Type_t * L_523 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_522);
Il2CppArray * L_524 = XmlSerializationReader_ShrinkArray_m1340798607(__this, ((Il2CppArray *)CastclassClass(L_515, Il2CppArray_il2cpp_TypeInfo_var)), ((L_516)->GetAt(static_cast<il2cpp_array_size_t>(L_519))), L_523, (bool)1, /*hidden argument*/NULL);
V_29 = L_524;
}
IL_0ac4:
{
XmlTypeMapMemberExpandable_t1849554103 * L_525 = V_27;
XmlTypeMapMemberExpandable_t1849554103 * L_526 = V_27;
NullCheck(L_526);
TypeData_t3837952962 * L_527 = XmlTypeMapMember_get_TypeData_m3428473262(L_526, /*hidden argument*/NULL);
Il2CppObject * L_528 = ___ob;
bool L_529 = ___isValueList;
bool L_530 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_525, L_527, L_528, L_529, /*hidden argument*/NULL);
if (L_530)
{
goto IL_0afc;
}
}
IL_0ada:
{
XmlTypeMapMemberExpandable_t1849554103 * L_531 = V_27;
NullCheck(L_531);
TypeData_t3837952962 * L_532 = XmlTypeMapMember_get_TypeData_m3428473262(L_531, /*hidden argument*/NULL);
NullCheck(L_532);
Type_t * L_533 = TypeData_get_Type_m2191724548(L_532, /*hidden argument*/NULL);
NullCheck(L_533);
bool L_534 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_533);
if (!L_534)
{
goto IL_0afc;
}
}
IL_0af0:
{
XmlTypeMapMemberExpandable_t1849554103 * L_535 = V_27;
Il2CppObject * L_536 = ___ob;
Il2CppObject * L_537 = V_29;
bool L_538 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_535, L_536, L_537, L_538, /*hidden argument*/NULL);
}
IL_0afc:
{
Il2CppObject * L_539 = V_28;
NullCheck(L_539);
bool L_540 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_539);
if (L_540)
{
goto IL_0a6b;
}
}
IL_0b08:
{
IL2CPP_LEAVE(0xB23, FINALLY_0b0d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0b0d;
}
FINALLY_0b0d:
{ // begin finally (depth: 1)
{
Il2CppObject * L_541 = V_28;
V_35 = ((Il2CppObject *)IsInst(L_541, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_542 = V_35;
if (L_542)
{
goto IL_0b1b;
}
}
IL_0b1a:
{
IL2CPP_END_FINALLY(2829)
}
IL_0b1b:
{
Il2CppObject * L_543 = V_35;
NullCheck(L_543);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_543);
IL2CPP_END_FINALLY(2829)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(2829)
{
IL2CPP_JUMP_TBL(0xB23, IL_0b23)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0b23:
{
ObjectU5BU5D_t11523773* L_544 = V_4;
if (!L_544)
{
goto IL_0bc2;
}
}
{
ClassMap_t912207490 * L_545 = ___map;
NullCheck(L_545);
ArrayList_t2121638921 * L_546 = ClassMap_get_FlatLists_m836694060(L_545, /*hidden argument*/NULL);
NullCheck(L_546);
Il2CppObject * L_547 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_546);
V_31 = L_547;
}
IL_0b37:
try
{ // begin try (depth: 1)
{
goto IL_0b9b;
}
IL_0b3c:
{
Il2CppObject * L_548 = V_31;
NullCheck(L_548);
Il2CppObject * L_549 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_548);
V_30 = ((XmlTypeMapMemberExpandable_t1849554103 *)CastclassClass(L_549, XmlTypeMapMemberExpandable_t1849554103_il2cpp_TypeInfo_var));
ObjectU5BU5D_t11523773* L_550 = V_4;
XmlTypeMapMemberExpandable_t1849554103 * L_551 = V_30;
NullCheck(L_551);
int32_t L_552 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_551, /*hidden argument*/NULL);
NullCheck(L_550);
IL2CPP_ARRAY_BOUNDS_CHECK(L_550, L_552);
int32_t L_553 = L_552;
V_32 = ((L_550)->GetAt(static_cast<il2cpp_array_size_t>(L_553)));
Il2CppObject * L_554 = V_32;
if (L_554)
{
goto IL_0b62;
}
}
IL_0b5d:
{
goto IL_0b9b;
}
IL_0b62:
{
Il2CppObject * L_555 = V_32;
Int32U5BU5D_t1809983122* L_556 = V_2;
XmlTypeMapMemberExpandable_t1849554103 * L_557 = V_30;
NullCheck(L_557);
int32_t L_558 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161(L_557, /*hidden argument*/NULL);
NullCheck(L_556);
IL2CPP_ARRAY_BOUNDS_CHECK(L_556, L_558);
int32_t L_559 = L_558;
XmlTypeMapMemberExpandable_t1849554103 * L_560 = V_30;
NullCheck(L_560);
TypeData_t3837952962 * L_561 = XmlTypeMapMemberElement_get_ChoiceTypeData_m3523493323(L_560, /*hidden argument*/NULL);
NullCheck(L_561);
Type_t * L_562 = TypeData_get_Type_m2191724548(L_561, /*hidden argument*/NULL);
NullCheck(L_562);
Type_t * L_563 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_562);
Il2CppArray * L_564 = XmlSerializationReader_ShrinkArray_m1340798607(__this, ((Il2CppArray *)CastclassClass(L_555, Il2CppArray_il2cpp_TypeInfo_var)), ((L_556)->GetAt(static_cast<il2cpp_array_size_t>(L_559))), L_563, (bool)1, /*hidden argument*/NULL);
V_32 = L_564;
Il2CppObject * L_565 = ___ob;
XmlTypeMapMemberExpandable_t1849554103 * L_566 = V_30;
NullCheck(L_566);
String_t* L_567 = XmlTypeMapMemberElement_get_ChoiceMember_m1211378825(L_566, /*hidden argument*/NULL);
Il2CppObject * L_568 = V_32;
XmlTypeMapMember_SetValue_m331432915(NULL /*static, unused*/, L_565, L_567, L_568, /*hidden argument*/NULL);
}
IL_0b9b:
{
Il2CppObject * L_569 = V_31;
NullCheck(L_569);
bool L_570 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_569);
if (L_570)
{
goto IL_0b3c;
}
}
IL_0ba7:
{
IL2CPP_LEAVE(0xBC2, FINALLY_0bac);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0bac;
}
FINALLY_0bac:
{ // begin finally (depth: 1)
{
Il2CppObject * L_571 = V_31;
V_36 = ((Il2CppObject *)IsInst(L_571, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_572 = V_36;
if (L_572)
{
goto IL_0bba;
}
}
IL_0bb9:
{
IL2CPP_END_FINALLY(2988)
}
IL_0bba:
{
Il2CppObject * L_573 = V_36;
NullCheck(L_573);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_573);
IL2CPP_END_FINALLY(2988)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(2988)
{
IL2CPP_JUMP_TBL(0xBC2, IL_0bc2)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0bc2:
{
ClassMap_t912207490 * L_574 = ___map;
Il2CppObject * L_575 = ___ob;
bool L_576 = ___isValueList;
XmlSerializationReaderInterpreter_SetListMembersDefaults_m2216929449(__this, L_574, L_575, L_576, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetListMembersDefaults(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern TypeInfo* XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_SetListMembersDefaults_m2216929449_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_SetListMembersDefaults_m2216929449 (XmlSerializationReaderInterpreter_t1865114396 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_SetListMembersDefaults_m2216929449_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ArrayList_t2121638921 * V_0 = NULL;
int32_t V_1 = 0;
XmlTypeMapMember_t757519331 * V_2 = NULL;
{
ClassMap_t912207490 * L_0 = ___map;
NullCheck(L_0);
ArrayList_t2121638921 * L_1 = ClassMap_get_ListMembers_m3321229227(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0072;
}
}
{
ClassMap_t912207490 * L_2 = ___map;
NullCheck(L_2);
ArrayList_t2121638921 * L_3 = ClassMap_get_ListMembers_m3321229227(L_2, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0066;
}
IL_0019:
{
ArrayList_t2121638921 * L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
Il2CppObject * L_6 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_2 = ((XmlTypeMapMember_t757519331 *)CastclassClass(L_6, XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var));
XmlTypeMapMember_t757519331 * L_7 = V_2;
XmlTypeMapMember_t757519331 * L_8 = V_2;
NullCheck(L_8);
TypeData_t3837952962 * L_9 = XmlTypeMapMember_get_TypeData_m3428473262(L_8, /*hidden argument*/NULL);
Il2CppObject * L_10 = ___ob;
bool L_11 = ___isValueList;
bool L_12 = XmlSerializationReaderInterpreter_IsReadOnly_m1984941087(__this, L_7, L_9, L_10, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_003f;
}
}
{
goto IL_0062;
}
IL_003f:
{
XmlTypeMapMember_t757519331 * L_13 = V_2;
Il2CppObject * L_14 = ___ob;
bool L_15 = ___isValueList;
Il2CppObject * L_16 = XmlSerializationReaderInterpreter_GetMemberValue_m3633760437(__this, L_13, L_14, L_15, /*hidden argument*/NULL);
if (L_16)
{
goto IL_0062;
}
}
{
XmlTypeMapMember_t757519331 * L_17 = V_2;
Il2CppObject * L_18 = ___ob;
XmlTypeMapMember_t757519331 * L_19 = V_2;
NullCheck(L_19);
TypeData_t3837952962 * L_20 = XmlTypeMapMember_get_TypeData_m3428473262(L_19, /*hidden argument*/NULL);
Il2CppObject * L_21 = XmlSerializationReaderInterpreter_InitializeList_m546932942(__this, L_20, /*hidden argument*/NULL);
bool L_22 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_17, L_18, L_21, L_22, /*hidden argument*/NULL);
}
IL_0062:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)((int32_t)L_23+(int32_t)1));
}
IL_0066:
{
int32_t L_24 = V_1;
ArrayList_t2121638921 * L_25 = V_0;
NullCheck(L_25);
int32_t L_26 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_25);
if ((((int32_t)L_24) < ((int32_t)L_26)))
{
goto IL_0019;
}
}
IL_0072:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern TypeInfo* Fixup_t67893584_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_FixupMembers_m1308266983_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_FixupMembers_m1308266983 (XmlSerializationReaderInterpreter_t1865114396 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___obfixup, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_FixupMembers_m1308266983_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Fixup_t67893584 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
StringU5BU5D_t2956870243* V_2 = NULL;
XmlTypeMapMember_t757519331 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Il2CppObject * V_5 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Il2CppObject * L_0 = ___obfixup;
V_0 = ((Fixup_t67893584 *)CastclassClass(L_0, Fixup_t67893584_il2cpp_TypeInfo_var));
ClassMap_t912207490 * L_1 = ___map;
NullCheck(L_1);
Il2CppObject * L_2 = ClassMap_get_ElementMembers_m1176036895(L_1, /*hidden argument*/NULL);
V_1 = L_2;
Fixup_t67893584 * L_3 = V_0;
NullCheck(L_3);
StringU5BU5D_t2956870243* L_4 = Fixup_get_Ids_m368502302(L_3, /*hidden argument*/NULL);
V_2 = L_4;
Il2CppObject * L_5 = V_1;
NullCheck(L_5);
Il2CppObject * L_6 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_5);
V_4 = L_6;
}
IL_001d:
try
{ // begin try (depth: 1)
{
goto IL_0058;
}
IL_0022:
{
Il2CppObject * L_7 = V_4;
NullCheck(L_7);
Il2CppObject * L_8 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_7);
V_3 = ((XmlTypeMapMember_t757519331 *)CastclassClass(L_8, XmlTypeMapMember_t757519331_il2cpp_TypeInfo_var));
StringU5BU5D_t2956870243* L_9 = V_2;
XmlTypeMapMember_t757519331 * L_10 = V_3;
NullCheck(L_10);
int32_t L_11 = XmlTypeMapMember_get_Index_m1785150577(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
IL2CPP_ARRAY_BOUNDS_CHECK(L_9, L_11);
int32_t L_12 = L_11;
if (!((L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12))))
{
goto IL_0058;
}
}
IL_003c:
{
XmlTypeMapMember_t757519331 * L_13 = V_3;
Fixup_t67893584 * L_14 = V_0;
NullCheck(L_14);
Il2CppObject * L_15 = Fixup_get_Source_m3149781347(L_14, /*hidden argument*/NULL);
StringU5BU5D_t2956870243* L_16 = V_2;
XmlTypeMapMember_t757519331 * L_17 = V_3;
NullCheck(L_17);
int32_t L_18 = XmlTypeMapMember_get_Index_m1785150577(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_18);
int32_t L_19 = L_18;
Il2CppObject * L_20 = XmlSerializationReader_GetTarget_m2963915255(__this, ((L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19))), /*hidden argument*/NULL);
bool L_21 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_13, L_15, L_20, L_21, /*hidden argument*/NULL);
}
IL_0058:
{
Il2CppObject * L_22 = V_4;
NullCheck(L_22);
bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_0022;
}
}
IL_0064:
{
IL2CPP_LEAVE(0x7F, FINALLY_0069);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0069;
}
FINALLY_0069:
{ // begin finally (depth: 1)
{
Il2CppObject * L_24 = V_4;
V_5 = ((Il2CppObject *)IsInst(L_24, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_25 = V_5;
if (L_25)
{
goto IL_0077;
}
}
IL_0076:
{
IL2CPP_END_FINALLY(105)
}
IL_0077:
{
Il2CppObject * L_26 = V_5;
NullCheck(L_26);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_26);
IL2CPP_END_FINALLY(105)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(105)
{
IL2CPP_JUMP_TBL(0x7F, IL_007f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_007f:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object)
extern "C" void XmlSerializationReaderInterpreter_ProcessUnknownAttribute_m1017083930 (XmlSerializationReaderInterpreter_t1865114396 * __this, Il2CppObject * ___target, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___target;
XmlSerializationReader_UnknownNode_m3502370841(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object)
extern "C" void XmlSerializationReaderInterpreter_ProcessUnknownElement_m2581126266 (XmlSerializationReaderInterpreter_t1865114396 * __this, Il2CppObject * ___target, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___target;
XmlSerializationReader_UnknownNode_m3502370841(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter::IsReadOnly(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData,System.Object,System.Boolean)
extern "C" bool XmlSerializationReaderInterpreter_IsReadOnly_m1984941087 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapMember_t757519331 * ___member, TypeData_t3837952962 * ___memType, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
int32_t G_B5_0 = 0;
{
bool L_0 = ___isValueList;
if (!L_0)
{
goto IL_0011;
}
}
{
TypeData_t3837952962 * L_1 = ___memType;
NullCheck(L_1);
bool L_2 = TypeData_get_HasPublicConstructor_m3359090099(L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
}
IL_0011:
{
XmlTypeMapMember_t757519331 * L_3 = ___member;
Il2CppObject * L_4 = ___ob;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2022236990(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
bool L_6 = XmlTypeMapMember_IsReadOnly_m3382064857(L_3, L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_002d;
}
}
{
TypeData_t3837952962 * L_7 = ___memType;
NullCheck(L_7);
bool L_8 = TypeData_get_HasPublicConstructor_m3359090099(L_7, /*hidden argument*/NULL);
G_B5_0 = ((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
goto IL_002e;
}
IL_002d:
{
G_B5_0 = 1;
}
IL_002e:
{
return (bool)G_B5_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_SetMemberValue_m4123924326_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_SetMemberValue_m4123924326 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapMember_t757519331 * ___member, Il2CppObject * ___ob, Il2CppObject * ___value, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_SetMemberValue_m4123924326_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___isValueList;
if (!L_0)
{
goto IL_001a;
}
}
{
Il2CppObject * L_1 = ___ob;
XmlTypeMapMember_t757519331 * L_2 = ___member;
NullCheck(L_2);
int32_t L_3 = XmlTypeMapMember_get_GlobalIndex_m1359983822(L_2, /*hidden argument*/NULL);
Il2CppObject * L_4 = ___value;
NullCheck(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)));
IL2CPP_ARRAY_BOUNDS_CHECK(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)), L_3);
ArrayElementTypeCheck (((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)), L_4);
(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)))->SetAt(static_cast<il2cpp_array_size_t>(L_3), (Il2CppObject *)L_4);
goto IL_0035;
}
IL_001a:
{
XmlTypeMapMember_t757519331 * L_5 = ___member;
Il2CppObject * L_6 = ___ob;
Il2CppObject * L_7 = ___value;
NullCheck(L_5);
XmlTypeMapMember_SetValue_m1279268951(L_5, L_6, L_7, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_8 = ___member;
NullCheck(L_8);
bool L_9 = XmlTypeMapMember_get_IsOptionalValueType_m3882268486(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0035;
}
}
{
XmlTypeMapMember_t757519331 * L_10 = ___member;
Il2CppObject * L_11 = ___ob;
NullCheck(L_10);
XmlTypeMapMember_SetValueSpecified_m1043962768(L_10, L_11, (bool)1, /*hidden argument*/NULL);
}
IL_0035:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValueFromAttr(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean)
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m2685661441_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m2685661441 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapMember_t757519331 * ___member, Il2CppObject * ___ob, Il2CppObject * ___value, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m2685661441_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapMember_t757519331 * L_0 = ___member;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapMember_get_TypeData_m3428473262(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
Type_t * L_2 = TypeData_get_Type_m2191724548(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
bool L_3 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Type::get_IsEnum() */, L_2);
if (!L_3)
{
goto IL_0028;
}
}
{
XmlTypeMapMember_t757519331 * L_4 = ___member;
NullCheck(L_4);
TypeData_t3837952962 * L_5 = XmlTypeMapMember_get_TypeData_m3428473262(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
Type_t * L_6 = TypeData_get_Type_m2191724548(L_5, /*hidden argument*/NULL);
Il2CppObject * L_7 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
Il2CppObject * L_8 = Enum_ToObject_m1129836274(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL);
___value = L_8;
}
IL_0028:
{
XmlTypeMapMember_t757519331 * L_9 = ___member;
Il2CppObject * L_10 = ___ob;
Il2CppObject * L_11 = ___value;
bool L_12 = ___isValueList;
XmlSerializationReaderInterpreter_SetMemberValue_m4123924326(__this, L_9, L_10, L_11, L_12, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_GetMemberValue_m3633760437_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_GetMemberValue_m3633760437 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapMember_t757519331 * ___member, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_GetMemberValue_m3633760437_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___isValueList;
if (!L_0)
{
goto IL_0014;
}
}
{
Il2CppObject * L_1 = ___ob;
XmlTypeMapMember_t757519331 * L_2 = ___member;
NullCheck(L_2);
int32_t L_3 = XmlTypeMapMember_get_GlobalIndex_m1359983822(L_2, /*hidden argument*/NULL);
NullCheck(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)));
IL2CPP_ARRAY_BOUNDS_CHECK(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)), L_3);
int32_t L_4 = L_3;
return ((((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)))->GetAt(static_cast<il2cpp_array_size_t>(L_4)));
}
IL_0014:
{
XmlTypeMapMember_t757519331 * L_5 = ___member;
Il2CppObject * L_6 = ___ob;
NullCheck(L_5);
Il2CppObject * L_7 = XmlTypeMapMember_GetValue_m1259309106(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObjectElement(System.Xml.Serialization.XmlTypeMapElementInfo)
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3985849970;
extern const uint32_t XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapElementInfo_t3184170653 * ___elem, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
int32_t V_1 = 0;
{
XmlTypeMapElementInfo_t3184170653 * L_0 = ___elem;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = TypeData_get_SchemaType_m1693934194(L_1, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = V_1;
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 0)
{
goto IL_003f;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 1)
{
goto IL_003f;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 2)
{
goto IL_0047;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 3)
{
goto IL_005c;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 4)
{
goto IL_0070;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 5)
{
goto IL_0031;
}
}
{
goto IL_008f;
}
IL_0031:
{
XmlTypeMapElementInfo_t3184170653 * L_4 = ___elem;
NullCheck(L_4);
TypeData_t3837952962 * L_5 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_4, /*hidden argument*/NULL);
Il2CppObject * L_6 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_5, (bool)1, /*hidden argument*/NULL);
return L_6;
}
IL_003f:
{
XmlTypeMapElementInfo_t3184170653 * L_7 = ___elem;
Il2CppObject * L_8 = XmlSerializationReaderInterpreter_ReadPrimitiveValue_m1460079763(__this, L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0047:
{
XmlTypeMapElementInfo_t3184170653 * L_9 = ___elem;
NullCheck(L_9);
XmlTypeMapping_t988104027 * L_10 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_9, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_11 = ___elem;
NullCheck(L_11);
bool L_12 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_11, /*hidden argument*/NULL);
Il2CppObject * L_13 = XmlSerializationReaderInterpreter_ReadListElement_m2231524935(__this, L_10, L_12, NULL, (bool)1, /*hidden argument*/NULL);
return L_13;
}
IL_005c:
{
XmlTypeMapElementInfo_t3184170653 * L_14 = ___elem;
NullCheck(L_14);
XmlTypeMapping_t988104027 * L_15 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_14, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_16 = ___elem;
NullCheck(L_16);
bool L_17 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_16, /*hidden argument*/NULL);
Il2CppObject * L_18 = VirtFuncInvoker3< Il2CppObject *, XmlTypeMapping_t988104027 *, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_15, L_17, (bool)1);
return L_18;
}
IL_0070:
{
XmlTypeMapElementInfo_t3184170653 * L_19 = ___elem;
NullCheck(L_19);
TypeData_t3837952962 * L_20 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Type_t * L_21 = TypeData_get_Type_m2191724548(L_20, /*hidden argument*/NULL);
Il2CppObject * L_22 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_21, (bool)1, /*hidden argument*/NULL);
V_0 = L_22;
Il2CppObject * L_23 = V_0;
Il2CppObject * L_24 = XmlSerializationReader_ReadSerializable_m3446020923(__this, ((Il2CppObject *)Castclass(L_23, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_24;
}
IL_008f:
{
NotSupportedException_t1374155497 * L_25 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_25, _stringLiteral3985849970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25);
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveValue(System.Xml.Serialization.XmlTypeMapElementInfo)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadPrimitiveValue_m1460079763_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadPrimitiveValue_m1460079763 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapElementInfo_t3184170653 * ___elem, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadPrimitiveValue_m1460079763_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapElementInfo_t3184170653 * L_0 = ___elem;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
Type_t * L_2 = TypeData_get_Type_m2191724548(L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3))))
{
goto IL_0033;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_4 = ___elem;
NullCheck(L_4);
bool L_5 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002c;
}
}
{
XmlQualifiedName_t176365656 * L_6 = XmlSerializationReader_ReadNullableQualifiedName_m4264043212(__this, /*hidden argument*/NULL);
return L_6;
}
IL_002c:
{
XmlQualifiedName_t176365656 * L_7 = XmlSerializationReader_ReadElementQualifiedName_m646822247(__this, /*hidden argument*/NULL);
return L_7;
}
IL_0033:
{
XmlTypeMapElementInfo_t3184170653 * L_8 = ___elem;
NullCheck(L_8);
bool L_9 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0057;
}
}
{
String_t* L_10 = XmlSerializationReader_ReadNullableString_m2696644760(__this, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_11 = ___elem;
NullCheck(L_11);
TypeData_t3837952962 * L_12 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_11, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_13 = ___elem;
NullCheck(L_13);
XmlTypeMapping_t988104027 * L_14 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_13, /*hidden argument*/NULL);
Il2CppObject * L_15 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250(__this, L_10, L_12, L_14, /*hidden argument*/NULL);
return L_15;
}
IL_0057:
{
XmlReader_t4229084514 * L_16 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(40 /* System.String System.Xml.XmlReader::ReadElementString() */, L_16);
XmlTypeMapElementInfo_t3184170653 * L_18 = ___elem;
NullCheck(L_18);
TypeData_t3837952962 * L_19 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_18, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_20 = ___elem;
NullCheck(L_20);
XmlTypeMapping_t988104027 * L_21 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_20, /*hidden argument*/NULL);
Il2CppObject * L_22 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250(__this, L_17, L_19, L_21, /*hidden argument*/NULL);
return L_22;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetValueFromXmlString(System.String,System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlTypeMapping)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250 (XmlSerializationReaderInterpreter_t1865114396 * __this, String_t* ___value, TypeData_t3837952962 * ___typeData, XmlTypeMapping_t988104027 * ___typeMap, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeData_t3837952962 * L_0 = ___typeData;
NullCheck(L_0);
int32_t L_1 = TypeData_get_SchemaType_m1693934194(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_0015;
}
}
{
XmlTypeMapping_t988104027 * L_2 = ___typeMap;
String_t* L_3 = ___value;
Il2CppObject * L_4 = XmlSerializationReaderInterpreter_ReadListString_m3080279290(__this, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0015:
{
TypeData_t3837952962 * L_5 = ___typeData;
NullCheck(L_5);
int32_t L_6 = TypeData_get_SchemaType_m1693934194(L_5, /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)2))))
{
goto IL_002a;
}
}
{
XmlTypeMapping_t988104027 * L_7 = ___typeMap;
String_t* L_8 = ___value;
Il2CppObject * L_9 = XmlSerializationReaderInterpreter_GetEnumValue_m4089369701(__this, L_7, L_8, /*hidden argument*/NULL);
return L_9;
}
IL_002a:
{
TypeData_t3837952962 * L_10 = ___typeData;
NullCheck(L_10);
Type_t * L_11 = TypeData_get_Type_m2191724548(L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12))))
{
goto IL_0047;
}
}
{
String_t* L_13 = ___value;
XmlQualifiedName_t176365656 * L_14 = XmlSerializationReader_ToXmlQualifiedName_m574550865(__this, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0047:
{
TypeData_t3837952962 * L_15 = ___typeData;
String_t* L_16 = ___value;
Il2CppObject * L_17 = XmlCustomFormatter_FromXmlString_m1762936378(NULL /*static, unused*/, L_15, L_16, /*hidden argument*/NULL);
return L_17;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Object,System.Boolean)
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadListElement_m2231524935_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadListElement_m2231524935 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, Il2CppObject * ___list, bool ___canCreateInstance, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadListElement_m2231524935_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
ListMap_t2001748316 * V_1 = NULL;
int32_t V_2 = 0;
XmlTypeMapElementInfo_t3184170653 * V_3 = NULL;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapping_get_TypeData_m3898113510(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
Type_t * L_2 = TypeData_get_Type_m2191724548(L_1, /*hidden argument*/NULL);
V_0 = L_2;
XmlTypeMapping_t988104027 * L_3 = ___typeMap;
NullCheck(L_3);
ObjectMap_t669501211 * L_4 = XmlMapping_get_ObjectMap_m3032707184(L_3, /*hidden argument*/NULL);
V_1 = ((ListMap_t2001748316 *)CastclassClass(L_4, ListMap_t2001748316_il2cpp_TypeInfo_var));
Type_t * L_5 = V_0;
NullCheck(L_5);
bool L_6 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_5);
if (!L_6)
{
goto IL_0030;
}
}
{
bool L_7 = XmlSerializationReader_ReadNull_m1989574600(__this, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0030;
}
}
{
return NULL;
}
IL_0030:
{
Il2CppObject * L_8 = ___list;
if (L_8)
{
goto IL_0068;
}
}
{
bool L_9 = ___canCreateInstance;
if (!L_9)
{
goto IL_005b;
}
}
{
XmlTypeMapping_t988104027 * L_10 = ___typeMap;
NullCheck(L_10);
TypeData_t3837952962 * L_11 = XmlTypeMapping_get_TypeData_m3898113510(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_12 = TypeData_get_HasPublicConstructor_m3359090099(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_005b;
}
}
{
Type_t * L_13 = V_0;
Il2CppObject * L_14 = XmlSerializationReaderInterpreter_CreateList_m986025985(__this, L_13, /*hidden argument*/NULL);
___list = L_14;
goto IL_0068;
}
IL_005b:
{
XmlTypeMapping_t988104027 * L_15 = ___typeMap;
NullCheck(L_15);
String_t* L_16 = XmlTypeMapping_get_TypeFullName_m420567886(L_15, /*hidden argument*/NULL);
Exception_t1967233988 * L_17 = XmlSerializationReader_CreateReadOnlyCollectionException_m494995583(__this, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17);
}
IL_0068:
{
XmlReader_t4229084514 * L_18 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_18);
bool L_19 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_18);
if (!L_19)
{
goto IL_00a6;
}
}
{
XmlReader_t4229084514 * L_20 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_20);
VirtActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlReader::Skip() */, L_20);
Type_t * L_21 = V_0;
NullCheck(L_21);
bool L_22 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_21);
if (!L_22)
{
goto IL_00a4;
}
}
{
Il2CppObject * L_23 = ___list;
Type_t * L_24 = V_0;
NullCheck(L_24);
Type_t * L_25 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_24);
Il2CppArray * L_26 = XmlSerializationReader_ShrinkArray_m1340798607(__this, ((Il2CppArray *)CastclassClass(L_23, Il2CppArray_il2cpp_TypeInfo_var)), 0, L_25, (bool)0, /*hidden argument*/NULL);
___list = L_26;
}
IL_00a4:
{
Il2CppObject * L_27 = ___list;
return L_27;
}
IL_00a6:
{
V_2 = 0;
XmlReader_t4229084514 * L_28 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_28);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_28);
XmlReader_t4229084514 * L_29 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_29);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_29);
goto IL_0137;
}
IL_00c4:
{
XmlReader_t4229084514 * L_30 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_30);
if ((!(((uint32_t)L_31) == ((uint32_t)1))))
{
goto IL_0124;
}
}
{
ListMap_t2001748316 * L_32 = V_1;
XmlReader_t4229084514 * L_33 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_33);
XmlReader_t4229084514 * L_35 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_35);
String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_35);
NullCheck(L_32);
XmlTypeMapElementInfo_t3184170653 * L_37 = ListMap_FindElement_m1213748392(L_32, L_34, L_36, /*hidden argument*/NULL);
V_3 = L_37;
XmlTypeMapElementInfo_t3184170653 * L_38 = V_3;
if (!L_38)
{
goto IL_0118;
}
}
{
XmlTypeMapping_t988104027 * L_39 = ___typeMap;
NullCheck(L_39);
TypeData_t3837952962 * L_40 = XmlTypeMapping_get_TypeData_m3898113510(L_39, /*hidden argument*/NULL);
int32_t L_41 = V_2;
int32_t L_42 = L_41;
V_2 = ((int32_t)((int32_t)L_42+(int32_t)1));
XmlTypeMapElementInfo_t3184170653 * L_43 = V_3;
Il2CppObject * L_44 = XmlSerializationReaderInterpreter_ReadObjectElement_m3057182400(__this, L_43, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_AddListValue_m452481463(__this, L_40, (&___list), L_42, L_44, (bool)0, /*hidden argument*/NULL);
goto IL_011f;
}
IL_0118:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
}
IL_011f:
{
goto IL_012b;
}
IL_0124:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
}
IL_012b:
{
XmlReader_t4229084514 * L_45 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_45);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_45);
}
IL_0137:
{
XmlReader_t4229084514 * L_46 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_46);
int32_t L_47 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_46);
if ((!(((uint32_t)L_47) == ((uint32_t)((int32_t)15)))))
{
goto IL_00c4;
}
}
{
XmlSerializationReader_ReadEndElement_m3127481962(__this, /*hidden argument*/NULL);
Type_t * L_48 = V_0;
NullCheck(L_48);
bool L_49 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_48);
if (!L_49)
{
goto IL_0170;
}
}
{
Il2CppObject * L_50 = ___list;
int32_t L_51 = V_2;
Type_t * L_52 = V_0;
NullCheck(L_52);
Type_t * L_53 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_52);
Il2CppArray * L_54 = XmlSerializationReader_ShrinkArray_m1340798607(__this, ((Il2CppArray *)CastclassClass(L_50, Il2CppArray_il2cpp_TypeInfo_var)), L_51, L_53, (bool)0, /*hidden argument*/NULL);
___list = L_54;
}
IL_0170:
{
Il2CppObject * L_55 = ___list;
return L_55;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListString(System.Xml.Serialization.XmlTypeMapping,System.String)
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* CharU5BU5D_t3416858730_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadListString_m3080279290_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadListString_m3080279290 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, String_t* ___values, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadListString_m3080279290_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
ListMap_t2001748316 * V_1 = NULL;
StringU5BU5D_t2956870243* V_2 = NULL;
Il2CppArray * V_3 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_4 = NULL;
int32_t V_5 = 0;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapping_get_TypeData_m3898113510(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
Type_t * L_2 = TypeData_get_Type_m2191724548(L_1, /*hidden argument*/NULL);
V_0 = L_2;
XmlTypeMapping_t988104027 * L_3 = ___typeMap;
NullCheck(L_3);
ObjectMap_t669501211 * L_4 = XmlMapping_get_ObjectMap_m3032707184(L_3, /*hidden argument*/NULL);
V_1 = ((ListMap_t2001748316 *)CastclassClass(L_4, ListMap_t2001748316_il2cpp_TypeInfo_var));
String_t* L_5 = ___values;
NullCheck(L_5);
String_t* L_6 = String_Trim_m1030489823(L_5, /*hidden argument*/NULL);
___values = L_6;
String_t* L_7 = ___values;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_9 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_003d;
}
}
{
Type_t * L_10 = V_0;
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_10);
Il2CppArray * L_12 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_11, 0, /*hidden argument*/NULL);
return L_12;
}
IL_003d:
{
String_t* L_13 = ___values;
CharU5BU5D_t3416858730* L_14 = ((CharU5BU5D_t3416858730*)SZArrayNew(CharU5BU5D_t3416858730_il2cpp_TypeInfo_var, (uint32_t)1));
NullCheck(L_14);
IL2CPP_ARRAY_BOUNDS_CHECK(L_14, 0);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint16_t)((int32_t)32));
NullCheck(L_13);
StringU5BU5D_t2956870243* L_15 = String_Split_m290179486(L_13, L_14, /*hidden argument*/NULL);
V_2 = L_15;
Type_t * L_16 = V_0;
NullCheck(L_16);
Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_16);
StringU5BU5D_t2956870243* L_18 = V_2;
NullCheck(L_18);
Il2CppArray * L_19 = Array_CreateInstance_m1364223436(NULL /*static, unused*/, L_17, (((int32_t)((int32_t)(((Il2CppArray *)L_18)->max_length)))), /*hidden argument*/NULL);
V_3 = L_19;
ListMap_t2001748316 * L_20 = V_1;
NullCheck(L_20);
XmlTypeMapElementInfoList_t3690603483 * L_21 = ListMap_get_ItemInfo_m2242411739(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
Il2CppObject * L_22 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_21, 0);
V_4 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_22, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
V_5 = 0;
goto IL_009f;
}
IL_0079:
{
Il2CppArray * L_23 = V_3;
StringU5BU5D_t2956870243* L_24 = V_2;
int32_t L_25 = V_5;
NullCheck(L_24);
IL2CPP_ARRAY_BOUNDS_CHECK(L_24, L_25);
int32_t L_26 = L_25;
XmlTypeMapElementInfo_t3184170653 * L_27 = V_4;
NullCheck(L_27);
TypeData_t3837952962 * L_28 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_27, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_29 = V_4;
NullCheck(L_29);
XmlTypeMapping_t988104027 * L_30 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_29, /*hidden argument*/NULL);
Il2CppObject * L_31 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m1130414250(__this, ((L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26))), L_28, L_30, /*hidden argument*/NULL);
int32_t L_32 = V_5;
NullCheck(L_23);
Array_SetValue_m3564402974(L_23, L_31, L_32, /*hidden argument*/NULL);
int32_t L_33 = V_5;
V_5 = ((int32_t)((int32_t)L_33+(int32_t)1));
}
IL_009f:
{
int32_t L_34 = V_5;
StringU5BU5D_t2956870243* L_35 = V_2;
NullCheck(L_35);
if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_35)->max_length)))))))
{
goto IL_0079;
}
}
{
Il2CppArray * L_36 = V_3;
return L_36;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::AddListValue(System.Xml.Serialization.TypeData,System.Object&,System.Int32,System.Object,System.Boolean)
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern TypeInfo* TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral65665;
extern const uint32_t XmlSerializationReaderInterpreter_AddListValue_m452481463_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_AddListValue_m452481463 (XmlSerializationReaderInterpreter_t1865114396 * __this, TypeData_t3837952962 * ___listType, Il2CppObject ** ___list, int32_t ___index, Il2CppObject * ___value, bool ___canCreateInstance, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_AddListValue_m452481463_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
{
TypeData_t3837952962 * L_0 = ___listType;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Type_t * L_2 = V_0;
NullCheck(L_2);
bool L_3 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_2);
if (!L_3)
{
goto IL_003c;
}
}
{
Il2CppObject ** L_4 = ___list;
Il2CppObject ** L_5 = ___list;
int32_t L_6 = ___index;
Type_t * L_7 = V_0;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_7);
Il2CppArray * L_9 = XmlSerializationReader_EnsureArrayIndex_m1200206641(__this, ((Il2CppArray *)CastclassClass((*((Il2CppObject **)L_5)), Il2CppArray_il2cpp_TypeInfo_var)), L_6, L_8, /*hidden argument*/NULL);
*((Il2CppObject **)(L_4)) = (Il2CppObject *)L_9;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_4), (Il2CppObject *)L_9);
Il2CppObject ** L_10 = ___list;
Il2CppObject * L_11 = ___value;
int32_t L_12 = ___index;
NullCheck(((Il2CppArray *)CastclassClass((*((Il2CppObject **)L_10)), Il2CppArray_il2cpp_TypeInfo_var)));
Array_SetValue_m3564402974(((Il2CppArray *)CastclassClass((*((Il2CppObject **)L_10)), Il2CppArray_il2cpp_TypeInfo_var)), L_11, L_12, /*hidden argument*/NULL);
goto IL_0094;
}
IL_003c:
{
Il2CppObject ** L_13 = ___list;
if ((*((Il2CppObject **)L_13)))
{
goto IL_0065;
}
}
{
bool L_14 = ___canCreateInstance;
if (!L_14)
{
goto IL_0058;
}
}
{
Il2CppObject ** L_15 = ___list;
Type_t * L_16 = V_0;
Il2CppObject * L_17 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_16, (bool)1, /*hidden argument*/NULL);
*((Il2CppObject **)(L_15)) = (Il2CppObject *)L_17;
Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_15), (Il2CppObject *)L_17);
goto IL_0065;
}
IL_0058:
{
Type_t * L_18 = V_0;
NullCheck(L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_18);
Exception_t1967233988 * L_20 = XmlSerializationReader_CreateReadOnlyCollectionException_m494995583(__this, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20);
}
IL_0065:
{
Type_t * L_21 = V_0;
TypeU5BU5D_t3431720054* L_22 = ((TypeU5BU5D_t3431720054*)SZArrayNew(TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var, (uint32_t)1));
TypeData_t3837952962 * L_23 = ___listType;
NullCheck(L_23);
Type_t * L_24 = TypeData_get_ListItemType_m2794988341(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
IL2CPP_ARRAY_BOUNDS_CHECK(L_22, 0);
ArrayElementTypeCheck (L_22, L_24);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_24);
NullCheck(L_21);
MethodInfo_t * L_25 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_21, _stringLiteral65665, L_22);
V_1 = L_25;
MethodInfo_t * L_26 = V_1;
Il2CppObject ** L_27 = ___list;
ObjectU5BU5D_t11523773* L_28 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_29 = ___value;
NullCheck(L_28);
IL2CPP_ARRAY_BOUNDS_CHECK(L_28, 0);
ArrayElementTypeCheck (L_28, L_29);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_29);
NullCheck(L_26);
VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_26, (*((Il2CppObject **)L_27)), L_28);
}
IL_0094:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type)
extern TypeInfo* XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_CreateInstance_m893565418_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_CreateInstance_m893565418 (XmlSerializationReaderInterpreter_t1865114396 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_CreateInstance_m893565418_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var);
ObjectU5BU5D_t11523773* L_1 = ((XmlSerializationReaderInterpreter_t1865114396_StaticFields*)XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var->static_fields)->get_empty_array_28();
Il2CppObject * L_2 = Activator_CreateInstance_m2161363287(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateList(System.Type)
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_CreateList_m986025985 (XmlSerializationReaderInterpreter_t1865114396 * __this, Type_t * ___listType, const MethodInfo* method)
{
{
Type_t * L_0 = ___listType;
NullCheck(L_0);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_0);
if (!L_1)
{
goto IL_001a;
}
}
{
Type_t * L_2 = ___listType;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_2);
Il2CppArray * L_4 = XmlSerializationReader_EnsureArrayIndex_m1200206641(__this, (Il2CppArray *)NULL, 0, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_001a:
{
Type_t * L_5 = ___listType;
Il2CppObject * L_6 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_5, (bool)1, /*hidden argument*/NULL);
return L_6;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::InitializeList(System.Xml.Serialization.TypeData)
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_InitializeList_m546932942 (XmlSerializationReaderInterpreter_t1865114396 * __this, TypeData_t3837952962 * ___listType, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = ___listType;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_1);
if (!L_2)
{
goto IL_0012;
}
}
{
return NULL;
}
IL_0012:
{
TypeData_t3837952962 * L_3 = ___listType;
NullCheck(L_3);
Type_t * L_4 = TypeData_get_Type_m2191724548(L_3, /*hidden argument*/NULL);
Il2CppObject * L_5 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_4, (bool)1, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FillList(System.Object,System.Object)
extern "C" void XmlSerializationReaderInterpreter_FillList_m2781762456 (XmlSerializationReaderInterpreter_t1865114396 * __this, Il2CppObject * ___list, Il2CppObject * ___items, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___items;
Il2CppObject * L_1 = ___list;
XmlSerializationReaderInterpreter_CopyEnumerableList_m1241431358(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::CopyEnumerableList(System.Object,System.Object)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral65665;
extern const uint32_t XmlSerializationReaderInterpreter_CopyEnumerableList_m1241431358_MetadataUsageId;
extern "C" void XmlSerializationReaderInterpreter_CopyEnumerableList_m1241431358 (XmlSerializationReaderInterpreter_t1865114396 * __this, Il2CppObject * ___source, Il2CppObject * ___dest, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_CopyEnumerableList_m1241431358_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ObjectU5BU5D_t11523773* V_0 = NULL;
MethodInfo_t * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Il2CppObject * L_0 = ___dest;
if (L_0)
{
goto IL_0018;
}
}
{
Il2CppObject * L_1 = ___source;
NullCheck(L_1);
Type_t * L_2 = Object_GetType_m2022236990(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_2);
Exception_t1967233988 * L_4 = XmlSerializationReader_CreateReadOnlyCollectionException_m494995583(__this, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4);
}
IL_0018:
{
V_0 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_5 = ___dest;
NullCheck(L_5);
Type_t * L_6 = Object_GetType_m2022236990(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
MethodInfo_t * L_7 = VirtFuncInvoker1< MethodInfo_t *, String_t* >::Invoke(53 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String) */, L_6, _stringLiteral65665);
V_1 = L_7;
Il2CppObject * L_8 = ___source;
NullCheck(((Il2CppObject *)Castclass(L_8, IEnumerable_t287189635_il2cpp_TypeInfo_var)));
Il2CppObject * L_9 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, ((Il2CppObject *)Castclass(L_8, IEnumerable_t287189635_il2cpp_TypeInfo_var)));
V_3 = L_9;
}
IL_003c:
try
{ // begin try (depth: 1)
{
goto IL_0055;
}
IL_0041:
{
Il2CppObject * L_10 = V_3;
NullCheck(L_10);
Il2CppObject * L_11 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_10);
V_2 = L_11;
ObjectU5BU5D_t11523773* L_12 = V_0;
Il2CppObject * L_13 = V_2;
NullCheck(L_12);
IL2CPP_ARRAY_BOUNDS_CHECK(L_12, 0);
ArrayElementTypeCheck (L_12, L_13);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_13);
MethodInfo_t * L_14 = V_1;
Il2CppObject * L_15 = ___dest;
ObjectU5BU5D_t11523773* L_16 = V_0;
NullCheck(L_14);
VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_14, L_15, L_16);
}
IL_0055:
{
Il2CppObject * L_17 = V_3;
NullCheck(L_17);
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0041;
}
}
IL_0060:
{
IL2CPP_LEAVE(0x7A, FINALLY_0065);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0065;
}
FINALLY_0065:
{ // begin finally (depth: 1)
{
Il2CppObject * L_19 = V_3;
V_4 = ((Il2CppObject *)IsInst(L_19, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_20 = V_4;
if (L_20)
{
goto IL_0072;
}
}
IL_0071:
{
IL2CPP_END_FINALLY(101)
}
IL_0072:
{
Il2CppObject * L_21 = V_4;
NullCheck(L_21);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_21);
IL2CPP_END_FINALLY(101)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(101)
{
IL2CPP_JUMP_TBL(0x7A, IL_007a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_007a:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNodeElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadXmlNodeElement_m2666956979 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapping_get_TypeData_m3898113510(L_0, /*hidden argument*/NULL);
Il2CppObject * L_2 = XmlSerializationReaderInterpreter_ReadXmlNode_m304139082(__this, L_1, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNode(System.Xml.Serialization.TypeData,System.Boolean)
extern const Il2CppType* XmlDocument_t3705263098_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadXmlNode_m304139082_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadXmlNode_m304139082 (XmlSerializationReaderInterpreter_t1865114396 * __this, TypeData_t3837952962 * ___type, bool ___wrapped, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadXmlNode_m304139082_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeData_t3837952962 * L_0 = ___type;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlDocument_t3705263098_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_1) == ((Il2CppObject*)(Type_t *)L_2))))
{
goto IL_001d;
}
}
{
bool L_3 = ___wrapped;
XmlDocument_t3705263098 * L_4 = XmlSerializationReader_ReadXmlDocument_m365015991(__this, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_001d:
{
bool L_5 = ___wrapped;
XmlNode_t3592213601 * L_6 = XmlSerializationReader_ReadXmlNode_m2066466327(__this, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadPrimitiveElement_m3056638981_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadPrimitiveElement_m3056638981 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadPrimitiveElement_m3056638981_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
{
XmlQualifiedName_t176365656 * L_0 = XmlSerializationReader_GetXsiType_m305667192(__this, /*hidden argument*/NULL);
V_0 = L_0;
XmlQualifiedName_t176365656 * L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_2 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_1, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
XmlTypeMapping_t988104027 * L_3 = ___typeMap;
NullCheck(L_3);
String_t* L_4 = XmlTypeMapping_get_XmlType_m1769290969(L_3, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_5 = ___typeMap;
NullCheck(L_5);
String_t* L_6 = XmlMapping_get_Namespace_m4151275177(L_5, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_7 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_7, L_4, L_6, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_0025:
{
XmlQualifiedName_t176365656 * L_8 = V_0;
Il2CppObject * L_9 = XmlSerializationReader_ReadTypedPrimitive_m827243227(__this, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadEnumElement_m642699493 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, const MethodInfo* method)
{
Il2CppObject * V_0 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker0::Invoke(43 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_0);
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
XmlReader_t4229084514 * L_2 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(44 /* System.String System.Xml.XmlReader::ReadString() */, L_2);
Il2CppObject * L_4 = XmlSerializationReaderInterpreter_GetEnumValue_m4089369701(__this, L_1, L_3, /*hidden argument*/NULL);
V_0 = L_4;
XmlSerializationReader_ReadEndElement_m3127481962(__this, /*hidden argument*/NULL);
Il2CppObject * L_5 = V_0;
return L_5;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetEnumValue(System.Xml.Serialization.XmlTypeMapping,System.String)
extern TypeInfo* EnumMap_t228974105_il2cpp_TypeInfo_var;
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_GetEnumValue_m4089369701_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_GetEnumValue_m4089369701 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, String_t* ___val, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_GetEnumValue_m4089369701_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
EnumMap_t228974105 * V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___val;
if (L_0)
{
goto IL_0008;
}
}
{
return NULL;
}
IL_0008:
{
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
NullCheck(L_1);
ObjectMap_t669501211 * L_2 = XmlMapping_get_ObjectMap_m3032707184(L_1, /*hidden argument*/NULL);
V_0 = ((EnumMap_t228974105 *)CastclassClass(L_2, EnumMap_t228974105_il2cpp_TypeInfo_var));
EnumMap_t228974105 * L_3 = V_0;
XmlTypeMapping_t988104027 * L_4 = ___typeMap;
NullCheck(L_4);
String_t* L_5 = XmlTypeMapping_get_TypeFullName_m420567886(L_4, /*hidden argument*/NULL);
String_t* L_6 = ___val;
NullCheck(L_3);
String_t* L_7 = EnumMap_GetEnumName_m2804311267(L_3, L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
String_t* L_8 = V_1;
if (L_8)
{
goto IL_003b;
}
}
{
String_t* L_9 = ___val;
XmlTypeMapping_t988104027 * L_10 = ___typeMap;
NullCheck(L_10);
TypeData_t3837952962 * L_11 = XmlTypeMapping_get_TypeData_m3898113510(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
Type_t * L_12 = TypeData_get_Type_m2191724548(L_11, /*hidden argument*/NULL);
Exception_t1967233988 * L_13 = XmlSerializationReader_CreateUnknownConstantException_m262637350(__this, L_9, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13);
}
IL_003b:
{
XmlTypeMapping_t988104027 * L_14 = ___typeMap;
NullCheck(L_14);
TypeData_t3837952962 * L_15 = XmlTypeMapping_get_TypeData_m3898113510(L_14, /*hidden argument*/NULL);
NullCheck(L_15);
Type_t * L_16 = TypeData_get_Type_m2191724548(L_15, /*hidden argument*/NULL);
String_t* L_17 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
Il2CppObject * L_18 = Enum_Parse_m2929309979(NULL /*static, unused*/, L_16, L_17, /*hidden argument*/NULL);
return L_18;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlSerializableElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationReaderInterpreter_ReadXmlSerializableElement_m148149782_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationReaderInterpreter_ReadXmlSerializableElement_m148149782 (XmlSerializationReaderInterpreter_t1865114396 * __this, XmlTypeMapping_t988104027 * ___typeMap, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationReaderInterpreter_ReadXmlSerializableElement_m148149782_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
{
XmlReader_t4229084514 * L_0 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_0);
VirtFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0);
XmlReader_t4229084514 * L_1 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_0079;
}
}
{
XmlReader_t4229084514 * L_3 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(14 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3);
XmlTypeMapping_t988104027 * L_5 = ___typeMap;
NullCheck(L_5);
String_t* L_6 = XmlMapping_get_ElementName_m2753779381(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_7 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0072;
}
}
{
XmlReader_t4229084514 * L_8 = XmlSerializationReader_get_Reader_m330992306(__this, /*hidden argument*/NULL);
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_8);
XmlTypeMapping_t988104027 * L_10 = ___typeMap;
NullCheck(L_10);
String_t* L_11 = XmlMapping_get_Namespace_m4151275177(L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_12 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_9, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0072;
}
}
{
XmlTypeMapping_t988104027 * L_13 = ___typeMap;
NullCheck(L_13);
TypeData_t3837952962 * L_14 = XmlTypeMapping_get_TypeData_m3898113510(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
Type_t * L_15 = TypeData_get_Type_m2191724548(L_14, /*hidden argument*/NULL);
Il2CppObject * L_16 = Activator_CreateInstance_m876910386(NULL /*static, unused*/, L_15, (bool)1, /*hidden argument*/NULL);
V_0 = L_16;
Il2CppObject * L_17 = V_0;
Il2CppObject * L_18 = XmlSerializationReader_ReadSerializable_m3446020923(__this, ((Il2CppObject *)Castclass(L_17, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_18;
}
IL_0072:
{
Exception_t1967233988 * L_19 = XmlSerializationReader_CreateUnknownNodeException_m2252572497(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19);
}
IL_0079:
{
XmlSerializationReader_UnknownNode_m3502370841(__this, NULL, /*hidden argument*/NULL);
return NULL;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean)
extern "C" void FixupCallbackInfo__ctor_m2836221356 (FixupCallbackInfo_t3459720195 * __this, XmlSerializationReaderInterpreter_t1865114396 * ___sri, ClassMap_t912207490 * ___map, bool ___isValueList, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_t1865114396 * L_0 = ___sri;
__this->set__sri_0(L_0);
ClassMap_t912207490 * L_1 = ___map;
__this->set__map_1(L_1);
bool L_2 = ___isValueList;
__this->set__isValueList_2(L_2);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::FixupMembers(System.Object)
extern "C" void FixupCallbackInfo_FixupMembers_m2627474254 (FixupCallbackInfo_t3459720195 * __this, Il2CppObject * ___fixup, const MethodInfo* method)
{
{
XmlSerializationReaderInterpreter_t1865114396 * L_0 = __this->get__sri_0();
ClassMap_t912207490 * L_1 = __this->get__map_1();
Il2CppObject * L_2 = ___fixup;
bool L_3 = __this->get__isValueList_2();
NullCheck(L_0);
XmlSerializationReaderInterpreter_FixupMembers_m1308266983(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping)
extern "C" void ReaderCallbackInfo__ctor_m2066026711 (ReaderCallbackInfo_t922331926 * __this, XmlSerializationReaderInterpreter_t1865114396 * ___sri, XmlTypeMapping_t988104027 * ___typeMap, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlSerializationReaderInterpreter_t1865114396 * L_0 = ___sri;
__this->set__sri_0(L_0);
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
__this->set__typeMap_1(L_1);
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::ReadObject()
extern "C" Il2CppObject * ReaderCallbackInfo_ReadObject_m2972116574 (ReaderCallbackInfo_t922331926 * __this, const MethodInfo* method)
{
{
XmlSerializationReaderInterpreter_t1865114396 * L_0 = __this->get__sri_0();
XmlTypeMapping_t988104027 * L_1 = __this->get__typeMap_1();
NullCheck(L_0);
Il2CppObject * L_2 = VirtFuncInvoker3< Il2CppObject *, XmlTypeMapping_t988104027 *, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, L_0, L_1, (bool)1, (bool)1);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::.ctor(System.Object,System.IntPtr)
extern "C" void XmlSerializationWriteCallback__ctor_m2179432948 (XmlSerializationWriteCallback_t4044254761 * __this, Il2CppObject * ___object, IntPtr_t ___method, const MethodInfo* method)
{
__this->set_method_ptr_0((methodPointerType)((MethodInfo*)___method.get_m_value_0())->method);
__this->set_method_3(___method);
__this->set_m_target_2(___object);
}
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::Invoke(System.Object)
extern "C" void XmlSerializationWriteCallback_Invoke_m511629574 (XmlSerializationWriteCallback_t4044254761 * __this, Il2CppObject * ___o, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
XmlSerializationWriteCallback_Invoke_m511629574((XmlSerializationWriteCallback_t4044254761 *)__this->get_prev_9(),___o, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___o, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,il2cpp_codegen_get_delegate_this(__this),___o,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___o, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(il2cpp_codegen_get_delegate_this(__this),___o,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___o,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
extern "C" void pinvoke_delegate_wrapper_XmlSerializationWriteCallback_t4044254761(Il2CppObject* delegate, Il2CppObject * ___o)
{
// Marshaling of parameter '___o' to native representation
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_not_supported_exception("Cannot marshal type 'System.Object'."));
}
// System.IAsyncResult System.Xml.Serialization.XmlSerializationWriteCallback::BeginInvoke(System.Object,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * XmlSerializationWriteCallback_BeginInvoke_m4194149415 (XmlSerializationWriteCallback_t4044254761 * __this, Il2CppObject * ___o, AsyncCallback_t1363551830 * ___callback, Il2CppObject * ___object, const MethodInfo* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___o;
return (Il2CppObject *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback, (Il2CppObject*)___object);
}
// System.Void System.Xml.Serialization.XmlSerializationWriteCallback::EndInvoke(System.IAsyncResult)
extern "C" void XmlSerializationWriteCallback_EndInvoke_m2744258052 (XmlSerializationWriteCallback_t4044254761 * __this, Il2CppObject * ___result, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) ___result, 0);
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::.ctor()
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter__ctor_m3754471073_MetadataUsageId;
extern "C" void XmlSerializationWriter__ctor_m3754471073 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter__ctor_m3754471073_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlSerializationGeneratedCode__ctor_m1416890774(__this, /*hidden argument*/NULL);
__this->set_qnameCount_1(0);
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
__this->set_serializedObjects_7(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::Initialize(System.Xml.XmlWriter,System.Xml.Serialization.XmlSerializerNamespaces)
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_Initialize_m4227547674_MetadataUsageId;
extern "C" void XmlSerializationWriter_Initialize_m4227547674 (XmlSerializationWriter_t695994538 * __this, XmlWriter_t89522450 * ___writer, XmlSerializerNamespaces_t2229116383 * ___nss, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_Initialize_m4227547674_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
XmlQualifiedNameU5BU5D_t781474633* V_1 = NULL;
int32_t V_2 = 0;
{
XmlWriter_t89522450 * L_0 = ___writer;
__this->set_writer_4(L_0);
XmlSerializerNamespaces_t2229116383 * L_1 = ___nss;
if (!L_1)
{
goto IL_006e;
}
}
{
ArrayList_t2121638921 * L_2 = (ArrayList_t2121638921 *)il2cpp_codegen_object_new(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(L_2, /*hidden argument*/NULL);
__this->set_namespaces_3(L_2);
XmlSerializerNamespaces_t2229116383 * L_3 = ___nss;
NullCheck(L_3);
XmlQualifiedNameU5BU5D_t781474633* L_4 = XmlSerializerNamespaces_ToArray_m2329284233(L_3, /*hidden argument*/NULL);
V_1 = L_4;
V_2 = 0;
goto IL_0065;
}
IL_0026:
{
XmlQualifiedNameU5BU5D_t781474633* L_5 = V_1;
int32_t L_6 = V_2;
NullCheck(L_5);
IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6);
int32_t L_7 = L_6;
V_0 = ((L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)));
XmlQualifiedName_t176365656 * L_8 = V_0;
NullCheck(L_8);
String_t* L_9 = XmlQualifiedName_get_Name_m607016698(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_11 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0061;
}
}
{
XmlQualifiedName_t176365656 * L_12 = V_0;
NullCheck(L_12);
String_t* L_13 = XmlQualifiedName_get_Namespace_m2987642414(L_12, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_14 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_15 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0061;
}
}
{
ArrayList_t2121638921 * L_16 = __this->get_namespaces_3();
XmlQualifiedName_t176365656 * L_17 = V_0;
NullCheck(L_16);
VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_17);
}
IL_0061:
{
int32_t L_18 = V_2;
V_2 = ((int32_t)((int32_t)L_18+(int32_t)1));
}
IL_0065:
{
int32_t L_19 = V_2;
XmlQualifiedNameU5BU5D_t781474633* L_20 = V_1;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_20)->max_length)))))))
{
goto IL_0026;
}
}
IL_006e:
{
return;
}
}
// System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::get_Writer()
extern "C" XmlWriter_t89522450 * XmlSerializationWriter_get_Writer_m1690548674 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
{
XmlWriter_t89522450 * L_0 = __this->get_writer_4();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::AddWriteCallback(System.Type,System.String,System.String,System.Xml.Serialization.XmlSerializationWriteCallback)
extern TypeInfo* WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var;
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_AddWriteCallback_m1309576612_MetadataUsageId;
extern "C" void XmlSerializationWriter_AddWriteCallback_m1309576612 (XmlSerializationWriter_t695994538 * __this, Type_t * ___type, String_t* ___typeName, String_t* ___typeNs, XmlSerializationWriteCallback_t4044254761 * ___callback, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_AddWriteCallback_m1309576612_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
WriteCallbackInfo_t2990892019 * V_0 = NULL;
{
WriteCallbackInfo_t2990892019 * L_0 = (WriteCallbackInfo_t2990892019 *)il2cpp_codegen_object_new(WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var);
WriteCallbackInfo__ctor_m2385224414(L_0, /*hidden argument*/NULL);
V_0 = L_0;
WriteCallbackInfo_t2990892019 * L_1 = V_0;
Type_t * L_2 = ___type;
NullCheck(L_1);
L_1->set_Type_0(L_2);
WriteCallbackInfo_t2990892019 * L_3 = V_0;
String_t* L_4 = ___typeName;
NullCheck(L_3);
L_3->set_TypeName_1(L_4);
WriteCallbackInfo_t2990892019 * L_5 = V_0;
String_t* L_6 = ___typeNs;
NullCheck(L_5);
L_5->set_TypeNs_2(L_6);
WriteCallbackInfo_t2990892019 * L_7 = V_0;
XmlSerializationWriteCallback_t4044254761 * L_8 = ___callback;
NullCheck(L_7);
L_7->set_Callback_3(L_8);
Hashtable_t3875263730 * L_9 = __this->get_callbacks_6();
if (L_9)
{
goto IL_0039;
}
}
{
Hashtable_t3875263730 * L_10 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_10, /*hidden argument*/NULL);
__this->set_callbacks_6(L_10);
}
IL_0039:
{
Hashtable_t3875263730 * L_11 = __this->get_callbacks_6();
Type_t * L_12 = ___type;
WriteCallbackInfo_t2990892019 * L_13 = V_0;
NullCheck(L_11);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13);
return;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownAnyElementException(System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1255035345;
extern const uint32_t XmlSerializationWriter_CreateUnknownAnyElementException_m4111638859_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationWriter_CreateUnknownAnyElementException_m4111638859 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_CreateUnknownAnyElementException_m4111638859_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral1255035345, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
String_t* L_3 = V_0;
InvalidOperationException_t2420574324 * L_4 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_4, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Object)
extern "C" Exception_t1967233988 * XmlSerializationWriter_CreateUnknownTypeException_m2000708971 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___o, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___o;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2022236990(L_0, /*hidden argument*/NULL);
Exception_t1967233988 * L_2 = XmlSerializationWriter_CreateUnknownTypeException_m1124707600(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Type)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4011957379;
extern const uint32_t XmlSerializationWriter_CreateUnknownTypeException_m1124707600_MetadataUsageId;
extern "C" Exception_t1967233988 * XmlSerializationWriter_CreateUnknownTypeException_m1124707600 (XmlSerializationWriter_t695994538 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_CreateUnknownTypeException_m1124707600_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
Type_t * L_0 = ___type;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = String_Format_m2471250780(NULL /*static, unused*/, _stringLiteral4011957379, L_0, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = V_0;
InvalidOperationException_t2420574324 * L_3 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::FromXmlQualifiedName(System.Xml.XmlQualifiedName)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_FromXmlQualifiedName_m2747019346_MetadataUsageId;
extern "C" String_t* XmlSerializationWriter_FromXmlQualifiedName_m2747019346 (XmlSerializationWriter_t695994538 * __this, XmlQualifiedName_t176365656 * ___xmlQualifiedName, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_FromXmlQualifiedName_m2747019346_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = ___xmlQualifiedName;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_1 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_0, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001c;
}
}
{
XmlQualifiedName_t176365656 * L_2 = ___xmlQualifiedName;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName_t176365656 * L_3 = ((XmlQualifiedName_t176365656_StaticFields*)XmlQualifiedName_t176365656_il2cpp_TypeInfo_var->static_fields)->get_Empty_0();
bool L_4 = XmlQualifiedName_op_Equality_m273752697(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_001e;
}
}
IL_001c:
{
return (String_t*)NULL;
}
IL_001e:
{
XmlQualifiedName_t176365656 * L_5 = ___xmlQualifiedName;
NullCheck(L_5);
String_t* L_6 = XmlQualifiedName_get_Name_m607016698(L_5, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_7 = ___xmlQualifiedName;
NullCheck(L_7);
String_t* L_8 = XmlQualifiedName_get_Namespace_m2987642414(L_7, /*hidden argument*/NULL);
String_t* L_9 = XmlSerializationWriter_GetQualifiedName_m2319455181(__this, L_6, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetId(System.Object,System.Boolean)
extern TypeInfo* ObjectIDGenerator_t1038861362_il2cpp_TypeInfo_var;
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Int64_t2847414882_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral100068621;
extern const uint32_t XmlSerializationWriter_GetId_m4158266140_MetadataUsageId;
extern "C" String_t* XmlSerializationWriter_GetId_m4158266140 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___o, bool ___addToReferencesList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_GetId_m4158266140_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
int64_t V_1 = 0;
{
ObjectIDGenerator_t1038861362 * L_0 = __this->get_idGenerator_0();
if (L_0)
{
goto IL_0016;
}
}
{
ObjectIDGenerator_t1038861362 * L_1 = (ObjectIDGenerator_t1038861362 *)il2cpp_codegen_object_new(ObjectIDGenerator_t1038861362_il2cpp_TypeInfo_var);
ObjectIDGenerator__ctor_m3765306348(L_1, /*hidden argument*/NULL);
__this->set_idGenerator_0(L_1);
}
IL_0016:
{
ObjectIDGenerator_t1038861362 * L_2 = __this->get_idGenerator_0();
Il2CppObject * L_3 = ___o;
NullCheck(L_2);
int64_t L_4 = VirtFuncInvoker2< int64_t, Il2CppObject *, bool* >::Invoke(4 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::GetId(System.Object,System.Boolean&) */, L_2, L_3, (&V_0));
V_1 = L_4;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_5 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_6 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
int64_t L_7 = V_1;
int64_t L_8 = L_7;
Il2CppObject * L_9 = Box(Int64_t2847414882_il2cpp_TypeInfo_var, &L_8);
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 0);
ArrayElementTypeCheck (L_6, L_9);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_9);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = String_Format_m3351777162(NULL /*static, unused*/, L_5, _stringLiteral100068621, L_6, /*hidden argument*/NULL);
return L_10;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::AlreadyQueued(System.Object)
extern "C" bool XmlSerializationWriter_AlreadyQueued_m4102899170 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
bool V_0 = false;
{
ObjectIDGenerator_t1038861362 * L_0 = __this->get_idGenerator_0();
if (L_0)
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
ObjectIDGenerator_t1038861362 * L_1 = __this->get_idGenerator_0();
Il2CppObject * L_2 = ___ob;
NullCheck(L_1);
VirtFuncInvoker2< int64_t, Il2CppObject *, bool* >::Invoke(5 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::HasId(System.Object,System.Boolean&) */, L_1, L_2, (&V_0));
bool L_3 = V_0;
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetNamespacePrefix(System.String)
extern TypeInfo* CultureInfo_t3603717042_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3486199;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern const uint32_t XmlSerializationWriter_GetNamespacePrefix_m3950822475_MetadataUsageId;
extern "C" String_t* XmlSerializationWriter_GetNamespacePrefix_m3950822475 (XmlSerializationWriter_t695994538 * __this, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_GetNamespacePrefix_m3950822475_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
XmlWriter_t89522450 * L_0 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_1 = ___ns;
NullCheck(L_0);
String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_0, L_1);
V_0 = L_2;
String_t* L_3 = V_0;
if (L_3)
{
goto IL_0050;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3603717042_il2cpp_TypeInfo_var);
CultureInfo_t3603717042 * L_4 = CultureInfo_get_InvariantCulture_m764001524(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_5 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
int32_t L_6 = __this->get_qnameCount_1();
int32_t L_7 = ((int32_t)((int32_t)L_6+(int32_t)1));
V_1 = L_7;
__this->set_qnameCount_1(L_7);
int32_t L_8 = V_1;
int32_t L_9 = L_8;
Il2CppObject * L_10 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_9);
NullCheck(L_5);
IL2CPP_ARRAY_BOUNDS_CHECK(L_5, 0);
ArrayElementTypeCheck (L_5, L_10);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_10);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_11 = String_Format_m3351777162(NULL /*static, unused*/, L_4, _stringLiteral3486199, L_5, /*hidden argument*/NULL);
V_0 = L_11;
String_t* L_12 = V_0;
String_t* L_13 = ___ns;
XmlSerializationWriter_WriteAttribute_m2575401974(__this, _stringLiteral114177052, L_12, (String_t*)NULL, L_13, /*hidden argument*/NULL);
}
IL_0050:
{
String_t* L_14 = V_0;
return L_14;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriter::GetQualifiedName(System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3280257461;
extern const uint32_t XmlSerializationWriter_GetQualifiedName_m2319455181_MetadataUsageId;
extern "C" String_t* XmlSerializationWriter_GetQualifiedName_m2319455181 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_GetQualifiedName_m2319455181_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_2 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0012;
}
}
{
String_t* L_3 = ___name;
return L_3;
}
IL_0012:
{
String_t* L_4 = ___ns;
String_t* L_5 = XmlSerializationWriter_GetNamespacePrefix_m3950822475(__this, L_4, /*hidden argument*/NULL);
V_0 = L_5;
String_t* L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_8 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_002c;
}
}
{
String_t* L_9 = ___name;
return L_9;
}
IL_002c:
{
String_t* L_10 = V_0;
String_t* L_11 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_12 = String_Format_m2398979370(NULL /*static, unused*/, _stringLiteral3280257461, L_10, L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::TopLevelElement()
extern "C" void XmlSerializationWriter_TopLevelElement_m3061898188 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
{
__this->set_topLevelElement_2((bool)1);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String)
extern "C" void XmlSerializationWriter_WriteAttribute_m353765690 (XmlSerializationWriter_t695994538 * __this, String_t* ___localName, String_t* ___ns, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___localName;
String_t* L_1 = ___ns;
String_t* L_2 = ___value;
XmlSerializationWriter_WriteAttribute_m2575401974(__this, (String_t*)NULL, L_0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String,System.String)
extern "C" void XmlSerializationWriter_WriteAttribute_m2575401974 (XmlSerializationWriter_t695994538 * __this, String_t* ___prefix, String_t* ___localName, String_t* ___ns, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
if (L_0)
{
goto IL_0008;
}
}
{
return;
}
IL_0008:
{
XmlWriter_t89522450 * L_1 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_2 = ___prefix;
String_t* L_3 = ___localName;
String_t* L_4 = ___ns;
String_t* L_5 = ___value;
NullCheck(L_1);
XmlWriter_WriteAttributeString_m1630990645(L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlNode(System.Xml.XmlNode)
extern TypeInfo* XmlDocument_t3705263098_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteXmlNode_m1283885242_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteXmlNode_m1283885242 (XmlSerializationWriter_t695994538 * __this, XmlNode_t3592213601 * ___node, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteXmlNode_m1283885242_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlNode_t3592213601 * L_0 = ___node;
if (!((XmlDocument_t3705263098 *)IsInstClass(L_0, XmlDocument_t3705263098_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
XmlNode_t3592213601 * L_1 = ___node;
NullCheck(((XmlDocument_t3705263098 *)CastclassClass(L_1, XmlDocument_t3705263098_il2cpp_TypeInfo_var)));
XmlElement_t3562928333 * L_2 = XmlDocument_get_DocumentElement_m2125605639(((XmlDocument_t3705263098 *)CastclassClass(L_1, XmlDocument_t3705263098_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
___node = L_2;
}
IL_0018:
{
XmlNode_t3592213601 * L_3 = ___node;
XmlWriter_t89522450 * L_4 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_3);
VirtActionInvoker1< XmlWriter_t89522450 * >::Invoke(37 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_3, L_4);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementEncoded(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteElementEncoded_m3487212261_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteElementEncoded_m3487212261 (XmlSerializationWriter_t695994538 * __this, XmlNode_t3592213601 * ___node, String_t* ___name, String_t* ___ns, bool ___isNullable, bool ___any, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteElementEncoded_m3487212261_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_2 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004e;
}
}
{
XmlNode_t3592213601 * L_3 = ___node;
if (L_3)
{
goto IL_002a;
}
}
{
bool L_4 = ___isNullable;
if (!L_4)
{
goto IL_0025;
}
}
{
String_t* L_5 = ___name;
String_t* L_6 = ___ns;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_5, L_6, /*hidden argument*/NULL);
}
IL_0025:
{
goto IL_0049;
}
IL_002a:
{
XmlWriter_t89522450 * L_7 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_8 = ___name;
String_t* L_9 = ___ns;
NullCheck(L_7);
XmlWriter_WriteStartElement_m2273103734(L_7, L_8, L_9, /*hidden argument*/NULL);
XmlNode_t3592213601 * L_10 = ___node;
XmlSerializationWriter_WriteXmlNode_m1283885242(__this, L_10, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_11 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_11);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_11);
}
IL_0049:
{
goto IL_0055;
}
IL_004e:
{
XmlNode_t3592213601 * L_12 = ___node;
XmlSerializationWriter_WriteXmlNode_m1283885242(__this, L_12, /*hidden argument*/NULL);
}
IL_0055:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementLiteral(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteElementLiteral_m3283896518_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteElementLiteral_m3283896518 (XmlSerializationWriter_t695994538 * __this, XmlNode_t3592213601 * ___node, String_t* ___name, String_t* ___ns, bool ___isNullable, bool ___any, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteElementLiteral_m3283896518_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_2 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004e;
}
}
{
XmlNode_t3592213601 * L_3 = ___node;
if (L_3)
{
goto IL_002a;
}
}
{
bool L_4 = ___isNullable;
if (!L_4)
{
goto IL_0025;
}
}
{
String_t* L_5 = ___name;
String_t* L_6 = ___ns;
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_5, L_6, /*hidden argument*/NULL);
}
IL_0025:
{
goto IL_0049;
}
IL_002a:
{
XmlWriter_t89522450 * L_7 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_8 = ___name;
String_t* L_9 = ___ns;
NullCheck(L_7);
XmlWriter_WriteStartElement_m2273103734(L_7, L_8, L_9, /*hidden argument*/NULL);
XmlNode_t3592213601 * L_10 = ___node;
XmlSerializationWriter_WriteXmlNode_m1283885242(__this, L_10, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_11 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_11);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_11);
}
IL_0049:
{
goto IL_0055;
}
IL_004e:
{
XmlNode_t3592213601 * L_12 = ___node;
XmlSerializationWriter_WriteXmlNode_m1283885242(__this, L_12, /*hidden argument*/NULL);
}
IL_0055:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName)
extern "C" void XmlSerializationWriter_WriteElementQualifiedName_m1557459131 (XmlSerializationWriter_t695994538 * __this, String_t* ___localName, String_t* ___ns, XmlQualifiedName_t176365656 * ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___localName;
String_t* L_1 = ___ns;
XmlQualifiedName_t176365656 * L_2 = ___value;
XmlSerializationWriter_WriteElementQualifiedName_m2531664577(__this, L_0, L_1, L_2, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteElementQualifiedName_m2531664577_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteElementQualifiedName_m2531664577 (XmlSerializationWriter_t695994538 * __this, String_t* ___localName, String_t* ___ns, XmlQualifiedName_t176365656 * ___value, XmlQualifiedName_t176365656 * ___xsiType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteElementQualifiedName_m2531664577_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___localName;
String_t* L_1 = XmlCustomFormatter_FromXmlNCName_m3677657961(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
___localName = L_1;
String_t* L_2 = ___localName;
String_t* L_3 = ___ns;
XmlSerializationWriter_WriteStartElement_m3072386694(__this, L_2, L_3, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_4 = ___xsiType;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_5 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_4, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0031;
}
}
{
XmlQualifiedName_t176365656 * L_6 = ___xsiType;
NullCheck(L_6);
String_t* L_7 = XmlQualifiedName_get_Name_m607016698(L_6, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_8 = ___xsiType;
NullCheck(L_8);
String_t* L_9 = XmlQualifiedName_get_Namespace_m2987642414(L_8, /*hidden argument*/NULL);
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_7, L_9, /*hidden argument*/NULL);
}
IL_0031:
{
XmlWriter_t89522450 * L_10 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_11 = ___value;
String_t* L_12 = XmlSerializationWriter_FromXmlQualifiedName_m2747019346(__this, L_11, /*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_10, L_12);
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String)
extern "C" void XmlSerializationWriter_WriteElementString_m980360841 (XmlSerializationWriter_t695994538 * __this, String_t* ___localName, String_t* ___ns, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___localName;
String_t* L_1 = ___ns;
String_t* L_2 = ___value;
XmlSerializationWriter_WriteElementString_m3002380175(__this, L_0, L_1, L_2, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteElementString_m3002380175_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteElementString_m3002380175 (XmlSerializationWriter_t695994538 * __this, String_t* ___localName, String_t* ___ns, String_t* ___value, XmlQualifiedName_t176365656 * ___xsiType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteElementString_m3002380175_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___value;
if (L_0)
{
goto IL_0007;
}
}
{
return;
}
IL_0007:
{
XmlQualifiedName_t176365656 * L_1 = ___xsiType;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_2 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_1, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004f;
}
}
{
String_t* L_3 = ___localName;
String_t* L_4 = XmlCustomFormatter_FromXmlNCName_m3677657961(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
___localName = L_4;
String_t* L_5 = ___localName;
String_t* L_6 = ___ns;
XmlSerializationWriter_WriteStartElement_m3072386694(__this, L_5, L_6, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_7 = ___xsiType;
NullCheck(L_7);
String_t* L_8 = XmlQualifiedName_get_Name_m607016698(L_7, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_9 = ___xsiType;
NullCheck(L_9);
String_t* L_10 = XmlQualifiedName_get_Namespace_m2987642414(L_9, /*hidden argument*/NULL);
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_8, L_10, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_11 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_12 = ___value;
NullCheck(L_11);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_11, L_12);
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
goto IL_005d;
}
IL_004f:
{
XmlWriter_t89522450 * L_13 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_14 = ___localName;
String_t* L_15 = ___ns;
String_t* L_16 = ___value;
NullCheck(L_13);
XmlWriter_WriteElementString_m4068882329(L_13, L_14, L_15, L_16, /*hidden argument*/NULL);
}
IL_005d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement()
extern "C" void XmlSerializationWriter_WriteEndElement_m1134149919 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
{
XmlSerializationWriter_WriteEndElement_m2407664341(__this, NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement(System.Object)
extern "C" void XmlSerializationWriter_WriteEndElement_m2407664341 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___o, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___o;
if (!L_0)
{
goto IL_0012;
}
}
{
Hashtable_t3875263730 * L_1 = __this->get_serializedObjects_7();
Il2CppObject * L_2 = ___o;
NullCheck(L_1);
VirtActionInvoker1< Il2CppObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_1, L_2);
}
IL_0012:
{
XmlWriter_t89522450 * L_3 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_3);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_3);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces)
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern Il2CppCodeGenString* _stringLiteral557947472;
extern const uint32_t XmlSerializationWriter_WriteNamespaceDeclarations_m2277186923_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteNamespaceDeclarations_m2277186923 (XmlSerializationWriter_t695994538 * __this, XmlSerializerNamespaces_t2229116383 * ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteNamespaceDeclarations_m2277186923_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
XmlQualifiedName_t176365656 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlSerializerNamespaces_t2229116383 * L_0 = ___ns;
if (L_0)
{
goto IL_0007;
}
}
{
return;
}
IL_0007:
{
XmlSerializerNamespaces_t2229116383 * L_1 = ___ns;
NullCheck(L_1);
ListDictionary_t4226329727 * L_2 = XmlSerializerNamespaces_get_Namespaces_m2487868879(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
Il2CppObject * L_3 = VirtFuncInvoker0< Il2CppObject * >::Invoke(15 /* System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Values() */, L_2);
V_0 = L_3;
Il2CppObject * L_4 = V_0;
NullCheck(L_4);
Il2CppObject * L_5 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_4);
V_2 = L_5;
}
IL_001a:
try
{ // begin try (depth: 1)
{
goto IL_007d;
}
IL_001f:
{
Il2CppObject * L_6 = V_2;
NullCheck(L_6);
Il2CppObject * L_7 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_6);
V_1 = ((XmlQualifiedName_t176365656 *)CastclassClass(L_7, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var));
XmlQualifiedName_t176365656 * L_8 = V_1;
NullCheck(L_8);
String_t* L_9 = XmlQualifiedName_get_Namespace_m2987642414(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_11 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_007d;
}
}
IL_0040:
{
XmlWriter_t89522450 * L_12 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_13 = V_1;
NullCheck(L_13);
String_t* L_14 = XmlQualifiedName_get_Namespace_m2987642414(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_15 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_12, L_14);
XmlQualifiedName_t176365656 * L_16 = V_1;
NullCheck(L_16);
String_t* L_17 = XmlQualifiedName_get_Name_m607016698(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_18 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_007d;
}
}
IL_0061:
{
XmlQualifiedName_t176365656 * L_19 = V_1;
NullCheck(L_19);
String_t* L_20 = XmlQualifiedName_get_Name_m607016698(L_19, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_21 = V_1;
NullCheck(L_21);
String_t* L_22 = XmlQualifiedName_get_Namespace_m2987642414(L_21, /*hidden argument*/NULL);
XmlSerializationWriter_WriteAttribute_m2575401974(__this, _stringLiteral114177052, L_20, _stringLiteral557947472, L_22, /*hidden argument*/NULL);
}
IL_007d:
{
Il2CppObject * L_23 = V_2;
NullCheck(L_23);
bool L_24 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_23);
if (L_24)
{
goto IL_001f;
}
}
IL_0088:
{
IL2CPP_LEAVE(0x9F, FINALLY_008d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_008d;
}
FINALLY_008d:
{ // begin finally (depth: 1)
{
Il2CppObject * L_25 = V_2;
V_3 = ((Il2CppObject *)IsInst(L_25, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_26 = V_3;
if (L_26)
{
goto IL_0098;
}
}
IL_0097:
{
IL2CPP_END_FINALLY(141)
}
IL_0098:
{
Il2CppObject * L_27 = V_3;
NullCheck(L_27);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_27);
IL2CPP_END_FINALLY(141)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(141)
{
IL2CPP_JUMP_TBL(0x9F, IL_009f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_009f:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameEncoded(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteNullableQualifiedNameEncoded_m1477558468_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteNullableQualifiedNameEncoded_m1477558468 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, XmlQualifiedName_t176365656 * ___value, XmlQualifiedName_t176365656 * ___xsiType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteNullableQualifiedNameEncoded_m1477558468_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_1 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_0, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001c;
}
}
{
String_t* L_2 = ___name;
String_t* L_3 = ___ns;
XmlQualifiedName_t176365656 * L_4 = ___value;
XmlQualifiedName_t176365656 * L_5 = ___xsiType;
XmlSerializationWriter_WriteElementQualifiedName_m2531664577(__this, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
goto IL_0024;
}
IL_001c:
{
String_t* L_6 = ___name;
String_t* L_7 = ___ns;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_6, L_7, /*hidden argument*/NULL);
}
IL_0024:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameLiteral(System.String,System.String,System.Xml.XmlQualifiedName)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteNullableQualifiedNameLiteral_m1270083773_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteNullableQualifiedNameLiteral_m1270083773 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, XmlQualifiedName_t176365656 * ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteNullableQualifiedNameLiteral_m1270083773_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlQualifiedName_t176365656 * L_0 = ___value;
IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
bool L_1 = XmlQualifiedName_op_Inequality_m188426612(NULL /*static, unused*/, L_0, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
String_t* L_2 = ___name;
String_t* L_3 = ___ns;
XmlQualifiedName_t176365656 * L_4 = ___value;
XmlSerializationWriter_WriteElementQualifiedName_m1557459131(__this, L_2, L_3, L_4, /*hidden argument*/NULL);
goto IL_0022;
}
IL_001a:
{
String_t* L_5 = ___name;
String_t* L_6 = ___ns;
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_5, L_6, /*hidden argument*/NULL);
}
IL_0022:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringEncoded(System.String,System.String,System.String,System.Xml.XmlQualifiedName)
extern "C" void XmlSerializationWriter_WriteNullableStringEncoded_m3677042688 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, String_t* ___value, XmlQualifiedName_t176365656 * ___xsiType, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
if (!L_0)
{
goto IL_0016;
}
}
{
String_t* L_1 = ___name;
String_t* L_2 = ___ns;
String_t* L_3 = ___value;
XmlQualifiedName_t176365656 * L_4 = ___xsiType;
XmlSerializationWriter_WriteElementString_m3002380175(__this, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
goto IL_001e;
}
IL_0016:
{
String_t* L_5 = ___name;
String_t* L_6 = ___ns;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_5, L_6, /*hidden argument*/NULL);
}
IL_001e:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringLiteral(System.String,System.String,System.String)
extern "C" void XmlSerializationWriter_WriteNullableStringLiteral_m2142950457 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
if (!L_0)
{
goto IL_0015;
}
}
{
String_t* L_1 = ___name;
String_t* L_2 = ___ns;
String_t* L_3 = ___value;
XmlSerializationWriter_WriteElementString_m3002380175(__this, L_1, L_2, L_3, (XmlQualifiedName_t176365656 *)NULL, /*hidden argument*/NULL);
goto IL_001d;
}
IL_0015:
{
String_t* L_4 = ___name;
String_t* L_5 = ___ns;
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_4, L_5, /*hidden argument*/NULL);
}
IL_001d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagEncoded(System.String,System.String)
extern Il2CppCodeGenString* _stringLiteral109073;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral3569038;
extern const uint32_t XmlSerializationWriter_WriteNullTagEncoded_m1637334181_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteNullTagEncoded_m1637334181 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteNullTagEncoded_m1637334181_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlWriter_t89522450 * L_0 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_1 = ___name;
String_t* L_2 = ___ns;
NullCheck(L_0);
XmlWriter_WriteStartElement_m2273103734(L_0, L_1, L_2, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_3 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_3);
XmlWriter_WriteAttributeString_m3920494777(L_3, _stringLiteral109073, _stringLiteral1662954470, _stringLiteral3569038, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_4 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_4);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_4);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagLiteral(System.String,System.String)
extern Il2CppCodeGenString* _stringLiteral109073;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral3569038;
extern const uint32_t XmlSerializationWriter_WriteNullTagLiteral_m3593138340_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteNullTagLiteral_m3593138340 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteNullTagLiteral_m3593138340_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
XmlSerializationWriter_WriteStartElement_m3072386694(__this, L_0, L_1, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_2 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_2);
XmlWriter_WriteAttributeString_m3920494777(L_2, _stringLiteral109073, _stringLiteral1662954470, _stringLiteral3569038, /*hidden argument*/NULL);
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean)
extern TypeInfo* WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3355;
extern Il2CppCodeGenString* _stringLiteral3211051;
extern Il2CppCodeGenString* _stringLiteral35;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral3081707081;
extern const uint32_t XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012_MetadataUsageId;
extern "C" void XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012 (XmlSerializationWriter_t695994538 * __this, String_t* ___n, String_t* ___ns, Il2CppObject * ___o, Type_t * ___ambientType, bool ___suppressReference, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
WriteCallbackInfo_t2990892019 * V_0 = NULL;
TypeData_t3837952962 * V_1 = NULL;
{
Il2CppObject * L_0 = ___o;
if (L_0)
{
goto IL_0016;
}
}
{
bool L_1 = ___isNullable;
if (!L_1)
{
goto IL_0015;
}
}
{
String_t* L_2 = ___n;
String_t* L_3 = ___ns;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_2, L_3, /*hidden argument*/NULL);
}
IL_0015:
{
return;
}
IL_0016:
{
String_t* L_4 = ___n;
String_t* L_5 = ___ns;
XmlSerializationWriter_WriteStartElement_m1339084855(__this, L_4, L_5, (bool)1, /*hidden argument*/NULL);
XmlSerializationWriter_CheckReferenceQueue_m2250194797(__this, /*hidden argument*/NULL);
Hashtable_t3875263730 * L_6 = __this->get_callbacks_6();
if (!L_6)
{
goto IL_010c;
}
}
{
Hashtable_t3875263730 * L_7 = __this->get_callbacks_6();
Il2CppObject * L_8 = ___o;
NullCheck(L_8);
Type_t * L_9 = Object_GetType_m2022236990(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
bool L_10 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(31 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_9);
if (!L_10)
{
goto IL_010c;
}
}
{
Hashtable_t3875263730 * L_11 = __this->get_callbacks_6();
Il2CppObject * L_12 = ___o;
NullCheck(L_12);
Type_t * L_13 = Object_GetType_m2022236990(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
Il2CppObject * L_14 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_11, L_13);
V_0 = ((WriteCallbackInfo_t2990892019 *)CastclassClass(L_14, WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var));
Il2CppObject * L_15 = ___o;
NullCheck(L_15);
Type_t * L_16 = Object_GetType_m2022236990(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
bool L_17 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Type::get_IsEnum() */, L_16);
if (!L_17)
{
goto IL_007e;
}
}
{
WriteCallbackInfo_t2990892019 * L_18 = V_0;
NullCheck(L_18);
XmlSerializationWriteCallback_t4044254761 * L_19 = L_18->get_Callback_3();
Il2CppObject * L_20 = ___o;
NullCheck(L_19);
XmlSerializationWriteCallback_Invoke_m511629574(L_19, L_20, /*hidden argument*/NULL);
goto IL_0107;
}
IL_007e:
{
bool L_21 = ___suppressReference;
if (!L_21)
{
goto IL_00cd;
}
}
{
XmlWriter_t89522450 * L_22 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_23 = ___o;
String_t* L_24 = XmlSerializationWriter_GetId_m4158266140(__this, L_23, (bool)0, /*hidden argument*/NULL);
NullCheck(L_22);
XmlWriter_WriteAttributeString_m1129629501(L_22, _stringLiteral3355, L_24, /*hidden argument*/NULL);
Type_t * L_25 = ___ambientType;
Il2CppObject * L_26 = ___o;
NullCheck(L_26);
Type_t * L_27 = Object_GetType_m2022236990(L_26, /*hidden argument*/NULL);
if ((((Il2CppObject*)(Type_t *)L_25) == ((Il2CppObject*)(Type_t *)L_27)))
{
goto IL_00bc;
}
}
{
WriteCallbackInfo_t2990892019 * L_28 = V_0;
NullCheck(L_28);
String_t* L_29 = L_28->get_TypeName_1();
WriteCallbackInfo_t2990892019 * L_30 = V_0;
NullCheck(L_30);
String_t* L_31 = L_30->get_TypeNs_2();
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_29, L_31, /*hidden argument*/NULL);
}
IL_00bc:
{
WriteCallbackInfo_t2990892019 * L_32 = V_0;
NullCheck(L_32);
XmlSerializationWriteCallback_t4044254761 * L_33 = L_32->get_Callback_3();
Il2CppObject * L_34 = ___o;
NullCheck(L_33);
XmlSerializationWriteCallback_Invoke_m511629574(L_33, L_34, /*hidden argument*/NULL);
goto IL_0107;
}
IL_00cd:
{
Il2CppObject * L_35 = ___o;
bool L_36 = XmlSerializationWriter_AlreadyQueued_m4102899170(__this, L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_00e5;
}
}
{
Queue_t1621224067 * L_37 = __this->get_referencedElements_5();
Il2CppObject * L_38 = ___o;
NullCheck(L_37);
VirtActionInvoker1< Il2CppObject * >::Invoke(18 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_37, L_38);
}
IL_00e5:
{
XmlWriter_t89522450 * L_39 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_40 = ___o;
String_t* L_41 = XmlSerializationWriter_GetId_m4158266140(__this, L_40, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_42 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral35, L_41, /*hidden argument*/NULL);
NullCheck(L_39);
XmlWriter_WriteAttributeString_m1129629501(L_39, _stringLiteral3211051, L_42, /*hidden argument*/NULL);
}
IL_0107:
{
goto IL_01b2;
}
IL_010c:
{
Il2CppObject * L_43 = ___o;
NullCheck(L_43);
Type_t * L_44 = Object_GetType_m2022236990(L_43, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_45 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_44, /*hidden argument*/NULL);
V_1 = L_45;
TypeData_t3837952962 * L_46 = V_1;
NullCheck(L_46);
int32_t L_47 = TypeData_get_SchemaType_m1693934194(L_46, /*hidden argument*/NULL);
if ((!(((uint32_t)L_47) == ((uint32_t)1))))
{
goto IL_014c;
}
}
{
TypeData_t3837952962 * L_48 = V_1;
NullCheck(L_48);
String_t* L_49 = TypeData_get_XmlType_m3918246226(L_48, /*hidden argument*/NULL);
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_49, _stringLiteral1440052060, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_50 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
TypeData_t3837952962 * L_51 = V_1;
Il2CppObject * L_52 = ___o;
String_t* L_53 = XmlCustomFormatter_ToXmlString_m1862488943(NULL /*static, unused*/, L_51, L_52, /*hidden argument*/NULL);
NullCheck(L_50);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_50, L_53);
goto IL_01b2;
}
IL_014c:
{
TypeData_t3837952962 * L_54 = V_1;
bool L_55 = XmlSerializationWriter_IsPrimitiveArray_m841164995(__this, L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_0197;
}
}
{
Il2CppObject * L_56 = ___o;
bool L_57 = XmlSerializationWriter_AlreadyQueued_m4102899170(__this, L_56, /*hidden argument*/NULL);
if (L_57)
{
goto IL_0170;
}
}
{
Queue_t1621224067 * L_58 = __this->get_referencedElements_5();
Il2CppObject * L_59 = ___o;
NullCheck(L_58);
VirtActionInvoker1< Il2CppObject * >::Invoke(18 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_58, L_59);
}
IL_0170:
{
XmlWriter_t89522450 * L_60 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_61 = ___o;
String_t* L_62 = XmlSerializationWriter_GetId_m4158266140(__this, L_61, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_63 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral35, L_62, /*hidden argument*/NULL);
NullCheck(L_60);
XmlWriter_WriteAttributeString_m1129629501(L_60, _stringLiteral3211051, L_63, /*hidden argument*/NULL);
goto IL_01b2;
}
IL_0197:
{
Il2CppObject * L_64 = ___o;
NullCheck(L_64);
Type_t * L_65 = Object_GetType_m2022236990(L_64, /*hidden argument*/NULL);
NullCheck(L_65);
String_t* L_66 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_65);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_67 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral3081707081, L_66, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_68 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_68, L_67, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_68);
}
IL_01b2:
{
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencedElements()
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3355;
extern const uint32_t XmlSerializationWriter_WriteReferencedElements_m3063671118_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteReferencedElements_m3063671118 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteReferencedElements_m3063671118_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
TypeData_t3837952962 * V_1 = NULL;
WriteCallbackInfo_t2990892019 * V_2 = NULL;
{
Queue_t1621224067 * L_0 = __this->get_referencedElements_5();
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
Hashtable_t3875263730 * L_1 = __this->get_callbacks_6();
if (L_1)
{
goto IL_0018;
}
}
{
return;
}
IL_0018:
{
goto IL_00c6;
}
IL_001d:
{
Queue_t1621224067 * L_2 = __this->get_referencedElements_5();
NullCheck(L_2);
Il2CppObject * L_3 = VirtFuncInvoker0< Il2CppObject * >::Invoke(17 /* System.Object System.Collections.Queue::Dequeue() */, L_2);
V_0 = L_3;
Il2CppObject * L_4 = V_0;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2022236990(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_6 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
V_1 = L_6;
Hashtable_t3875263730 * L_7 = __this->get_callbacks_6();
Il2CppObject * L_8 = V_0;
NullCheck(L_8);
Type_t * L_9 = Object_GetType_m2022236990(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
Il2CppObject * L_10 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_9);
V_2 = ((WriteCallbackInfo_t2990892019 *)CastclassClass(L_10, WriteCallbackInfo_t2990892019_il2cpp_TypeInfo_var));
WriteCallbackInfo_t2990892019 * L_11 = V_2;
if (!L_11)
{
goto IL_00b2;
}
}
{
WriteCallbackInfo_t2990892019 * L_12 = V_2;
NullCheck(L_12);
String_t* L_13 = L_12->get_TypeName_1();
WriteCallbackInfo_t2990892019 * L_14 = V_2;
NullCheck(L_14);
String_t* L_15 = L_14->get_TypeNs_2();
XmlSerializationWriter_WriteStartElement_m1339084855(__this, L_13, L_15, (bool)1, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_16 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_17 = V_0;
String_t* L_18 = XmlSerializationWriter_GetId_m4158266140(__this, L_17, (bool)0, /*hidden argument*/NULL);
NullCheck(L_16);
XmlWriter_WriteAttributeString_m1129629501(L_16, _stringLiteral3355, L_18, /*hidden argument*/NULL);
TypeData_t3837952962 * L_19 = V_1;
NullCheck(L_19);
int32_t L_20 = TypeData_get_SchemaType_m1693934194(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) == ((int32_t)3)))
{
goto IL_009b;
}
}
{
WriteCallbackInfo_t2990892019 * L_21 = V_2;
NullCheck(L_21);
String_t* L_22 = L_21->get_TypeName_1();
WriteCallbackInfo_t2990892019 * L_23 = V_2;
NullCheck(L_23);
String_t* L_24 = L_23->get_TypeNs_2();
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_22, L_24, /*hidden argument*/NULL);
}
IL_009b:
{
WriteCallbackInfo_t2990892019 * L_25 = V_2;
NullCheck(L_25);
XmlSerializationWriteCallback_t4044254761 * L_26 = L_25->get_Callback_3();
Il2CppObject * L_27 = V_0;
NullCheck(L_26);
XmlSerializationWriteCallback_Invoke_m511629574(L_26, L_27, /*hidden argument*/NULL);
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
goto IL_00c6;
}
IL_00b2:
{
TypeData_t3837952962 * L_28 = V_1;
bool L_29 = XmlSerializationWriter_IsPrimitiveArray_m841164995(__this, L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00c6;
}
}
{
Il2CppObject * L_30 = V_0;
TypeData_t3837952962 * L_31 = V_1;
XmlSerializationWriter_WriteArray_m2610168779(__this, L_30, L_31, /*hidden argument*/NULL);
}
IL_00c6:
{
Queue_t1621224067 * L_32 = __this->get_referencedElements_5();
NullCheck(L_32);
int32_t L_33 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Queue::get_Count() */, L_32);
if ((((int32_t)L_33) > ((int32_t)0)))
{
goto IL_001d;
}
}
{
return;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationWriter::IsPrimitiveArray(System.Xml.Serialization.TypeData)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_IsPrimitiveArray_m841164995_MetadataUsageId;
extern "C" bool XmlSerializationWriter_IsPrimitiveArray_m841164995 (XmlSerializationWriter_t695994538 * __this, TypeData_t3837952962 * ___td, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_IsPrimitiveArray_m841164995_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeData_t3837952962 * L_0 = ___td;
NullCheck(L_0);
int32_t L_1 = TypeData_get_SchemaType_m1693934194(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_0041;
}
}
{
TypeData_t3837952962 * L_2 = ___td;
NullCheck(L_2);
TypeData_t3837952962 * L_3 = TypeData_get_ListItemTypeData_m3943692862(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
int32_t L_4 = TypeData_get_SchemaType_m1693934194(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_0032;
}
}
{
TypeData_t3837952962 * L_5 = ___td;
NullCheck(L_5);
Type_t * L_6 = TypeData_get_ListItemType_m2794988341(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_6) == ((Il2CppObject*)(Type_t *)L_7))))
{
goto IL_0034;
}
}
IL_0032:
{
return (bool)1;
}
IL_0034:
{
TypeData_t3837952962 * L_8 = ___td;
NullCheck(L_8);
TypeData_t3837952962 * L_9 = TypeData_get_ListItemTypeData_m3943692862(L_8, /*hidden argument*/NULL);
bool L_10 = XmlSerializationWriter_IsPrimitiveArray_m841164995(__this, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0041:
{
return (bool)0;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteArray(System.Object,System.Xml.Serialization.TypeData)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2914;
extern Il2CppCodeGenString* _stringLiteral63537721;
extern Il2CppCodeGenString* _stringLiteral3403005341;
extern Il2CppCodeGenString* _stringLiteral3355;
extern Il2CppCodeGenString* _stringLiteral2870059315;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral91;
extern Il2CppCodeGenString* _stringLiteral93;
extern Il2CppCodeGenString* _stringLiteral2289459;
extern const uint32_t XmlSerializationWriter_WriteArray_m2610168779_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteArray_m2610168779 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___o, TypeData_t3837952962 * ___td, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteArray_m2610168779_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
TypeData_t3837952962 * V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
Il2CppArray * V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
TypeData_t3837952962 * L_0 = ___td;
V_0 = L_0;
V_2 = (-1);
}
IL_0004:
{
TypeData_t3837952962 * L_1 = V_0;
NullCheck(L_1);
TypeData_t3837952962 * L_2 = TypeData_get_ListItemTypeData_m3943692862(L_1, /*hidden argument*/NULL);
V_0 = L_2;
TypeData_t3837952962 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = TypeData_get_XmlType_m3918246226(L_3, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5 = V_2;
V_2 = ((int32_t)((int32_t)L_5+(int32_t)1));
TypeData_t3837952962 * L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = TypeData_get_SchemaType_m1693934194(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)3)))
{
goto IL_0004;
}
}
{
goto IL_0033;
}
IL_0027:
{
String_t* L_8 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_9 = String_Concat_m138640077(NULL /*static, unused*/, L_8, _stringLiteral2914, /*hidden argument*/NULL);
V_1 = L_9;
}
IL_0033:
{
int32_t L_10 = V_2;
int32_t L_11 = L_10;
V_2 = ((int32_t)((int32_t)L_11-(int32_t)1));
if ((((int32_t)L_11) > ((int32_t)0)))
{
goto IL_0027;
}
}
{
XmlSerializationWriter_WriteStartElement_m1339084855(__this, _stringLiteral63537721, _stringLiteral3403005341, (bool)1, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_12 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_13 = ___o;
String_t* L_14 = XmlSerializationWriter_GetId_m4158266140(__this, L_13, (bool)0, /*hidden argument*/NULL);
NullCheck(L_12);
XmlWriter_WriteAttributeString_m1129629501(L_12, _stringLiteral3355, L_14, /*hidden argument*/NULL);
TypeData_t3837952962 * L_15 = ___td;
NullCheck(L_15);
int32_t L_16 = TypeData_get_SchemaType_m1693934194(L_15, /*hidden argument*/NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_00f0;
}
}
{
Il2CppObject * L_17 = ___o;
V_3 = ((Il2CppArray *)CastclassClass(L_17, Il2CppArray_il2cpp_TypeInfo_var));
Il2CppArray * L_18 = V_3;
NullCheck(L_18);
int32_t L_19 = Array_get_Length_m1203127607(L_18, /*hidden argument*/NULL);
V_4 = L_19;
XmlWriter_t89522450 * L_20 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_21 = V_1;
String_t* L_22 = XmlSerializationWriter_GetQualifiedName_m2319455181(__this, L_21, _stringLiteral1440052060, /*hidden argument*/NULL);
String_t* L_23 = Int32_ToString_m1286526384((&V_4), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_24 = String_Concat_m2933632197(NULL /*static, unused*/, L_22, _stringLiteral91, L_23, _stringLiteral93, /*hidden argument*/NULL);
NullCheck(L_20);
XmlWriter_WriteAttributeString_m3920494777(L_20, _stringLiteral2870059315, _stringLiteral3403005341, L_24, /*hidden argument*/NULL);
V_5 = 0;
goto IL_00e7;
}
IL_00c1:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_25 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
Il2CppArray * L_26 = V_3;
int32_t L_27 = V_5;
NullCheck(L_26);
Il2CppObject * L_28 = Array_GetValue_m244209261(L_26, L_27, /*hidden argument*/NULL);
TypeData_t3837952962 * L_29 = ___td;
NullCheck(L_29);
Type_t * L_30 = TypeData_get_ListItemType_m2794988341(L_29, /*hidden argument*/NULL);
XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012(__this, _stringLiteral2289459, L_25, L_28, L_30, (bool)0, (bool)1, /*hidden argument*/NULL);
int32_t L_31 = V_5;
V_5 = ((int32_t)((int32_t)L_31+(int32_t)1));
}
IL_00e7:
{
int32_t L_32 = V_5;
int32_t L_33 = V_4;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_00c1;
}
}
IL_00f0:
{
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencingElement(System.String,System.String,System.Object,System.Boolean)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3211051;
extern Il2CppCodeGenString* _stringLiteral35;
extern const uint32_t XmlSerializationWriter_WriteReferencingElement_m385174595_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteReferencingElement_m385174595 (XmlSerializationWriter_t695994538 * __this, String_t* ___n, String_t* ___ns, Il2CppObject * ___o, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteReferencingElement_m385174595_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = ___o;
if (L_0)
{
goto IL_0016;
}
}
{
bool L_1 = ___isNullable;
if (!L_1)
{
goto IL_0015;
}
}
{
String_t* L_2 = ___n;
String_t* L_3 = ___ns;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_2, L_3, /*hidden argument*/NULL);
}
IL_0015:
{
return;
}
IL_0016:
{
XmlSerializationWriter_CheckReferenceQueue_m2250194797(__this, /*hidden argument*/NULL);
Il2CppObject * L_4 = ___o;
bool L_5 = XmlSerializationWriter_AlreadyQueued_m4102899170(__this, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0034;
}
}
{
Queue_t1621224067 * L_6 = __this->get_referencedElements_5();
Il2CppObject * L_7 = ___o;
NullCheck(L_6);
VirtActionInvoker1< Il2CppObject * >::Invoke(18 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_6, L_7);
}
IL_0034:
{
XmlWriter_t89522450 * L_8 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_9 = ___n;
String_t* L_10 = ___ns;
NullCheck(L_8);
XmlWriter_WriteStartElement_m2273103734(L_8, L_9, L_10, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_11 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
Il2CppObject * L_12 = ___o;
String_t* L_13 = XmlSerializationWriter_GetId_m4158266140(__this, L_12, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_14 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral35, L_13, /*hidden argument*/NULL);
NullCheck(L_11);
XmlWriter_WriteAttributeString_m1129629501(L_11, _stringLiteral3211051, L_14, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_15 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_15);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_15);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::CheckReferenceQueue()
extern TypeInfo* Queue_t1621224067_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_CheckReferenceQueue_m2250194797_MetadataUsageId;
extern "C" void XmlSerializationWriter_CheckReferenceQueue_m2250194797 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_CheckReferenceQueue_m2250194797_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Queue_t1621224067 * L_0 = __this->get_referencedElements_5();
if (L_0)
{
goto IL_001c;
}
}
{
Queue_t1621224067 * L_1 = (Queue_t1621224067 *)il2cpp_codegen_object_new(Queue_t1621224067_il2cpp_TypeInfo_var);
Queue__ctor_m1954446073(L_1, /*hidden argument*/NULL);
__this->set_referencedElements_5(L_1);
VirtActionInvoker0::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializationWriter::InitCallbacks() */, __this);
}
IL_001c:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean)
extern "C" void XmlSerializationWriter_WriteSerializable_m2313952689 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___serializable, String_t* ___name, String_t* ___ns, bool ___isNullable, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___serializable;
String_t* L_1 = ___name;
String_t* L_2 = ___ns;
bool L_3 = ___isNullable;
XmlSerializationWriter_WriteSerializable_m1741749676(__this, L_0, L_1, L_2, L_3, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean)
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriter_WriteSerializable_m1741749676_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteSerializable_m1741749676 (XmlSerializationWriter_t695994538 * __this, Il2CppObject * ___serializable, String_t* ___name, String_t* ___ns, bool ___isNullable, bool ___wrapped, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteSerializable_m1741749676_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Il2CppObject * L_0 = ___serializable;
if (L_0)
{
goto IL_001d;
}
}
{
bool L_1 = ___isNullable;
if (!L_1)
{
goto IL_001c;
}
}
{
bool L_2 = ___wrapped;
if (!L_2)
{
goto IL_001c;
}
}
{
String_t* L_3 = ___name;
String_t* L_4 = ___ns;
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_3, L_4, /*hidden argument*/NULL);
}
IL_001c:
{
return;
}
IL_001d:
{
bool L_5 = ___wrapped;
if (!L_5)
{
goto IL_0031;
}
}
{
XmlWriter_t89522450 * L_6 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_7 = ___name;
String_t* L_8 = ___ns;
NullCheck(L_6);
XmlWriter_WriteStartElement_m2273103734(L_6, L_7, L_8, /*hidden argument*/NULL);
}
IL_0031:
{
Il2CppObject * L_9 = ___serializable;
XmlWriter_t89522450 * L_10 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_9);
InterfaceActionInvoker1< XmlWriter_t89522450 * >::Invoke(2 /* System.Void System.Xml.Serialization.IXmlSerializable::WriteXml(System.Xml.XmlWriter) */, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var, L_9, L_10);
bool L_11 = ___wrapped;
if (!L_11)
{
goto IL_004f;
}
}
{
XmlWriter_t89522450 * L_12 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_12);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_12);
}
IL_004f:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartDocument()
extern "C" void XmlSerializationWriter_WriteStartDocument_m1908352385 (XmlSerializationWriter_t695994538 * __this, const MethodInfo* method)
{
{
XmlWriter_t89522450 * L_0 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, L_0);
if (L_1)
{
goto IL_001b;
}
}
{
XmlWriter_t89522450 * L_2 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_2);
VirtActionInvoker0::Invoke(25 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_2);
}
IL_001b:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String)
extern "C" void XmlSerializationWriter_WriteStartElement_m3072386694 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
XmlSerializationWriter_WriteStartElement_m1371537961(__this, L_0, L_1, NULL, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Boolean)
extern "C" void XmlSerializationWriter_WriteStartElement_m1339084855 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, bool ___writePrefixed, const MethodInfo* method)
{
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
bool L_2 = ___writePrefixed;
XmlSerializationWriter_WriteStartElement_m1371537961(__this, L_0, L_1, NULL, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object)
extern "C" void XmlSerializationWriter_WriteStartElement_m119951060 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, Il2CppObject * ___o, const MethodInfo* method)
{
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
Il2CppObject * L_2 = ___o;
XmlSerializationWriter_WriteStartElement_m1371537961(__this, L_0, L_1, L_2, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean)
extern "C" void XmlSerializationWriter_WriteStartElement_m1371537961 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, Il2CppObject * ___o, bool ___writePrefixed, const MethodInfo* method)
{
{
String_t* L_0 = ___name;
String_t* L_1 = ___ns;
Il2CppObject * L_2 = ___o;
bool L_3 = ___writePrefixed;
ArrayList_t2121638921 * L_4 = __this->get_namespaces_3();
XmlSerializationWriter_WriteStartElement_m831729710(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean,System.Collections.ICollection)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral4163330413;
extern Il2CppCodeGenString* _stringLiteral113;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern Il2CppCodeGenString* _stringLiteral557947472;
extern const uint32_t XmlSerializationWriter_WriteStartElement_m831729710_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteStartElement_m831729710 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, Il2CppObject * ___o, bool ___writePrefixed, Il2CppObject * ___namespaces, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteStartElement_m831729710_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
XmlQualifiedName_t176365656 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
XmlQualifiedName_t176365656 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
String_t* V_5 = NULL;
Il2CppObject * V_6 = NULL;
int32_t V_7 = 0;
Il2CppObject * V_8 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Il2CppObject * L_0 = ___o;
if (!L_0)
{
goto IL_003f;
}
}
{
Hashtable_t3875263730 * L_1 = __this->get_serializedObjects_7();
Il2CppObject * L_2 = ___o;
NullCheck(L_1);
bool L_3 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(28 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2);
if (!L_3)
{
goto IL_0032;
}
}
{
Il2CppObject * L_4 = ___o;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2022236990(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Concat_m138640077(NULL /*static, unused*/, _stringLiteral4163330413, L_6, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_8 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8);
}
IL_0032:
{
Hashtable_t3875263730 * L_9 = __this->get_serializedObjects_7();
Il2CppObject * L_10 = ___o;
Il2CppObject * L_11 = ___o;
NullCheck(L_9);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_9, L_10, L_11);
}
IL_003f:
{
V_0 = (String_t*)NULL;
bool L_12 = __this->get_topLevelElement_2();
if (!L_12)
{
goto IL_00bb;
}
}
{
String_t* L_13 = ___ns;
if (!L_13)
{
goto IL_00bb;
}
}
{
String_t* L_14 = ___ns;
NullCheck(L_14);
int32_t L_15 = String_get_Length_m2979997331(L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00bb;
}
}
{
Il2CppObject * L_16 = ___namespaces;
NullCheck(L_16);
Il2CppObject * L_17 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_16);
V_2 = L_17;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0096;
}
IL_006a:
{
Il2CppObject * L_18 = V_2;
NullCheck(L_18);
Il2CppObject * L_19 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_18);
V_1 = ((XmlQualifiedName_t176365656 *)CastclassClass(L_19, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var));
XmlQualifiedName_t176365656 * L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = XmlQualifiedName_get_Namespace_m2987642414(L_20, /*hidden argument*/NULL);
String_t* L_22 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_23 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0096;
}
}
IL_0087:
{
XmlQualifiedName_t176365656 * L_24 = V_1;
NullCheck(L_24);
String_t* L_25 = XmlQualifiedName_get_Name_m607016698(L_24, /*hidden argument*/NULL);
V_0 = L_25;
___writePrefixed = (bool)1;
goto IL_00a1;
}
IL_0096:
{
Il2CppObject * L_26 = V_2;
NullCheck(L_26);
bool L_27 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_006a;
}
}
IL_00a1:
{
IL2CPP_LEAVE(0xBB, FINALLY_00a6);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00a6;
}
FINALLY_00a6:
{ // begin finally (depth: 1)
{
Il2CppObject * L_28 = V_2;
V_6 = ((Il2CppObject *)IsInst(L_28, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_29 = V_6;
if (L_29)
{
goto IL_00b3;
}
}
IL_00b2:
{
IL2CPP_END_FINALLY(166)
}
IL_00b3:
{
Il2CppObject * L_30 = V_6;
NullCheck(L_30);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_30);
IL2CPP_END_FINALLY(166)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(166)
{
IL2CPP_JUMP_TBL(0xBB, IL_00bb)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00bb:
{
bool L_31 = ___writePrefixed;
if (!L_31)
{
goto IL_0134;
}
}
{
String_t* L_32 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_33 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_34 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_32, L_33, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_0134;
}
}
{
String_t* L_35 = ___name;
String_t* L_36 = XmlCustomFormatter_FromXmlName_m2360147262(NULL /*static, unused*/, L_35, /*hidden argument*/NULL);
___name = L_36;
String_t* L_37 = V_0;
if (L_37)
{
goto IL_00ed;
}
}
{
XmlWriter_t89522450 * L_38 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_39 = ___ns;
NullCheck(L_38);
String_t* L_40 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_38, L_39);
V_0 = L_40;
}
IL_00ed:
{
String_t* L_41 = V_0;
if (!L_41)
{
goto IL_00fe;
}
}
{
String_t* L_42 = V_0;
NullCheck(L_42);
int32_t L_43 = String_get_Length_m2979997331(L_42, /*hidden argument*/NULL);
if (L_43)
{
goto IL_0121;
}
}
IL_00fe:
{
int32_t L_44 = __this->get_qnameCount_1();
int32_t L_45 = ((int32_t)((int32_t)L_44+(int32_t)1));
V_7 = L_45;
__this->set_qnameCount_1(L_45);
int32_t L_46 = V_7;
int32_t L_47 = L_46;
Il2CppObject * L_48 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_47);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_49 = String_Concat_m389863537(NULL /*static, unused*/, _stringLiteral113, L_48, /*hidden argument*/NULL);
V_0 = L_49;
}
IL_0121:
{
XmlWriter_t89522450 * L_50 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_51 = V_0;
String_t* L_52 = ___name;
String_t* L_53 = ___ns;
NullCheck(L_50);
VirtActionInvoker3< String_t*, String_t*, String_t* >::Invoke(26 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_50, L_51, L_52, L_53);
goto IL_0141;
}
IL_0134:
{
XmlWriter_t89522450 * L_54 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_55 = ___name;
String_t* L_56 = ___ns;
NullCheck(L_54);
XmlWriter_WriteStartElement_m2273103734(L_54, L_55, L_56, /*hidden argument*/NULL);
}
IL_0141:
{
bool L_57 = __this->get_topLevelElement_2();
if (!L_57)
{
goto IL_01e3;
}
}
{
Il2CppObject * L_58 = ___namespaces;
if (!L_58)
{
goto IL_01dc;
}
}
{
Il2CppObject * L_59 = ___namespaces;
NullCheck(L_59);
Il2CppObject * L_60 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_59);
V_4 = L_60;
}
IL_015c:
try
{ // begin try (depth: 1)
{
goto IL_01b5;
}
IL_0161:
{
Il2CppObject * L_61 = V_4;
NullCheck(L_61);
Il2CppObject * L_62 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_61);
V_3 = ((XmlQualifiedName_t176365656 *)CastclassClass(L_62, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var));
XmlWriter_t89522450 * L_63 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_64 = V_3;
NullCheck(L_64);
String_t* L_65 = XmlQualifiedName_get_Namespace_m2987642414(L_64, /*hidden argument*/NULL);
NullCheck(L_63);
String_t* L_66 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_63, L_65);
V_5 = L_66;
String_t* L_67 = V_5;
if (!L_67)
{
goto IL_0199;
}
}
IL_0188:
{
String_t* L_68 = V_5;
NullCheck(L_68);
int32_t L_69 = String_get_Length_m2979997331(L_68, /*hidden argument*/NULL);
if (!L_69)
{
goto IL_0199;
}
}
IL_0194:
{
goto IL_01b5;
}
IL_0199:
{
XmlQualifiedName_t176365656 * L_70 = V_3;
NullCheck(L_70);
String_t* L_71 = XmlQualifiedName_get_Name_m607016698(L_70, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_72 = V_3;
NullCheck(L_72);
String_t* L_73 = XmlQualifiedName_get_Namespace_m2987642414(L_72, /*hidden argument*/NULL);
XmlSerializationWriter_WriteAttribute_m2575401974(__this, _stringLiteral114177052, L_71, _stringLiteral557947472, L_73, /*hidden argument*/NULL);
}
IL_01b5:
{
Il2CppObject * L_74 = V_4;
NullCheck(L_74);
bool L_75 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_74);
if (L_75)
{
goto IL_0161;
}
}
IL_01c1:
{
IL2CPP_LEAVE(0x1DC, FINALLY_01c6);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_01c6;
}
FINALLY_01c6:
{ // begin finally (depth: 1)
{
Il2CppObject * L_76 = V_4;
V_8 = ((Il2CppObject *)IsInst(L_76, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_77 = V_8;
if (L_77)
{
goto IL_01d4;
}
}
IL_01d3:
{
IL2CPP_END_FINALLY(454)
}
IL_01d4:
{
Il2CppObject * L_78 = V_8;
NullCheck(L_78);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_78);
IL2CPP_END_FINALLY(454)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(454)
{
IL2CPP_JUMP_TBL(0x1DC, IL_01dc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_01dc:
{
__this->set_topLevelElement_2((bool)0);
}
IL_01e3:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteTypedPrimitive(System.String,System.String,System.Object,System.Boolean)
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral172449585;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral3407237249;
extern Il2CppCodeGenString* _stringLiteral3720589770;
extern const uint32_t XmlSerializationWriter_WriteTypedPrimitive_m966021260_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteTypedPrimitive_m966021260 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, Il2CppObject * ___o, bool ___xsiType, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteTypedPrimitive_m966021260_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
TypeData_t3837952962 * V_1 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B16_0 = NULL;
XmlSerializationWriter_t695994538 * G_B16_1 = NULL;
String_t* G_B15_0 = NULL;
XmlSerializationWriter_t695994538 * G_B15_1 = NULL;
String_t* G_B17_0 = NULL;
String_t* G_B17_1 = NULL;
XmlSerializationWriter_t695994538 * G_B17_2 = NULL;
{
Il2CppObject * L_0 = ___o;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2022236990(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeData_t3837952962 * L_2 = TypeTranslator_GetTypeData_m2692872845(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
V_1 = L_2;
TypeData_t3837952962 * L_3 = V_1;
NullCheck(L_3);
int32_t L_4 = TypeData_get_SchemaType_m1693934194(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_002e;
}
}
{
TypeData_t3837952962 * L_5 = V_1;
NullCheck(L_5);
String_t* L_6 = TypeData_get_FullTypeName_m2969171957(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Format_m2471250780(NULL /*static, unused*/, _stringLiteral172449585, L_6, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_8 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8);
}
IL_002e:
{
String_t* L_9 = ___name;
if (L_9)
{
goto IL_005d;
}
}
{
TypeData_t3837952962 * L_10 = V_1;
NullCheck(L_10);
bool L_11 = TypeData_get_IsXsdType_m3775213727(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0049;
}
}
{
G_B6_0 = _stringLiteral1440052060;
goto IL_004e;
}
IL_0049:
{
G_B6_0 = _stringLiteral3407237249;
}
IL_004e:
{
___ns = G_B6_0;
TypeData_t3837952962 * L_12 = V_1;
NullCheck(L_12);
String_t* L_13 = TypeData_get_XmlType_m3918246226(L_12, /*hidden argument*/NULL);
___name = L_13;
goto IL_0065;
}
IL_005d:
{
String_t* L_14 = ___name;
String_t* L_15 = XmlCustomFormatter_FromXmlName_m2360147262(NULL /*static, unused*/, L_14, /*hidden argument*/NULL);
___name = L_15;
}
IL_0065:
{
XmlWriter_t89522450 * L_16 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_17 = ___name;
String_t* L_18 = ___ns;
NullCheck(L_16);
XmlWriter_WriteStartElement_m2273103734(L_16, L_17, L_18, /*hidden argument*/NULL);
Il2CppObject * L_19 = ___o;
if (!((XmlQualifiedName_t176365656 *)IsInstClass(L_19, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)))
{
goto IL_008f;
}
}
{
Il2CppObject * L_20 = ___o;
String_t* L_21 = XmlSerializationWriter_FromXmlQualifiedName_m2747019346(__this, ((XmlQualifiedName_t176365656 *)CastclassClass(L_20, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_21;
goto IL_0097;
}
IL_008f:
{
TypeData_t3837952962 * L_22 = V_1;
Il2CppObject * L_23 = ___o;
String_t* L_24 = XmlCustomFormatter_ToXmlString_m1862488943(NULL /*static, unused*/, L_22, L_23, /*hidden argument*/NULL);
V_0 = L_24;
}
IL_0097:
{
bool L_25 = ___xsiType;
if (!L_25)
{
goto IL_00eb;
}
}
{
TypeData_t3837952962 * L_26 = V_1;
NullCheck(L_26);
int32_t L_27 = TypeData_get_SchemaType_m1693934194(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_27) == ((int32_t)1)))
{
goto IL_00c5;
}
}
{
Il2CppObject * L_28 = ___o;
NullCheck(L_28);
Type_t * L_29 = Object_GetType_m2022236990(L_28, /*hidden argument*/NULL);
NullCheck(L_29);
String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Type::get_FullName() */, L_29);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_31 = String_Format_m2471250780(NULL /*static, unused*/, _stringLiteral3720589770, L_30, /*hidden argument*/NULL);
InvalidOperationException_t2420574324 * L_32 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_32, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32);
}
IL_00c5:
{
TypeData_t3837952962 * L_33 = V_1;
NullCheck(L_33);
String_t* L_34 = TypeData_get_XmlType_m3918246226(L_33, /*hidden argument*/NULL);
TypeData_t3837952962 * L_35 = V_1;
NullCheck(L_35);
bool L_36 = TypeData_get_IsXsdType_m3775213727(L_35, /*hidden argument*/NULL);
G_B15_0 = L_34;
G_B15_1 = __this;
if (!L_36)
{
G_B16_0 = L_34;
G_B16_1 = __this;
goto IL_00e1;
}
}
{
G_B17_0 = _stringLiteral1440052060;
G_B17_1 = G_B15_0;
G_B17_2 = G_B15_1;
goto IL_00e6;
}
IL_00e1:
{
G_B17_0 = _stringLiteral3407237249;
G_B17_1 = G_B16_0;
G_B17_2 = G_B16_1;
}
IL_00e6:
{
NullCheck(G_B17_2);
XmlSerializationWriter_WriteXsiType_m683694514(G_B17_2, G_B17_1, G_B17_0, /*hidden argument*/NULL);
}
IL_00eb:
{
String_t* L_37 = V_0;
XmlSerializationWriter_WriteValue_m3559834573(__this, L_37, /*hidden argument*/NULL);
XmlWriter_t89522450 * L_38 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_38);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_38);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteValue(System.String)
extern "C" void XmlSerializationWriter_WriteValue_m3559834573 (XmlSerializationWriter_t695994538 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
if (!L_0)
{
goto IL_0012;
}
}
{
XmlWriter_t89522450 * L_1 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_2 = ___value;
NullCheck(L_1);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_1, L_2);
}
IL_0012:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlAttribute(System.Xml.XmlNode,System.Object)
extern TypeInfo* XmlAttribute_t2022155821_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* TypeTranslator_t236292786_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral482796624;
extern Il2CppCodeGenString* _stringLiteral1118558406;
extern Il2CppCodeGenString* _stringLiteral2870059315;
extern const uint32_t XmlSerializationWriter_WriteXmlAttribute_m1896116654_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteXmlAttribute_m1896116654 (XmlSerializationWriter_t695994538 * __this, XmlNode_t3592213601 * ___node, Il2CppObject * ___container, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteXmlAttribute_m1896116654_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlAttribute_t2022155821 * V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
{
XmlNode_t3592213601 * L_0 = ___node;
V_0 = ((XmlAttribute_t2022155821 *)IsInstClass(L_0, XmlAttribute_t2022155821_il2cpp_TypeInfo_var));
XmlAttribute_t2022155821 * L_1 = V_0;
if (L_1)
{
goto IL_0018;
}
}
{
InvalidOperationException_t2420574324 * L_2 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_2, _stringLiteral482796624, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2);
}
IL_0018:
{
XmlAttribute_t2022155821 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_3);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_5 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_4, _stringLiteral1118558406, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_007e;
}
}
{
XmlAttribute_t2022155821 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlAttribute::get_LocalName() */, L_6);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_8 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_7, _stringLiteral2870059315, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_007e;
}
}
{
XmlAttribute_t2022155821 * L_9 = V_0;
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(24 /* System.String System.Xml.XmlAttribute::get_Value() */, L_9);
IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t236292786_il2cpp_TypeInfo_var);
TypeTranslator_ParseArrayType_m2894191449(NULL /*static, unused*/, L_10, (&V_2), (&V_1), (&V_3), /*hidden argument*/NULL);
String_t* L_11 = V_2;
String_t* L_12 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_13 = String_Concat_m138640077(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL);
String_t* L_14 = V_1;
String_t* L_15 = XmlSerializationWriter_GetQualifiedName_m2319455181(__this, L_13, L_14, /*hidden argument*/NULL);
V_4 = L_15;
XmlAttribute_t2022155821 * L_16 = V_0;
NullCheck(L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.Xml.XmlAttribute::get_Prefix() */, L_16);
XmlAttribute_t2022155821 * L_18 = V_0;
NullCheck(L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlAttribute::get_LocalName() */, L_18);
XmlAttribute_t2022155821 * L_20 = V_0;
NullCheck(L_20);
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_20);
String_t* L_22 = V_4;
XmlSerializationWriter_WriteAttribute_m2575401974(__this, L_17, L_19, L_21, L_22, /*hidden argument*/NULL);
return;
}
IL_007e:
{
XmlAttribute_t2022155821 * L_23 = V_0;
NullCheck(L_23);
String_t* L_24 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.Xml.XmlAttribute::get_Prefix() */, L_23);
XmlAttribute_t2022155821 * L_25 = V_0;
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlAttribute::get_LocalName() */, L_25);
XmlAttribute_t2022155821 * L_27 = V_0;
NullCheck(L_27);
String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_27);
XmlAttribute_t2022155821 * L_29 = V_0;
NullCheck(L_29);
String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(24 /* System.String System.Xml.XmlAttribute::get_Value() */, L_29);
XmlSerializationWriter_WriteAttribute_m2575401974(__this, L_24, L_26, L_28, L_30, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXsiType(System.String,System.String)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3575610;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern const uint32_t XmlSerializationWriter_WriteXsiType_m683694514_MetadataUsageId;
extern "C" void XmlSerializationWriter_WriteXsiType_m683694514 (XmlSerializationWriter_t695994538 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriter_WriteXsiType_m683694514_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = ___ns;
if (!L_0)
{
goto IL_0033;
}
}
{
String_t* L_1 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_3 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0033;
}
}
{
String_t* L_4 = ___name;
String_t* L_5 = ___ns;
String_t* L_6 = XmlSerializationWriter_GetQualifiedName_m2319455181(__this, L_4, L_5, /*hidden argument*/NULL);
XmlSerializationWriter_WriteAttribute_m353765690(__this, _stringLiteral3575610, _stringLiteral1662954470, L_6, /*hidden argument*/NULL);
goto IL_0044;
}
IL_0033:
{
String_t* L_7 = ___name;
XmlSerializationWriter_WriteAttribute_m353765690(__this, _stringLiteral3575610, _stringLiteral1662954470, L_7, /*hidden argument*/NULL);
}
IL_0044:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::.ctor()
extern "C" void WriteCallbackInfo__ctor_m2385224414 (WriteCallbackInfo_t2990892019 * __this, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::.ctor(System.Xml.Serialization.XmlMapping)
extern "C" void XmlSerializationWriterInterpreter__ctor_m2777107676 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlMapping_t2344951413 * ___typeMap, const MethodInfo* method)
{
{
XmlSerializationWriter__ctor_m3754471073(__this, /*hidden argument*/NULL);
XmlMapping_t2344951413 * L_0 = ___typeMap;
__this->set__typeMap_8(L_0);
XmlMapping_t2344951413 * L_1 = ___typeMap;
NullCheck(L_1);
int32_t L_2 = XmlMapping_get_Format_m561560336(L_1, /*hidden argument*/NULL);
__this->set__format_9(L_2);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::InitCallbacks()
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern TypeInfo* CallbackInfo_t2288427699_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationWriteCallback_t4044254761_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const MethodInfo* CallbackInfo_WriteEnum_m2879433213_MethodInfo_var;
extern const MethodInfo* CallbackInfo_WriteObject_m1039829311_MethodInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_InitCallbacks_m1072713159_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_InitCallbacks_m1072713159 (XmlSerializationWriterInterpreter_t1671227756 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_InitCallbacks_m1072713159_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ArrayList_t2121638921 * V_0 = NULL;
XmlTypeMapping_t988104027 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
CallbackInfo_t2288427699 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlMapping_t2344951413 * L_0 = __this->get__typeMap_8();
NullCheck(L_0);
ArrayList_t2121638921 * L_1 = XmlMapping_get_RelatedMaps_m3510136543(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ArrayList_t2121638921 * L_2 = V_0;
if (!L_2)
{
goto IL_00bf;
}
}
{
ArrayList_t2121638921 * L_3 = V_0;
NullCheck(L_3);
Il2CppObject * L_4 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3);
V_2 = L_4;
}
IL_0019:
try
{ // begin try (depth: 1)
{
goto IL_009a;
}
IL_001e:
{
Il2CppObject * L_5 = V_2;
NullCheck(L_5);
Il2CppObject * L_6 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_5);
V_1 = ((XmlTypeMapping_t988104027 *)CastclassClass(L_6, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_7 = V_1;
CallbackInfo_t2288427699 * L_8 = (CallbackInfo_t2288427699 *)il2cpp_codegen_object_new(CallbackInfo_t2288427699_il2cpp_TypeInfo_var);
CallbackInfo__ctor_m3751330266(L_8, __this, L_7, /*hidden argument*/NULL);
V_3 = L_8;
XmlTypeMapping_t988104027 * L_9 = V_1;
NullCheck(L_9);
TypeData_t3837952962 * L_10 = XmlTypeMapping_get_TypeData_m3898113510(L_9, /*hidden argument*/NULL);
NullCheck(L_10);
int32_t L_11 = TypeData_get_SchemaType_m1693934194(L_10, /*hidden argument*/NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)2))))
{
goto IL_0071;
}
}
IL_0043:
{
XmlTypeMapping_t988104027 * L_12 = V_1;
NullCheck(L_12);
TypeData_t3837952962 * L_13 = XmlTypeMapping_get_TypeData_m3898113510(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
Type_t * L_14 = TypeData_get_Type_m2191724548(L_13, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = XmlTypeMapping_get_XmlType_m1769290969(L_15, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_17 = V_1;
NullCheck(L_17);
String_t* L_18 = XmlMapping_get_Namespace_m4151275177(L_17, /*hidden argument*/NULL);
CallbackInfo_t2288427699 * L_19 = V_3;
IntPtr_t L_20;
L_20.set_m_value_0((void*)CallbackInfo_WriteEnum_m2879433213_MethodInfo_var);
XmlSerializationWriteCallback_t4044254761 * L_21 = (XmlSerializationWriteCallback_t4044254761 *)il2cpp_codegen_object_new(XmlSerializationWriteCallback_t4044254761_il2cpp_TypeInfo_var);
XmlSerializationWriteCallback__ctor_m2179432948(L_21, L_19, L_20, /*hidden argument*/NULL);
XmlSerializationWriter_AddWriteCallback_m1309576612(__this, L_14, L_16, L_18, L_21, /*hidden argument*/NULL);
goto IL_009a;
}
IL_0071:
{
XmlTypeMapping_t988104027 * L_22 = V_1;
NullCheck(L_22);
TypeData_t3837952962 * L_23 = XmlTypeMapping_get_TypeData_m3898113510(L_22, /*hidden argument*/NULL);
NullCheck(L_23);
Type_t * L_24 = TypeData_get_Type_m2191724548(L_23, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_25 = V_1;
NullCheck(L_25);
String_t* L_26 = XmlTypeMapping_get_XmlType_m1769290969(L_25, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_27 = V_1;
NullCheck(L_27);
String_t* L_28 = XmlMapping_get_Namespace_m4151275177(L_27, /*hidden argument*/NULL);
CallbackInfo_t2288427699 * L_29 = V_3;
IntPtr_t L_30;
L_30.set_m_value_0((void*)CallbackInfo_WriteObject_m1039829311_MethodInfo_var);
XmlSerializationWriteCallback_t4044254761 * L_31 = (XmlSerializationWriteCallback_t4044254761 *)il2cpp_codegen_object_new(XmlSerializationWriteCallback_t4044254761_il2cpp_TypeInfo_var);
XmlSerializationWriteCallback__ctor_m2179432948(L_31, L_29, L_30, /*hidden argument*/NULL);
XmlSerializationWriter_AddWriteCallback_m1309576612(__this, L_24, L_26, L_28, L_31, /*hidden argument*/NULL);
}
IL_009a:
{
Il2CppObject * L_32 = V_2;
NullCheck(L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_001e;
}
}
IL_00a5:
{
IL2CPP_LEAVE(0xBF, FINALLY_00aa);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00aa;
}
FINALLY_00aa:
{ // begin finally (depth: 1)
{
Il2CppObject * L_34 = V_2;
V_4 = ((Il2CppObject *)IsInst(L_34, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_35 = V_4;
if (L_35)
{
goto IL_00b7;
}
}
IL_00b6:
{
IL2CPP_END_FINALLY(170)
}
IL_00b7:
{
Il2CppObject * L_36 = V_4;
NullCheck(L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_36);
IL2CPP_END_FINALLY(170)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(170)
{
IL2CPP_JUMP_TBL(0xBF, IL_00bf)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00bf:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteRoot(System.Object)
extern TypeInfo* XmlTypeMapping_t988104027_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* XmlMembersMapping_t2913331946_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteRoot_m2582998282_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteRoot_m2582998282 (XmlSerializationWriterInterpreter_t1671227756 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteRoot_m2582998282_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapping_t988104027 * V_0 = NULL;
{
XmlSerializationWriter_WriteStartDocument_m1908352385(__this, /*hidden argument*/NULL);
XmlMapping_t2344951413 * L_0 = __this->get__typeMap_8();
if (!((XmlTypeMapping_t988104027 *)IsInstClass(L_0, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var)))
{
goto IL_0097;
}
}
{
XmlMapping_t2344951413 * L_1 = __this->get__typeMap_8();
V_0 = ((XmlTypeMapping_t988104027 *)CastclassClass(L_1, XmlTypeMapping_t988104027_il2cpp_TypeInfo_var));
XmlTypeMapping_t988104027 * L_2 = V_0;
NullCheck(L_2);
TypeData_t3837952962 * L_3 = XmlTypeMapping_get_TypeData_m3898113510(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
int32_t L_4 = TypeData_get_SchemaType_m1693934194(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)4)))
{
goto IL_0044;
}
}
{
XmlTypeMapping_t988104027 * L_5 = V_0;
NullCheck(L_5);
TypeData_t3837952962 * L_6 = XmlTypeMapping_get_TypeData_m3898113510(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = TypeData_get_SchemaType_m1693934194(L_6, /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)3))))
{
goto IL_004a;
}
}
IL_0044:
{
XmlSerializationWriter_TopLevelElement_m3061898188(__this, /*hidden argument*/NULL);
}
IL_004a:
{
int32_t L_8 = __this->get__format_9();
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_0072;
}
}
{
XmlTypeMapping_t988104027 * L_9 = V_0;
Il2CppObject * L_10 = ___ob;
XmlTypeMapping_t988104027 * L_11 = V_0;
NullCheck(L_11);
String_t* L_12 = XmlMapping_get_ElementName_m2753779381(L_11, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_13 = V_0;
NullCheck(L_13);
String_t* L_14 = XmlMapping_get_Namespace_m4151275177(L_13, /*hidden argument*/NULL);
VirtActionInvoker7< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, __this, L_9, L_10, L_12, L_14, (bool)1, (bool)0, (bool)1);
goto IL_0092;
}
IL_0072:
{
XmlTypeMapping_t988104027 * L_15 = V_0;
NullCheck(L_15);
String_t* L_16 = XmlMapping_get_ElementName_m2753779381(L_15, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_17 = V_0;
NullCheck(L_17);
String_t* L_18 = XmlMapping_get_Namespace_m4151275177(L_17, /*hidden argument*/NULL);
Il2CppObject * L_19 = ___ob;
XmlTypeMapping_t988104027 * L_20 = V_0;
NullCheck(L_20);
TypeData_t3837952962 * L_21 = XmlTypeMapping_get_TypeData_m3898113510(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
Type_t * L_22 = TypeData_get_Type_m2191724548(L_21, /*hidden argument*/NULL);
XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012(__this, L_16, L_18, L_19, L_22, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_0092:
{
goto IL_00c6;
}
IL_0097:
{
Il2CppObject * L_23 = ___ob;
if (!((ObjectU5BU5D_t11523773*)IsInst(L_23, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)))
{
goto IL_00be;
}
}
{
XmlMapping_t2344951413 * L_24 = __this->get__typeMap_8();
Il2CppObject * L_25 = ___ob;
VirtActionInvoker2< XmlMembersMapping_t2913331946 *, ObjectU5BU5D_t11523773* >::Invoke(6 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMessage(System.Xml.Serialization.XmlMembersMapping,System.Object[]) */, __this, ((XmlMembersMapping_t2913331946 *)CastclassClass(L_24, XmlMembersMapping_t2913331946_il2cpp_TypeInfo_var)), ((ObjectU5BU5D_t11523773*)Castclass(L_25, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)));
goto IL_00c6;
}
IL_00be:
{
Il2CppObject * L_26 = ___ob;
Exception_t1967233988 * L_27 = XmlSerializationWriter_CreateUnknownTypeException_m2000708971(__this, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27);
}
IL_00c6:
{
XmlSerializationWriter_WriteReferencedElements_m3063671118(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)
extern const Il2CppType* XmlNode_t3592213601_0_0_0_var;
extern TypeInfo* XmlNode_t3592213601_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteObject_m246499773_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteObject_m246499773 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, String_t* ___element, String_t* ___namesp, bool ___isNullable, bool ___needType, bool ___writeWrappingElem, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteObject_m246499773_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapping_t988104027 * V_0 = NULL;
XmlNode_t3592213601 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Il2CppObject * V_3 = NULL;
int32_t V_4 = 0;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Il2CppObject * L_0 = ___ob;
if (L_0)
{
goto IL_0031;
}
}
{
bool L_1 = ___isNullable;
if (!L_1)
{
goto IL_0030;
}
}
{
int32_t L_2 = __this->get__format_9();
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_0027;
}
}
{
String_t* L_3 = ___element;
String_t* L_4 = ___namesp;
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_3, L_4, /*hidden argument*/NULL);
goto IL_0030;
}
IL_0027:
{
String_t* L_5 = ___element;
String_t* L_6 = ___namesp;
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_5, L_6, /*hidden argument*/NULL);
}
IL_0030:
{
return;
}
IL_0031:
{
Il2CppObject * L_7 = ___ob;
if (!((XmlNode_t3592213601 *)IsInstClass(L_7, XmlNode_t3592213601_il2cpp_TypeInfo_var)))
{
goto IL_007e;
}
}
{
int32_t L_8 = __this->get__format_9();
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_0065;
}
}
{
Il2CppObject * L_9 = ___ob;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_10 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
String_t* L_11 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlSerializationWriter_WriteElementLiteral_m3283896518(__this, ((XmlNode_t3592213601 *)CastclassClass(L_9, XmlNode_t3592213601_il2cpp_TypeInfo_var)), L_10, L_11, (bool)1, (bool)0, /*hidden argument*/NULL);
goto IL_007d;
}
IL_0065:
{
Il2CppObject * L_12 = ___ob;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_13 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
String_t* L_14 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlSerializationWriter_WriteElementEncoded_m3487212261(__this, ((XmlNode_t3592213601 *)CastclassClass(L_12, XmlNode_t3592213601_il2cpp_TypeInfo_var)), L_13, L_14, (bool)1, (bool)0, /*hidden argument*/NULL);
}
IL_007d:
{
return;
}
IL_007e:
{
XmlTypeMapping_t988104027 * L_15 = ___typeMap;
NullCheck(L_15);
TypeData_t3837952962 * L_16 = XmlTypeMapping_get_TypeData_m3898113510(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
int32_t L_17 = TypeData_get_SchemaType_m1693934194(L_16, /*hidden argument*/NULL);
if ((!(((uint32_t)L_17) == ((uint32_t)5))))
{
goto IL_00a1;
}
}
{
Il2CppObject * L_18 = ___ob;
String_t* L_19 = ___element;
String_t* L_20 = ___namesp;
bool L_21 = ___isNullable;
XmlSerializationWriter_WriteSerializable_m2313952689(__this, ((Il2CppObject *)Castclass(L_18, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var)), L_19, L_20, L_21, /*hidden argument*/NULL);
return;
}
IL_00a1:
{
XmlTypeMapping_t988104027 * L_22 = ___typeMap;
Il2CppObject * L_23 = ___ob;
NullCheck(L_23);
Type_t * L_24 = Object_GetType_m2022236990(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
XmlTypeMapping_t988104027 * L_25 = XmlTypeMapping_GetRealTypeMap_m1065224057(L_22, L_24, /*hidden argument*/NULL);
V_0 = L_25;
XmlTypeMapping_t988104027 * L_26 = V_0;
if (L_26)
{
goto IL_0158;
}
}
{
Il2CppObject * L_27 = ___ob;
NullCheck(L_27);
Type_t * L_28 = Object_GetType_m2022236990(L_27, /*hidden argument*/NULL);
NullCheck(L_28);
bool L_29 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_28);
if (!L_29)
{
goto IL_014c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlNode_t3592213601_0_0_0_var), /*hidden argument*/NULL);
Il2CppObject * L_31 = ___ob;
NullCheck(L_31);
Type_t * L_32 = Object_GetType_m2022236990(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
Type_t * L_33 = VirtFuncInvoker0< Type_t * >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_32);
NullCheck(L_30);
bool L_34 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_30, L_33);
if (!L_34)
{
goto IL_014c;
}
}
{
XmlWriter_t89522450 * L_35 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
String_t* L_36 = ___element;
String_t* L_37 = ___namesp;
NullCheck(L_35);
XmlWriter_WriteStartElement_m2273103734(L_35, L_36, L_37, /*hidden argument*/NULL);
Il2CppObject * L_38 = ___ob;
NullCheck(((Il2CppObject *)Castclass(L_38, IEnumerable_t287189635_il2cpp_TypeInfo_var)));
Il2CppObject * L_39 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, ((Il2CppObject *)Castclass(L_38, IEnumerable_t287189635_il2cpp_TypeInfo_var)));
V_2 = L_39;
}
IL_00fd:
try
{ // begin try (depth: 1)
{
goto IL_011a;
}
IL_0102:
{
Il2CppObject * L_40 = V_2;
NullCheck(L_40);
Il2CppObject * L_41 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_40);
V_1 = ((XmlNode_t3592213601 *)CastclassClass(L_41, XmlNode_t3592213601_il2cpp_TypeInfo_var));
XmlNode_t3592213601 * L_42 = V_1;
XmlWriter_t89522450 * L_43 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_42);
VirtActionInvoker1< XmlWriter_t89522450 * >::Invoke(37 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_42, L_43);
}
IL_011a:
{
Il2CppObject * L_44 = V_2;
NullCheck(L_44);
bool L_45 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_44);
if (L_45)
{
goto IL_0102;
}
}
IL_0125:
{
IL2CPP_LEAVE(0x13C, FINALLY_012a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_012a;
}
FINALLY_012a:
{ // begin finally (depth: 1)
{
Il2CppObject * L_46 = V_2;
V_3 = ((Il2CppObject *)IsInst(L_46, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_47 = V_3;
if (L_47)
{
goto IL_0135;
}
}
IL_0134:
{
IL2CPP_END_FINALLY(298)
}
IL_0135:
{
Il2CppObject * L_48 = V_3;
NullCheck(L_48);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_48);
IL2CPP_END_FINALLY(298)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(298)
{
IL2CPP_JUMP_TBL(0x13C, IL_013c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_013c:
{
XmlWriter_t89522450 * L_49 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_49);
VirtActionInvoker0::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_49);
goto IL_0157;
}
IL_014c:
{
String_t* L_50 = ___element;
String_t* L_51 = ___namesp;
Il2CppObject * L_52 = ___ob;
XmlSerializationWriter_WriteTypedPrimitive_m966021260(__this, L_50, L_51, L_52, (bool)1, /*hidden argument*/NULL);
}
IL_0157:
{
return;
}
IL_0158:
{
bool L_53 = ___writeWrappingElem;
if (!L_53)
{
goto IL_017e;
}
}
{
XmlTypeMapping_t988104027 * L_54 = V_0;
XmlTypeMapping_t988104027 * L_55 = ___typeMap;
if ((!(((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_54) == ((Il2CppObject*)(XmlTypeMapping_t988104027 *)L_55))))
{
goto IL_0171;
}
}
{
int32_t L_56 = __this->get__format_9();
if (L_56)
{
goto IL_0174;
}
}
IL_0171:
{
___needType = (bool)1;
}
IL_0174:
{
String_t* L_57 = ___element;
String_t* L_58 = ___namesp;
Il2CppObject * L_59 = ___ob;
XmlSerializationWriter_WriteStartElement_m119951060(__this, L_57, L_58, L_59, /*hidden argument*/NULL);
}
IL_017e:
{
bool L_60 = ___needType;
if (!L_60)
{
goto IL_0197;
}
}
{
XmlTypeMapping_t988104027 * L_61 = V_0;
NullCheck(L_61);
String_t* L_62 = XmlTypeMapping_get_XmlType_m1769290969(L_61, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_63 = V_0;
NullCheck(L_63);
String_t* L_64 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_63, /*hidden argument*/NULL);
XmlSerializationWriter_WriteXsiType_m683694514(__this, L_62, L_64, /*hidden argument*/NULL);
}
IL_0197:
{
XmlTypeMapping_t988104027 * L_65 = V_0;
NullCheck(L_65);
TypeData_t3837952962 * L_66 = XmlTypeMapping_get_TypeData_m3898113510(L_65, /*hidden argument*/NULL);
NullCheck(L_66);
int32_t L_67 = TypeData_get_SchemaType_m1693934194(L_66, /*hidden argument*/NULL);
V_4 = L_67;
int32_t L_68 = V_4;
if (((int32_t)((int32_t)L_68-(int32_t)1)) == 0)
{
goto IL_01e2;
}
if (((int32_t)((int32_t)L_68-(int32_t)1)) == 1)
{
goto IL_01f2;
}
if (((int32_t)((int32_t)L_68-(int32_t)1)) == 2)
{
goto IL_01d2;
}
if (((int32_t)((int32_t)L_68-(int32_t)1)) == 3)
{
goto IL_01c2;
}
}
{
goto IL_0202;
}
IL_01c2:
{
XmlTypeMapping_t988104027 * L_69 = V_0;
Il2CppObject * L_70 = ___ob;
String_t* L_71 = ___element;
String_t* L_72 = ___namesp;
VirtActionInvoker4< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t* >::Invoke(7 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_69, L_70, L_71, L_72);
goto IL_0202;
}
IL_01d2:
{
XmlTypeMapping_t988104027 * L_73 = V_0;
Il2CppObject * L_74 = ___ob;
String_t* L_75 = ___element;
String_t* L_76 = ___namesp;
VirtActionInvoker4< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t* >::Invoke(10 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_73, L_74, L_75, L_76);
goto IL_0202;
}
IL_01e2:
{
XmlTypeMapping_t988104027 * L_77 = V_0;
Il2CppObject * L_78 = ___ob;
String_t* L_79 = ___element;
String_t* L_80 = ___namesp;
VirtActionInvoker4< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_77, L_78, L_79, L_80);
goto IL_0202;
}
IL_01f2:
{
XmlTypeMapping_t988104027 * L_81 = V_0;
Il2CppObject * L_82 = ___ob;
String_t* L_83 = ___element;
String_t* L_84 = ___namesp;
VirtActionInvoker4< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_81, L_82, L_83, L_84);
goto IL_0202;
}
IL_0202:
{
bool L_85 = ___writeWrappingElem;
if (!L_85)
{
goto IL_0210;
}
}
{
Il2CppObject * L_86 = ___ob;
XmlSerializationWriter_WriteEndElement_m2407664341(__this, L_86, /*hidden argument*/NULL);
}
IL_0210:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMessage(System.Xml.Serialization.XmlMembersMapping,System.Object[])
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral114177052;
extern Il2CppCodeGenString* _stringLiteral118985;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral118990;
extern const uint32_t XmlSerializationWriterInterpreter_WriteMessage_m3375648597_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteMessage_m3375648597 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlMembersMapping_t2913331946 * ___membersMap, ObjectU5BU5D_t11523773* ___parameters, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteMessage_m3375648597_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlMembersMapping_t2913331946 * L_0 = ___membersMap;
NullCheck(L_0);
bool L_1 = XmlMembersMapping_get_HasWrapperElement_m915764701(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_008a;
}
}
{
XmlSerializationWriter_TopLevelElement_m3061898188(__this, /*hidden argument*/NULL);
XmlMembersMapping_t2913331946 * L_2 = ___membersMap;
NullCheck(L_2);
String_t* L_3 = XmlMapping_get_ElementName_m2753779381(L_2, /*hidden argument*/NULL);
XmlMembersMapping_t2913331946 * L_4 = ___membersMap;
NullCheck(L_4);
String_t* L_5 = XmlMapping_get_Namespace_m4151275177(L_4, /*hidden argument*/NULL);
int32_t L_6 = __this->get__format_9();
XmlSerializationWriter_WriteStartElement_m1339084855(__this, L_3, L_5, (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
XmlWriter_t89522450 * L_7 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_7, _stringLiteral1440052060);
if (L_8)
{
goto IL_005b;
}
}
{
XmlSerializationWriter_WriteAttribute_m2575401974(__this, _stringLiteral114177052, _stringLiteral118985, _stringLiteral1440052060, _stringLiteral1440052060, /*hidden argument*/NULL);
}
IL_005b:
{
XmlWriter_t89522450 * L_9 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_9);
String_t* L_10 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(12 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_9, _stringLiteral1662954470);
if (L_10)
{
goto IL_008a;
}
}
{
XmlSerializationWriter_WriteAttribute_m2575401974(__this, _stringLiteral114177052, _stringLiteral118990, _stringLiteral1662954470, _stringLiteral1662954470, /*hidden argument*/NULL);
}
IL_008a:
{
XmlMembersMapping_t2913331946 * L_11 = ___membersMap;
NullCheck(L_11);
ObjectMap_t669501211 * L_12 = XmlMapping_get_ObjectMap_m3032707184(L_11, /*hidden argument*/NULL);
ObjectU5BU5D_t11523773* L_13 = ___parameters;
XmlSerializationWriterInterpreter_WriteMembers_m195660520(__this, ((ClassMap_t912207490 *)CastclassClass(L_12, ClassMap_t912207490_il2cpp_TypeInfo_var)), (Il2CppObject *)(Il2CppObject *)L_13, (bool)1, /*hidden argument*/NULL);
XmlMembersMapping_t2913331946 * L_14 = ___membersMap;
NullCheck(L_14);
bool L_15 = XmlMembersMapping_get_HasWrapperElement_m915764701(L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00ae;
}
}
{
XmlSerializationWriter_WriteEndElement_m1134149919(__this, /*hidden argument*/NULL);
}
IL_00ae:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String)
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteObjectElement_m2323175056_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteObjectElement_m2323175056 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, String_t* ___element, String_t* ___namesp, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteObjectElement_m2323175056_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ClassMap_t912207490 * V_0 = NULL;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
ObjectMap_t669501211 * L_1 = XmlMapping_get_ObjectMap_m3032707184(L_0, /*hidden argument*/NULL);
V_0 = ((ClassMap_t912207490 *)CastclassClass(L_1, ClassMap_t912207490_il2cpp_TypeInfo_var));
ClassMap_t912207490 * L_2 = V_0;
NullCheck(L_2);
XmlTypeMapMemberNamespaces_t1473492027 * L_3 = ClassMap_get_NamespaceDeclarations_m3505324052(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002e;
}
}
{
ClassMap_t912207490 * L_4 = V_0;
NullCheck(L_4);
XmlTypeMapMemberNamespaces_t1473492027 * L_5 = ClassMap_get_NamespaceDeclarations_m3505324052(L_4, /*hidden argument*/NULL);
Il2CppObject * L_6 = ___ob;
NullCheck(L_5);
Il2CppObject * L_7 = XmlTypeMapMember_GetValue_m1259309106(L_5, L_6, /*hidden argument*/NULL);
XmlSerializationWriter_WriteNamespaceDeclarations_m2277186923(__this, ((XmlSerializerNamespaces_t2229116383 *)CastclassClass(L_7, XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_002e:
{
XmlTypeMapping_t988104027 * L_8 = ___typeMap;
Il2CppObject * L_9 = ___ob;
VirtActionInvoker2< XmlTypeMapping_t988104027 *, Il2CppObject * >::Invoke(8 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementAttributes(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_8, L_9);
XmlTypeMapping_t988104027 * L_10 = ___typeMap;
Il2CppObject * L_11 = ___ob;
VirtActionInvoker2< XmlTypeMapping_t988104027 *, Il2CppObject * >::Invoke(9 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementElements(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_10, L_11);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementAttributes(System.Xml.Serialization.XmlTypeMapping,System.Object)
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteObjectElementAttributes_m3076054849_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteObjectElementAttributes_m3076054849 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteObjectElementAttributes_m3076054849_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ClassMap_t912207490 * V_0 = NULL;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
ObjectMap_t669501211 * L_1 = XmlMapping_get_ObjectMap_m3032707184(L_0, /*hidden argument*/NULL);
V_0 = ((ClassMap_t912207490 *)CastclassClass(L_1, ClassMap_t912207490_il2cpp_TypeInfo_var));
ClassMap_t912207490 * L_2 = V_0;
Il2CppObject * L_3 = ___ob;
XmlSerializationWriterInterpreter_WriteAttributeMembers_m486567386(__this, L_2, L_3, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementElements(System.Xml.Serialization.XmlTypeMapping,System.Object)
extern TypeInfo* ClassMap_t912207490_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteObjectElementElements_m2232415777_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteObjectElementElements_m2232415777 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteObjectElementElements_m2232415777_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
ClassMap_t912207490 * V_0 = NULL;
{
XmlTypeMapping_t988104027 * L_0 = ___typeMap;
NullCheck(L_0);
ObjectMap_t669501211 * L_1 = XmlMapping_get_ObjectMap_m3032707184(L_0, /*hidden argument*/NULL);
V_0 = ((ClassMap_t912207490 *)CastclassClass(L_1, ClassMap_t912207490_il2cpp_TypeInfo_var));
ClassMap_t912207490 * L_2 = V_0;
Il2CppObject * L_3 = ___ob;
XmlSerializationWriterInterpreter_WriteElementMembers_m2438908730(__this, L_2, L_3, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern "C" void XmlSerializationWriterInterpreter_WriteMembers_m195660520 (XmlSerializationWriterInterpreter_t1671227756 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
{
ClassMap_t912207490 * L_0 = ___map;
Il2CppObject * L_1 = ___ob;
bool L_2 = ___isValueList;
XmlSerializationWriterInterpreter_WriteAttributeMembers_m486567386(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
ClassMap_t912207490 * L_3 = ___map;
Il2CppObject * L_4 = ___ob;
bool L_5 = ___isValueList;
XmlSerializationWriterInterpreter_WriteElementMembers_m2438908730(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern TypeInfo* ICollection_t3761522009_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlAttribute_t2022155821_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral557947472;
extern const uint32_t XmlSerializationWriterInterpreter_WriteAttributeMembers_m486567386_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteAttributeMembers_m486567386 (XmlSerializationWriterInterpreter_t1671227756 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteAttributeMembers_m486567386_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapMember_t757519331 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
XmlAttribute_t2022155821 * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Il2CppObject * V_4 = NULL;
XmlTypeMapMemberAttribute_t2837866357 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
Il2CppObject * V_7 = NULL;
Il2CppObject * V_8 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
ClassMap_t912207490 * L_0 = ___map;
NullCheck(L_0);
XmlTypeMapMemberAnyAttribute_t576758419 * L_1 = ClassMap_get_DefaultAnyAttributeMember_m2749385715(L_0, /*hidden argument*/NULL);
V_0 = L_1;
XmlTypeMapMember_t757519331 * L_2 = V_0;
if (!L_2)
{
goto IL_008a;
}
}
{
XmlTypeMapMember_t757519331 * L_3 = V_0;
Il2CppObject * L_4 = ___ob;
bool L_5 = ___isValueList;
bool L_6 = XmlSerializationWriterInterpreter_MemberHasValue_m1854916872(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_008a;
}
}
{
XmlTypeMapMember_t757519331 * L_7 = V_0;
Il2CppObject * L_8 = ___ob;
bool L_9 = ___isValueList;
Il2CppObject * L_10 = XmlSerializationWriterInterpreter_GetMemberValue_m2777931525(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
V_1 = ((Il2CppObject *)Castclass(L_10, ICollection_t3761522009_il2cpp_TypeInfo_var));
Il2CppObject * L_11 = V_1;
if (!L_11)
{
goto IL_008a;
}
}
{
Il2CppObject * L_12 = V_1;
NullCheck(L_12);
Il2CppObject * L_13 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_12);
V_3 = L_13;
}
IL_0037:
try
{ // begin try (depth: 1)
{
goto IL_0065;
}
IL_003c:
{
Il2CppObject * L_14 = V_3;
NullCheck(L_14);
Il2CppObject * L_15 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_14);
V_2 = ((XmlAttribute_t2022155821 *)CastclassClass(L_15, XmlAttribute_t2022155821_il2cpp_TypeInfo_var));
XmlAttribute_t2022155821 * L_16 = V_2;
NullCheck(L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_16);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_18 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_17, _stringLiteral557947472, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0065;
}
}
IL_005d:
{
XmlAttribute_t2022155821 * L_19 = V_2;
Il2CppObject * L_20 = ___ob;
XmlSerializationWriter_WriteXmlAttribute_m1896116654(__this, L_19, L_20, /*hidden argument*/NULL);
}
IL_0065:
{
Il2CppObject * L_21 = V_3;
NullCheck(L_21);
bool L_22 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_21);
if (L_22)
{
goto IL_003c;
}
}
IL_0070:
{
IL2CPP_LEAVE(0x8A, FINALLY_0075);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0075;
}
FINALLY_0075:
{ // begin finally (depth: 1)
{
Il2CppObject * L_23 = V_3;
V_7 = ((Il2CppObject *)IsInst(L_23, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_24 = V_7;
if (L_24)
{
goto IL_0082;
}
}
IL_0081:
{
IL2CPP_END_FINALLY(117)
}
IL_0082:
{
Il2CppObject * L_25 = V_7;
NullCheck(L_25);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_25);
IL2CPP_END_FINALLY(117)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(117)
{
IL2CPP_JUMP_TBL(0x8A, IL_008a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_008a:
{
ClassMap_t912207490 * L_26 = ___map;
NullCheck(L_26);
Il2CppObject * L_27 = ClassMap_get_AttributeMembers_m3649534527(L_26, /*hidden argument*/NULL);
V_4 = L_27;
Il2CppObject * L_28 = V_4;
if (!L_28)
{
goto IL_011d;
}
}
{
Il2CppObject * L_29 = V_4;
NullCheck(L_29);
Il2CppObject * L_30 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_29);
V_6 = L_30;
}
IL_00a2:
try
{ // begin try (depth: 1)
{
goto IL_00f6;
}
IL_00a7:
{
Il2CppObject * L_31 = V_6;
NullCheck(L_31);
Il2CppObject * L_32 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_31);
V_5 = ((XmlTypeMapMemberAttribute_t2837866357 *)CastclassClass(L_32, XmlTypeMapMemberAttribute_t2837866357_il2cpp_TypeInfo_var));
XmlTypeMapMemberAttribute_t2837866357 * L_33 = V_5;
Il2CppObject * L_34 = ___ob;
bool L_35 = ___isValueList;
bool L_36 = XmlSerializationWriterInterpreter_MemberHasValue_m1854916872(__this, L_33, L_34, L_35, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_00f6;
}
}
IL_00c4:
{
XmlTypeMapMemberAttribute_t2837866357 * L_37 = V_5;
NullCheck(L_37);
String_t* L_38 = XmlTypeMapMemberAttribute_get_AttributeName_m2749329371(L_37, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_39 = V_5;
NullCheck(L_39);
String_t* L_40 = XmlTypeMapMemberAttribute_get_Namespace_m2347779695(L_39, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_41 = V_5;
NullCheck(L_41);
XmlTypeMapping_t988104027 * L_42 = XmlTypeMapMemberAttribute_get_MappedType_m3750014842(L_41, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_43 = V_5;
NullCheck(L_43);
TypeData_t3837952962 * L_44 = XmlTypeMapMember_get_TypeData_m3428473262(L_43, /*hidden argument*/NULL);
XmlTypeMapMemberAttribute_t2837866357 * L_45 = V_5;
Il2CppObject * L_46 = ___ob;
bool L_47 = ___isValueList;
Il2CppObject * L_48 = XmlSerializationWriterInterpreter_GetMemberValue_m2777931525(__this, L_45, L_46, L_47, /*hidden argument*/NULL);
String_t* L_49 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_42, L_44, L_48, /*hidden argument*/NULL);
XmlSerializationWriter_WriteAttribute_m353765690(__this, L_38, L_40, L_49, /*hidden argument*/NULL);
}
IL_00f6:
{
Il2CppObject * L_50 = V_6;
NullCheck(L_50);
bool L_51 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_50);
if (L_51)
{
goto IL_00a7;
}
}
IL_0102:
{
IL2CPP_LEAVE(0x11D, FINALLY_0107);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0107;
}
FINALLY_0107:
{ // begin finally (depth: 1)
{
Il2CppObject * L_52 = V_6;
V_8 = ((Il2CppObject *)IsInst(L_52, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_53 = V_8;
if (L_53)
{
goto IL_0115;
}
}
IL_0114:
{
IL2CPP_END_FINALLY(263)
}
IL_0115:
{
Il2CppObject * L_54 = V_8;
NullCheck(L_54);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_54);
IL2CPP_END_FINALLY(263)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(263)
{
IL2CPP_JUMP_TBL(0x11D, IL_011d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_011d:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteElementMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean)
extern const Il2CppType* XmlTypeMapMemberList_t2630503969_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberFlatList_t1312744122_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberAnyElement_t2899433779_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberAnyAttribute_t576758419_0_0_0_var;
extern const Il2CppType* XmlTypeMapMemberElement_t1386704533_0_0_0_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral431195658;
extern const uint32_t XmlSerializationWriterInterpreter_WriteElementMembers_m2438908730_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteElementMembers_m2438908730 (XmlSerializationWriterInterpreter_t1671227756 * __this, ClassMap_t912207490 * ___map, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteElementMembers_m2438908730_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
XmlTypeMapMemberElement_t1386704533 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Type_t * V_4 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
ClassMap_t912207490 * L_0 = ___map;
NullCheck(L_0);
Il2CppObject * L_1 = ClassMap_get_ElementMembers_m1176036895(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Il2CppObject * L_2 = V_0;
if (!L_2)
{
goto IL_0146;
}
}
{
Il2CppObject * L_3 = V_0;
NullCheck(L_3);
Il2CppObject * L_4 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_3);
V_2 = L_4;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0121;
}
IL_0019:
{
Il2CppObject * L_5 = V_2;
NullCheck(L_5);
Il2CppObject * L_6 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_5);
V_1 = ((XmlTypeMapMemberElement_t1386704533 *)CastclassClass(L_6, XmlTypeMapMemberElement_t1386704533_il2cpp_TypeInfo_var));
XmlTypeMapMemberElement_t1386704533 * L_7 = V_1;
Il2CppObject * L_8 = ___ob;
bool L_9 = ___isValueList;
bool L_10 = XmlSerializationWriterInterpreter_MemberHasValue_m1854916872(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0038;
}
}
IL_0033:
{
goto IL_0121;
}
IL_0038:
{
XmlTypeMapMemberElement_t1386704533 * L_11 = V_1;
Il2CppObject * L_12 = ___ob;
bool L_13 = ___isValueList;
Il2CppObject * L_14 = XmlSerializationWriterInterpreter_GetMemberValue_m2777931525(__this, L_11, L_12, L_13, /*hidden argument*/NULL);
V_3 = L_14;
XmlTypeMapMemberElement_t1386704533 * L_15 = V_1;
NullCheck(L_15);
Type_t * L_16 = Object_GetType_m2022236990(L_15, /*hidden argument*/NULL);
V_4 = L_16;
Type_t * L_17 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_18 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberList_t2630503969_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18))))
{
goto IL_0078;
}
}
IL_005b:
{
XmlTypeMapMemberElement_t1386704533 * L_19 = V_1;
NullCheck(L_19);
XmlTypeMapElementInfoList_t3690603483 * L_20 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Il2CppObject * L_21 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_20, 0);
Il2CppObject * L_22 = V_3;
XmlSerializationWriterInterpreter_WriteMemberElement_m884687583(__this, ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_21, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var)), L_22, /*hidden argument*/NULL);
goto IL_0121;
}
IL_0078:
{
Type_t * L_23 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberFlatList_t1312744122_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24))))
{
goto IL_00ae;
}
}
IL_0089:
{
Il2CppObject * L_25 = V_3;
if (!L_25)
{
goto IL_00a9;
}
}
IL_008f:
{
Il2CppObject * L_26 = ___ob;
XmlTypeMapMemberElement_t1386704533 * L_27 = V_1;
NullCheck(L_27);
TypeData_t3837952962 * L_28 = XmlTypeMapMember_get_TypeData_m3428473262(L_27, /*hidden argument*/NULL);
XmlTypeMapMemberElement_t1386704533 * L_29 = V_1;
NullCheck(((XmlTypeMapMemberFlatList_t1312744122 *)CastclassClass(L_29, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var)));
ListMap_t2001748316 * L_30 = XmlTypeMapMemberFlatList_get_ListMap_m1043078955(((XmlTypeMapMemberFlatList_t1312744122 *)CastclassClass(L_29, XmlTypeMapMemberFlatList_t1312744122_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
Il2CppObject * L_31 = V_3;
XmlSerializationWriterInterpreter_WriteListContent_m4184880763(__this, L_26, L_28, L_30, L_31, (StringBuilder_t3822575854 *)NULL, /*hidden argument*/NULL);
}
IL_00a9:
{
goto IL_0121;
}
IL_00ae:
{
Type_t * L_32 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_33 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberAnyElement_t2899433779_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_32) == ((Il2CppObject*)(Type_t *)L_33))))
{
goto IL_00d7;
}
}
IL_00bf:
{
Il2CppObject * L_34 = V_3;
if (!L_34)
{
goto IL_00d2;
}
}
IL_00c5:
{
XmlTypeMapMemberElement_t1386704533 * L_35 = V_1;
Il2CppObject * L_36 = V_3;
XmlSerializationWriterInterpreter_WriteAnyElementContent_m4045039636(__this, ((XmlTypeMapMemberAnyElement_t2899433779 *)CastclassClass(L_35, XmlTypeMapMemberAnyElement_t2899433779_il2cpp_TypeInfo_var)), L_36, /*hidden argument*/NULL);
}
IL_00d2:
{
goto IL_0121;
}
IL_00d7:
{
Type_t * L_37 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_38 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberAnyAttribute_t576758419_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_37) == ((Il2CppObject*)(Type_t *)L_38))))
{
goto IL_00ed;
}
}
IL_00e8:
{
goto IL_0121;
}
IL_00ed:
{
Type_t * L_39 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_40 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlTypeMapMemberElement_t1386704533_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_39) == ((Il2CppObject*)(Type_t *)L_40))))
{
goto IL_0116;
}
}
IL_00fe:
{
XmlTypeMapMemberElement_t1386704533 * L_41 = V_1;
Il2CppObject * L_42 = ___ob;
Il2CppObject * L_43 = V_3;
NullCheck(L_41);
XmlTypeMapElementInfo_t3184170653 * L_44 = XmlTypeMapMemberElement_FindElement_m2926979141(L_41, L_42, L_43, /*hidden argument*/NULL);
V_5 = L_44;
XmlTypeMapElementInfo_t3184170653 * L_45 = V_5;
Il2CppObject * L_46 = V_3;
XmlSerializationWriterInterpreter_WriteMemberElement_m884687583(__this, L_45, L_46, /*hidden argument*/NULL);
goto IL_0121;
}
IL_0116:
{
InvalidOperationException_t2420574324 * L_47 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_47, _stringLiteral431195658, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47);
}
IL_0121:
{
Il2CppObject * L_48 = V_2;
NullCheck(L_48);
bool L_49 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_48);
if (L_49)
{
goto IL_0019;
}
}
IL_012c:
{
IL2CPP_LEAVE(0x146, FINALLY_0131);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0131;
}
FINALLY_0131:
{ // begin finally (depth: 1)
{
Il2CppObject * L_50 = V_2;
V_6 = ((Il2CppObject *)IsInst(L_50, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_51 = V_6;
if (L_51)
{
goto IL_013e;
}
}
IL_013d:
{
IL2CPP_END_FINALLY(305)
}
IL_013e:
{
Il2CppObject * L_52 = V_6;
NullCheck(L_52);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_52);
IL2CPP_END_FINALLY(305)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(305)
{
IL2CPP_JUMP_TBL(0x146, IL_0146)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0146:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_GetMemberValue_m2777931525_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationWriterInterpreter_GetMemberValue_m2777931525 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapMember_t757519331 * ___member, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_GetMemberValue_m2777931525_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___isValueList;
if (!L_0)
{
goto IL_0014;
}
}
{
Il2CppObject * L_1 = ___ob;
XmlTypeMapMember_t757519331 * L_2 = ___member;
NullCheck(L_2);
int32_t L_3 = XmlTypeMapMember_get_GlobalIndex_m1359983822(L_2, /*hidden argument*/NULL);
NullCheck(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)));
IL2CPP_ARRAY_BOUNDS_CHECK(((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)), L_3);
int32_t L_4 = L_3;
return ((((ObjectU5BU5D_t11523773*)Castclass(L_1, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)))->GetAt(static_cast<il2cpp_array_size_t>(L_4)));
}
IL_0014:
{
XmlTypeMapMember_t757519331 * L_5 = ___member;
Il2CppObject * L_6 = ___ob;
NullCheck(L_5);
Il2CppObject * L_7 = XmlTypeMapMember_GetValue_m1259309106(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Boolean System.Xml.Serialization.XmlSerializationWriterInterpreter::MemberHasValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean)
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern TypeInfo* Enum_t2778772662_il2cpp_TypeInfo_var;
extern TypeInfo* Convert_t1097883944_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_MemberHasValue_m1854916872_MetadataUsageId;
extern "C" bool XmlSerializationWriterInterpreter_MemberHasValue_m1854916872 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapMember_t757519331 * ___member, Il2CppObject * ___ob, bool ___isValueList, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_MemberHasValue_m1854916872_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
Type_t * V_1 = NULL;
{
bool L_0 = ___isValueList;
if (!L_0)
{
goto IL_0017;
}
}
{
XmlTypeMapMember_t757519331 * L_1 = ___member;
NullCheck(L_1);
int32_t L_2 = XmlTypeMapMember_get_GlobalIndex_m1359983822(L_1, /*hidden argument*/NULL);
Il2CppObject * L_3 = ___ob;
NullCheck(((ObjectU5BU5D_t11523773*)Castclass(L_3, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)));
return (bool)((((int32_t)L_2) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)((ObjectU5BU5D_t11523773*)Castclass(L_3, ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var)))->max_length))))))? 1 : 0);
}
IL_0017:
{
XmlTypeMapMember_t757519331 * L_4 = ___member;
NullCheck(L_4);
Il2CppObject * L_5 = XmlTypeMapMember_get_DefaultValue_m399150432(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t491814586_il2cpp_TypeInfo_var);
DBNull_t491814586 * L_6 = ((DBNull_t491814586_StaticFields*)DBNull_t491814586_il2cpp_TypeInfo_var->static_fields)->get_Value_0();
if ((((Il2CppObject*)(Il2CppObject *)L_5) == ((Il2CppObject*)(DBNull_t491814586 *)L_6)))
{
goto IL_009f;
}
}
{
XmlTypeMapMember_t757519331 * L_7 = ___member;
Il2CppObject * L_8 = ___ob;
bool L_9 = ___isValueList;
Il2CppObject * L_10 = XmlSerializationWriterInterpreter_GetMemberValue_m2777931525(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
V_0 = L_10;
Il2CppObject * L_11 = V_0;
if (L_11)
{
goto IL_0044;
}
}
{
XmlTypeMapMember_t757519331 * L_12 = ___member;
NullCheck(L_12);
Il2CppObject * L_13 = XmlTypeMapMember_get_DefaultValue_m399150432(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0044;
}
}
{
return (bool)0;
}
IL_0044:
{
Il2CppObject * L_14 = V_0;
if (!L_14)
{
goto IL_0081;
}
}
{
Il2CppObject * L_15 = V_0;
NullCheck(L_15);
Type_t * L_16 = Object_GetType_m2022236990(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
bool L_17 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Type::get_IsEnum() */, L_16);
if (!L_17)
{
goto IL_0081;
}
}
{
Il2CppObject * L_18 = V_0;
XmlTypeMapMember_t757519331 * L_19 = ___member;
NullCheck(L_19);
Il2CppObject * L_20 = XmlTypeMapMember_get_DefaultValue_m399150432(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
bool L_21 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_18, L_20);
if (!L_21)
{
goto IL_006d;
}
}
{
return (bool)0;
}
IL_006d:
{
Il2CppObject * L_22 = V_0;
NullCheck(L_22);
Type_t * L_23 = Object_GetType_m2022236990(L_22, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2778772662_il2cpp_TypeInfo_var);
Type_t * L_24 = Enum_GetUnderlyingType_m2468052512(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
V_1 = L_24;
Il2CppObject * L_25 = V_0;
Type_t * L_26 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1097883944_il2cpp_TypeInfo_var);
Il2CppObject * L_27 = Convert_ChangeType_m2922880930(NULL /*static, unused*/, L_25, L_26, /*hidden argument*/NULL);
V_0 = L_27;
}
IL_0081:
{
Il2CppObject * L_28 = V_0;
if (!L_28)
{
goto IL_009a;
}
}
{
Il2CppObject * L_29 = V_0;
XmlTypeMapMember_t757519331 * L_30 = ___member;
NullCheck(L_30);
Il2CppObject * L_31 = XmlTypeMapMember_get_DefaultValue_m399150432(L_30, /*hidden argument*/NULL);
NullCheck(L_29);
bool L_32 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_29, L_31);
if (!L_32)
{
goto IL_009a;
}
}
{
return (bool)0;
}
IL_009a:
{
goto IL_00b2;
}
IL_009f:
{
XmlTypeMapMember_t757519331 * L_33 = ___member;
NullCheck(L_33);
bool L_34 = XmlTypeMapMember_get_IsOptionalValueType_m3882268486(L_33, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_00b2;
}
}
{
XmlTypeMapMember_t757519331 * L_35 = ___member;
Il2CppObject * L_36 = ___ob;
NullCheck(L_35);
bool L_37 = XmlTypeMapMember_GetValueSpecified_m1148679889(L_35, L_36, /*hidden argument*/NULL);
return L_37;
}
IL_00b2:
{
return (bool)1;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMemberElement(System.Xml.Serialization.XmlTypeMapElementInfo,System.Object)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNode_t3592213601_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* IXmlSerializable_t1192716491_il2cpp_TypeInfo_var;
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3985849970;
extern const uint32_t XmlSerializationWriterInterpreter_WriteMemberElement_m884687583_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteMemberElement_m884687583 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapElementInfo_t3184170653 * ___elem, Il2CppObject * ___memberValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteMemberElement_m884687583_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* G_B5_0 = NULL;
{
XmlTypeMapElementInfo_t3184170653 * L_0 = ___elem;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = TypeData_get_SchemaType_m1693934194(L_1, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = V_1;
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 0)
{
goto IL_0097;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 1)
{
goto IL_0097;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 2)
{
goto IL_0114;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 3)
{
goto IL_01cc;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 4)
{
goto IL_025f;
}
if (((int32_t)((int32_t)L_3-(int32_t)1)) == 5)
{
goto IL_0031;
}
}
{
goto IL_02b6;
}
IL_0031:
{
XmlTypeMapElementInfo_t3184170653 * L_4 = ___elem;
NullCheck(L_4);
bool L_5 = XmlTypeMapElementInfo_get_WrappedElement_m4167601554(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0047;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_6 = ___elem;
NullCheck(L_6);
String_t* L_7 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_6, /*hidden argument*/NULL);
G_B5_0 = L_7;
goto IL_004c;
}
IL_0047:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
G_B5_0 = L_8;
}
IL_004c:
{
V_0 = G_B5_0;
int32_t L_9 = __this->get__format_9();
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
{
goto IL_0078;
}
}
{
Il2CppObject * L_10 = ___memberValue;
String_t* L_11 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_12 = ___elem;
NullCheck(L_12);
String_t* L_13 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_12, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_14 = ___elem;
NullCheck(L_14);
bool L_15 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_14, /*hidden argument*/NULL);
XmlSerializationWriter_WriteElementLiteral_m3283896518(__this, ((XmlNode_t3592213601 *)CastclassClass(L_10, XmlNode_t3592213601_il2cpp_TypeInfo_var)), L_11, L_13, L_15, (bool)0, /*hidden argument*/NULL);
goto IL_0092;
}
IL_0078:
{
Il2CppObject * L_16 = ___memberValue;
String_t* L_17 = V_0;
XmlTypeMapElementInfo_t3184170653 * L_18 = ___elem;
NullCheck(L_18);
String_t* L_19 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_18, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_20 = ___elem;
NullCheck(L_20);
bool L_21 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_20, /*hidden argument*/NULL);
XmlSerializationWriter_WriteElementEncoded_m3487212261(__this, ((XmlNode_t3592213601 *)CastclassClass(L_16, XmlNode_t3592213601_il2cpp_TypeInfo_var)), L_17, L_19, L_21, (bool)0, /*hidden argument*/NULL);
}
IL_0092:
{
goto IL_02c1;
}
IL_0097:
{
int32_t L_22 = __this->get__format_9();
if ((!(((uint32_t)L_22) == ((uint32_t)1))))
{
goto IL_00d3;
}
}
{
Il2CppObject * L_23 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_24 = ___elem;
NullCheck(L_24);
String_t* L_25 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_24, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_26 = ___elem;
NullCheck(L_26);
String_t* L_27 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_26, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_28 = ___elem;
NullCheck(L_28);
XmlTypeMapping_t988104027 * L_29 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_28, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_30 = ___elem;
NullCheck(L_30);
TypeData_t3837952962 * L_31 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_30, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_32 = ___elem;
NullCheck(L_32);
bool L_33 = XmlTypeMapElementInfo_get_WrappedElement_m4167601554(L_32, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_34 = ___elem;
NullCheck(L_34);
bool L_35 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_34, /*hidden argument*/NULL);
XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m3733720316(__this, L_23, L_25, L_27, L_29, L_31, L_33, L_35, /*hidden argument*/NULL);
goto IL_010f;
}
IL_00d3:
{
Il2CppObject * L_36 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_37 = ___elem;
NullCheck(L_37);
String_t* L_38 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_37, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_39 = ___elem;
NullCheck(L_39);
String_t* L_40 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_39, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_41 = ___elem;
NullCheck(L_41);
String_t* L_42 = XmlTypeMapElementInfo_get_DataTypeName_m4068744677(L_41, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_43 = ___elem;
NullCheck(L_43);
String_t* L_44 = XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611(L_43, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_45 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_45, L_42, L_44, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_46 = ___elem;
NullCheck(L_46);
XmlTypeMapping_t988104027 * L_47 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_46, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_48 = ___elem;
NullCheck(L_48);
TypeData_t3837952962 * L_49 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_48, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_50 = ___elem;
NullCheck(L_50);
bool L_51 = XmlTypeMapElementInfo_get_WrappedElement_m4167601554(L_50, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_52 = ___elem;
NullCheck(L_52);
bool L_53 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_52, /*hidden argument*/NULL);
XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m588607427(__this, L_36, L_38, L_40, L_45, L_47, L_49, L_51, L_53, /*hidden argument*/NULL);
}
IL_010f:
{
goto IL_02c1;
}
IL_0114:
{
Il2CppObject * L_54 = ___memberValue;
if (L_54)
{
goto IL_0160;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_55 = ___elem;
NullCheck(L_55);
bool L_56 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_55, /*hidden argument*/NULL);
if (L_56)
{
goto IL_0126;
}
}
{
return;
}
IL_0126:
{
int32_t L_57 = __this->get__format_9();
if ((!(((uint32_t)L_57) == ((uint32_t)1))))
{
goto IL_0149;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_58 = ___elem;
NullCheck(L_58);
String_t* L_59 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_58, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_60 = ___elem;
NullCheck(L_60);
String_t* L_61 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_60, /*hidden argument*/NULL);
XmlSerializationWriter_WriteNullTagLiteral_m3593138340(__this, L_59, L_61, /*hidden argument*/NULL);
goto IL_015b;
}
IL_0149:
{
XmlTypeMapElementInfo_t3184170653 * L_62 = ___elem;
NullCheck(L_62);
String_t* L_63 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_62, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_64 = ___elem;
NullCheck(L_64);
String_t* L_65 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_64, /*hidden argument*/NULL);
XmlSerializationWriter_WriteNullTagEncoded_m1637334181(__this, L_63, L_65, /*hidden argument*/NULL);
}
IL_015b:
{
goto IL_01c7;
}
IL_0160:
{
XmlTypeMapElementInfo_t3184170653 * L_66 = ___elem;
NullCheck(L_66);
XmlTypeMapping_t988104027 * L_67 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_66, /*hidden argument*/NULL);
NullCheck(L_67);
bool L_68 = XmlTypeMapping_get_MultiReferenceType_m2426892065(L_67, /*hidden argument*/NULL);
if (!L_68)
{
goto IL_018e;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_69 = ___elem;
NullCheck(L_69);
String_t* L_70 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_69, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_71 = ___elem;
NullCheck(L_71);
String_t* L_72 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_71, /*hidden argument*/NULL);
Il2CppObject * L_73 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_74 = ___elem;
NullCheck(L_74);
bool L_75 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_74, /*hidden argument*/NULL);
XmlSerializationWriter_WriteReferencingElement_m385174595(__this, L_70, L_72, L_73, L_75, /*hidden argument*/NULL);
goto IL_01c7;
}
IL_018e:
{
XmlTypeMapElementInfo_t3184170653 * L_76 = ___elem;
NullCheck(L_76);
String_t* L_77 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_76, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_78 = ___elem;
NullCheck(L_78);
String_t* L_79 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_78, /*hidden argument*/NULL);
Il2CppObject * L_80 = ___memberValue;
XmlSerializationWriter_WriteStartElement_m119951060(__this, L_77, L_79, L_80, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_81 = ___elem;
NullCheck(L_81);
TypeData_t3837952962 * L_82 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_81, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_83 = ___elem;
NullCheck(L_83);
XmlTypeMapping_t988104027 * L_84 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_83, /*hidden argument*/NULL);
NullCheck(L_84);
ObjectMap_t669501211 * L_85 = XmlMapping_get_ObjectMap_m3032707184(L_84, /*hidden argument*/NULL);
Il2CppObject * L_86 = ___memberValue;
XmlSerializationWriterInterpreter_WriteListContent_m4184880763(__this, NULL, L_82, ((ListMap_t2001748316 *)CastclassClass(L_85, ListMap_t2001748316_il2cpp_TypeInfo_var)), L_86, (StringBuilder_t3822575854 *)NULL, /*hidden argument*/NULL);
Il2CppObject * L_87 = ___memberValue;
XmlSerializationWriter_WriteEndElement_m2407664341(__this, L_87, /*hidden argument*/NULL);
}
IL_01c7:
{
goto IL_02c1;
}
IL_01cc:
{
XmlTypeMapElementInfo_t3184170653 * L_88 = ___elem;
NullCheck(L_88);
XmlTypeMapping_t988104027 * L_89 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_88, /*hidden argument*/NULL);
NullCheck(L_89);
bool L_90 = XmlTypeMapping_get_MultiReferenceType_m2426892065(L_89, /*hidden argument*/NULL);
if (!L_90)
{
goto IL_0239;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_91 = ___elem;
NullCheck(L_91);
XmlTypeMapping_t988104027 * L_92 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_91, /*hidden argument*/NULL);
NullCheck(L_92);
TypeData_t3837952962 * L_93 = XmlTypeMapping_get_TypeData_m3898113510(L_92, /*hidden argument*/NULL);
NullCheck(L_93);
Type_t * L_94 = TypeData_get_Type_m2191724548(L_93, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_95 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_94) == ((Il2CppObject*)(Type_t *)L_95))))
{
goto IL_021b;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_96 = ___elem;
NullCheck(L_96);
String_t* L_97 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_96, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_98 = ___elem;
NullCheck(L_98);
String_t* L_99 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_98, /*hidden argument*/NULL);
Il2CppObject * L_100 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_101 = ___elem;
NullCheck(L_101);
bool L_102 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_101, /*hidden argument*/NULL);
XmlSerializationWriter_WritePotentiallyReferencingElement_m4224054012(__this, L_97, L_99, L_100, (Type_t *)NULL, (bool)0, L_102, /*hidden argument*/NULL);
goto IL_0234;
}
IL_021b:
{
XmlTypeMapElementInfo_t3184170653 * L_103 = ___elem;
NullCheck(L_103);
String_t* L_104 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_103, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_105 = ___elem;
NullCheck(L_105);
String_t* L_106 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_105, /*hidden argument*/NULL);
Il2CppObject * L_107 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_108 = ___elem;
NullCheck(L_108);
bool L_109 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_108, /*hidden argument*/NULL);
XmlSerializationWriter_WriteReferencingElement_m385174595(__this, L_104, L_106, L_107, L_109, /*hidden argument*/NULL);
}
IL_0234:
{
goto IL_025a;
}
IL_0239:
{
XmlTypeMapElementInfo_t3184170653 * L_110 = ___elem;
NullCheck(L_110);
XmlTypeMapping_t988104027 * L_111 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_110, /*hidden argument*/NULL);
Il2CppObject * L_112 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_113 = ___elem;
NullCheck(L_113);
String_t* L_114 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_113, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_115 = ___elem;
NullCheck(L_115);
String_t* L_116 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_115, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_117 = ___elem;
NullCheck(L_117);
bool L_118 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_117, /*hidden argument*/NULL);
VirtActionInvoker7< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, __this, L_111, L_112, L_114, L_116, L_118, (bool)0, (bool)1);
}
IL_025a:
{
goto IL_02c1;
}
IL_025f:
{
XmlTypeMapElementInfo_t3184170653 * L_119 = ___elem;
NullCheck(L_119);
XmlTypeMapping_t988104027 * L_120 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_119, /*hidden argument*/NULL);
NullCheck(L_120);
TypeData_t3837952962 * L_121 = XmlTypeMapping_get_TypeData_m3898113510(L_120, /*hidden argument*/NULL);
NullCheck(L_121);
Type_t * L_122 = TypeData_get_Type_m2191724548(L_121, /*hidden argument*/NULL);
Il2CppObject * L_123 = ___memberValue;
NullCheck(L_122);
bool L_124 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(44 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_122, L_123);
if (L_124)
{
goto IL_0293;
}
}
{
Il2CppObject * L_125 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_126 = ___elem;
NullCheck(L_126);
XmlTypeMapping_t988104027 * L_127 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_126, /*hidden argument*/NULL);
NullCheck(L_127);
TypeData_t3837952962 * L_128 = XmlTypeMapping_get_TypeData_m3898113510(L_127, /*hidden argument*/NULL);
NullCheck(L_128);
Type_t * L_129 = TypeData_get_Type_m2191724548(L_128, /*hidden argument*/NULL);
Il2CppObject * L_130 = XmlSerializationWriterInterpreter_ImplicitConvert_m2748108773(__this, L_125, L_129, /*hidden argument*/NULL);
___memberValue = L_130;
}
IL_0293:
{
Il2CppObject * L_131 = ___memberValue;
XmlTypeMapElementInfo_t3184170653 * L_132 = ___elem;
NullCheck(L_132);
String_t* L_133 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_132, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_134 = ___elem;
NullCheck(L_134);
String_t* L_135 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_134, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_136 = ___elem;
NullCheck(L_136);
bool L_137 = XmlTypeMapElementInfo_get_IsNullable_m2400854406(L_136, /*hidden argument*/NULL);
XmlSerializationWriter_WriteSerializable_m2313952689(__this, ((Il2CppObject *)Castclass(L_131, IXmlSerializable_t1192716491_il2cpp_TypeInfo_var)), L_133, L_135, L_137, /*hidden argument*/NULL);
goto IL_02c1;
}
IL_02b6:
{
NotSupportedException_t1374155497 * L_138 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m133757637(L_138, _stringLiteral3985849970, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_138);
}
IL_02c1:
{
return;
}
}
// System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::ImplicitConvert(System.Object,System.Type)
extern const Il2CppType* Il2CppObject_0_0_0_var;
extern TypeInfo* TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1596924579;
extern const uint32_t XmlSerializationWriterInterpreter_ImplicitConvert_m2748108773_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializationWriterInterpreter_ImplicitConvert_m2748108773 (XmlSerializationWriterInterpreter_t1671227756 * __this, Il2CppObject * ___obj, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_ImplicitConvert_m2748108773_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Type_t * V_0 = NULL;
MethodInfo_t * V_1 = NULL;
Type_t * V_2 = NULL;
MethodInfo_t * V_3 = NULL;
{
Il2CppObject * L_0 = ___obj;
if (L_0)
{
goto IL_0008;
}
}
{
return NULL;
}
IL_0008:
{
Type_t * L_1 = ___type;
V_0 = L_1;
goto IL_005a;
}
IL_000f:
{
Type_t * L_2 = V_0;
TypeU5BU5D_t3431720054* L_3 = ((TypeU5BU5D_t3431720054*)SZArrayNew(TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_4 = V_0;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, 0);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4);
NullCheck(L_2);
MethodInfo_t * L_5 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_2, _stringLiteral1596924579, L_3);
V_1 = L_5;
MethodInfo_t * L_6 = V_1;
if (!L_6)
{
goto IL_0053;
}
}
{
MethodInfo_t * L_7 = V_1;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_7);
Il2CppObject * L_9 = ___obj;
NullCheck(L_9);
Type_t * L_10 = Object_GetType_m2022236990(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_8, L_10);
if (!L_11)
{
goto IL_0053;
}
}
{
MethodInfo_t * L_12 = V_1;
ObjectU5BU5D_t11523773* L_13 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_14 = ___obj;
NullCheck(L_13);
IL2CPP_ARRAY_BOUNDS_CHECK(L_13, 0);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_14);
NullCheck(L_12);
Il2CppObject * L_15 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_12, NULL, L_13);
return L_15;
}
IL_0053:
{
Type_t * L_16 = V_0;
NullCheck(L_16);
Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_16);
V_0 = L_17;
}
IL_005a:
{
Type_t * L_18 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19))))
{
goto IL_000f;
}
}
{
Il2CppObject * L_20 = ___obj;
NullCheck(L_20);
Type_t * L_21 = Object_GetType_m2022236990(L_20, /*hidden argument*/NULL);
V_2 = L_21;
goto IL_00b7;
}
IL_0076:
{
Type_t * L_22 = V_2;
TypeU5BU5D_t3431720054* L_23 = ((TypeU5BU5D_t3431720054*)SZArrayNew(TypeU5BU5D_t3431720054_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_24 = V_2;
NullCheck(L_23);
IL2CPP_ARRAY_BOUNDS_CHECK(L_23, 0);
ArrayElementTypeCheck (L_23, L_24);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_24);
NullCheck(L_22);
MethodInfo_t * L_25 = VirtFuncInvoker2< MethodInfo_t *, String_t*, TypeU5BU5D_t3431720054* >::Invoke(55 /* System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) */, L_22, _stringLiteral1596924579, L_23);
V_3 = L_25;
MethodInfo_t * L_26 = V_3;
if (!L_26)
{
goto IL_00b0;
}
}
{
MethodInfo_t * L_27 = V_3;
NullCheck(L_27);
Type_t * L_28 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_27);
Type_t * L_29 = ___type;
if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29))))
{
goto IL_00b0;
}
}
{
MethodInfo_t * L_30 = V_3;
ObjectU5BU5D_t11523773* L_31 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_32 = ___obj;
NullCheck(L_31);
IL2CPP_ARRAY_BOUNDS_CHECK(L_31, 0);
ArrayElementTypeCheck (L_31, L_32);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_32);
NullCheck(L_30);
Il2CppObject * L_33 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_30, NULL, L_31);
return L_33;
}
IL_00b0:
{
Type_t * L_34 = V_2;
NullCheck(L_34);
Type_t * L_35 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Type::get_BaseType() */, L_34);
V_2 = L_35;
}
IL_00b7:
{
Type_t * L_36 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_37 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_36) == ((Il2CppObject*)(Type_t *)L_37))))
{
goto IL_0076;
}
}
{
Il2CppObject * L_38 = ___obj;
return L_38;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueLiteral(System.Object,System.String,System.String,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m3733720316_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m3733720316 (XmlSerializationWriterInterpreter_t1671227756 * __this, Il2CppObject * ___memberValue, String_t* ___name, String_t* ___ns, XmlTypeMapping_t988104027 * ___mappedType, TypeData_t3837952962 * ___typeData, bool ___wrapped, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m3733720316_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___wrapped;
if (L_0)
{
goto IL_001d;
}
}
{
XmlTypeMapping_t988104027 * L_1 = ___mappedType;
TypeData_t3837952962 * L_2 = ___typeData;
Il2CppObject * L_3 = ___memberValue;
String_t* L_4 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_1, L_2, L_3, /*hidden argument*/NULL);
XmlSerializationWriter_WriteValue_m3559834573(__this, L_4, /*hidden argument*/NULL);
goto IL_00a1;
}
IL_001d:
{
bool L_5 = ___isNullable;
if (!L_5)
{
goto IL_0065;
}
}
{
TypeData_t3837952962 * L_6 = ___typeData;
NullCheck(L_6);
Type_t * L_7 = TypeData_get_Type_m2191724548(L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_7) == ((Il2CppObject*)(Type_t *)L_8))))
{
goto IL_004d;
}
}
{
String_t* L_9 = ___name;
String_t* L_10 = ___ns;
Il2CppObject * L_11 = ___memberValue;
XmlSerializationWriter_WriteNullableQualifiedNameLiteral_m1270083773(__this, L_9, L_10, ((XmlQualifiedName_t176365656 *)CastclassClass(L_11, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_0060;
}
IL_004d:
{
String_t* L_12 = ___name;
String_t* L_13 = ___ns;
XmlTypeMapping_t988104027 * L_14 = ___mappedType;
TypeData_t3837952962 * L_15 = ___typeData;
Il2CppObject * L_16 = ___memberValue;
String_t* L_17 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_14, L_15, L_16, /*hidden argument*/NULL);
XmlSerializationWriter_WriteNullableStringLiteral_m2142950457(__this, L_12, L_13, L_17, /*hidden argument*/NULL);
}
IL_0060:
{
goto IL_00a1;
}
IL_0065:
{
TypeData_t3837952962 * L_18 = ___typeData;
NullCheck(L_18);
Type_t * L_19 = TypeData_get_Type_m2191724548(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_19) == ((Il2CppObject*)(Type_t *)L_20))))
{
goto IL_008e;
}
}
{
String_t* L_21 = ___name;
String_t* L_22 = ___ns;
Il2CppObject * L_23 = ___memberValue;
XmlSerializationWriter_WriteElementQualifiedName_m1557459131(__this, L_21, L_22, ((XmlQualifiedName_t176365656 *)CastclassClass(L_23, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_00a1;
}
IL_008e:
{
String_t* L_24 = ___name;
String_t* L_25 = ___ns;
XmlTypeMapping_t988104027 * L_26 = ___mappedType;
TypeData_t3837952962 * L_27 = ___typeData;
Il2CppObject * L_28 = ___memberValue;
String_t* L_29 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_26, L_27, L_28, /*hidden argument*/NULL);
XmlSerializationWriter_WriteElementString_m980360841(__this, L_24, L_25, L_29, /*hidden argument*/NULL);
}
IL_00a1:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueEncoded(System.Object,System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m588607427_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m588607427 (XmlSerializationWriterInterpreter_t1671227756 * __this, Il2CppObject * ___memberValue, String_t* ___name, String_t* ___ns, XmlQualifiedName_t176365656 * ___xsiType, XmlTypeMapping_t988104027 * ___mappedType, TypeData_t3837952962 * ___typeData, bool ___wrapped, bool ___isNullable, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m588607427_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___wrapped;
if (L_0)
{
goto IL_001d;
}
}
{
XmlTypeMapping_t988104027 * L_1 = ___mappedType;
TypeData_t3837952962 * L_2 = ___typeData;
Il2CppObject * L_3 = ___memberValue;
String_t* L_4 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_1, L_2, L_3, /*hidden argument*/NULL);
XmlSerializationWriter_WriteValue_m3559834573(__this, L_4, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_001d:
{
bool L_5 = ___isNullable;
if (!L_5)
{
goto IL_0069;
}
}
{
TypeData_t3837952962 * L_6 = ___typeData;
NullCheck(L_6);
Type_t * L_7 = TypeData_get_Type_m2191724548(L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_7) == ((Il2CppObject*)(Type_t *)L_8))))
{
goto IL_004f;
}
}
{
String_t* L_9 = ___name;
String_t* L_10 = ___ns;
Il2CppObject * L_11 = ___memberValue;
XmlQualifiedName_t176365656 * L_12 = ___xsiType;
XmlSerializationWriter_WriteNullableQualifiedNameEncoded_m1477558468(__this, L_9, L_10, ((XmlQualifiedName_t176365656 *)CastclassClass(L_11, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), L_12, /*hidden argument*/NULL);
goto IL_0064;
}
IL_004f:
{
String_t* L_13 = ___name;
String_t* L_14 = ___ns;
XmlTypeMapping_t988104027 * L_15 = ___mappedType;
TypeData_t3837952962 * L_16 = ___typeData;
Il2CppObject * L_17 = ___memberValue;
String_t* L_18 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_15, L_16, L_17, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_19 = ___xsiType;
XmlSerializationWriter_WriteNullableStringEncoded_m3677042688(__this, L_13, L_14, L_18, L_19, /*hidden argument*/NULL);
}
IL_0064:
{
goto IL_00a9;
}
IL_0069:
{
TypeData_t3837952962 * L_20 = ___typeData;
NullCheck(L_20);
Type_t * L_21 = TypeData_get_Type_m2191724548(L_20, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_21) == ((Il2CppObject*)(Type_t *)L_22))))
{
goto IL_0094;
}
}
{
String_t* L_23 = ___name;
String_t* L_24 = ___ns;
Il2CppObject * L_25 = ___memberValue;
XmlQualifiedName_t176365656 * L_26 = ___xsiType;
XmlSerializationWriter_WriteElementQualifiedName_m2531664577(__this, L_23, L_24, ((XmlQualifiedName_t176365656 *)CastclassClass(L_25, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), L_26, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_0094:
{
String_t* L_27 = ___name;
String_t* L_28 = ___ns;
XmlTypeMapping_t988104027 * L_29 = ___mappedType;
TypeData_t3837952962 * L_30 = ___typeData;
Il2CppObject * L_31 = ___memberValue;
String_t* L_32 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_29, L_30, L_31, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_33 = ___xsiType;
XmlSerializationWriter_WriteElementString_m3002380175(__this, L_27, L_28, L_32, L_33, /*hidden argument*/NULL);
}
IL_00a9:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String)
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2870059315;
extern Il2CppCodeGenString* _stringLiteral3403005341;
extern const uint32_t XmlSerializationWriterInterpreter_WriteListElement_m1737646319_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteListElement_m1737646319 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, String_t* ___element, String_t* ___namesp, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteListElement_m1737646319_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* G_B4_0 = NULL;
{
int32_t L_0 = __this->get__format_9();
if (L_0)
{
goto IL_0063;
}
}
{
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
NullCheck(L_1);
TypeData_t3837952962 * L_2 = XmlTypeMapping_get_TypeData_m3898113510(L_1, /*hidden argument*/NULL);
Il2CppObject * L_3 = ___ob;
int32_t L_4 = XmlSerializationWriterInterpreter_GetListCount_m1323969298(__this, L_2, L_3, /*hidden argument*/NULL);
V_2 = L_4;
XmlTypeMapping_t988104027 * L_5 = ___typeMap;
NullCheck(L_5);
ObjectMap_t669501211 * L_6 = XmlMapping_get_ObjectMap_m3032707184(L_5, /*hidden argument*/NULL);
int32_t L_7 = V_2;
NullCheck(((ListMap_t2001748316 *)CastclassClass(L_6, ListMap_t2001748316_il2cpp_TypeInfo_var)));
ListMap_GetArrayType_m2889209111(((ListMap_t2001748316 *)CastclassClass(L_6, ListMap_t2001748316_il2cpp_TypeInfo_var)), L_7, (&V_0), (&V_1), /*hidden argument*/NULL);
String_t* L_8 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_9 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_10 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0050;
}
}
{
String_t* L_11 = V_0;
String_t* L_12 = V_1;
XmlQualifiedName_t176365656 * L_13 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_13, L_11, L_12, /*hidden argument*/NULL);
String_t* L_14 = XmlSerializationWriter_FromXmlQualifiedName_m2747019346(__this, L_13, /*hidden argument*/NULL);
G_B4_0 = L_14;
goto IL_0051;
}
IL_0050:
{
String_t* L_15 = V_0;
G_B4_0 = L_15;
}
IL_0051:
{
V_3 = G_B4_0;
String_t* L_16 = V_3;
XmlSerializationWriter_WriteAttribute_m353765690(__this, _stringLiteral2870059315, _stringLiteral3403005341, L_16, /*hidden argument*/NULL);
}
IL_0063:
{
XmlTypeMapping_t988104027 * L_17 = ___typeMap;
NullCheck(L_17);
TypeData_t3837952962 * L_18 = XmlTypeMapping_get_TypeData_m3898113510(L_17, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_19 = ___typeMap;
NullCheck(L_19);
ObjectMap_t669501211 * L_20 = XmlMapping_get_ObjectMap_m3032707184(L_19, /*hidden argument*/NULL);
Il2CppObject * L_21 = ___ob;
XmlSerializationWriterInterpreter_WriteListContent_m4184880763(__this, NULL, L_18, ((ListMap_t2001748316 *)CastclassClass(L_20, ListMap_t2001748316_il2cpp_TypeInfo_var)), L_21, (StringBuilder_t3822575854 *)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListContent(System.Object,System.Xml.Serialization.TypeData,System.Xml.Serialization.ListMap,System.Object,System.Text.StringBuilder)
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern TypeInfo* ICollection_t3761522009_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern TypeInfo* TypeData_t3837952962_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerable_t287189635_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral32;
extern Il2CppCodeGenString* _stringLiteral65298671;
extern Il2CppCodeGenString* _stringLiteral4251254641;
extern const uint32_t XmlSerializationWriterInterpreter_WriteListContent_m4184880763_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteListContent_m4184880763 (XmlSerializationWriterInterpreter_t1671227756 * __this, Il2CppObject * ___container, TypeData_t3837952962 * ___listType, ListMap_t2001748316 * ___map, Il2CppObject * ___ob, StringBuilder_t3822575854 * ___targetString, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteListContent_m4184880763_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppArray * V_0 = NULL;
int32_t V_1 = 0;
Il2CppObject * V_2 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_3 = NULL;
int32_t V_4 = 0;
PropertyInfo_t * V_5 = NULL;
ObjectU5BU5D_t11523773* V_6 = NULL;
int32_t V_7 = 0;
Il2CppObject * V_8 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_9 = NULL;
Il2CppObject * V_10 = NULL;
Il2CppObject * V_11 = NULL;
Il2CppObject * V_12 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_13 = NULL;
Il2CppObject * V_14 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
TypeData_t3837952962 * L_0 = ___listType;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_1);
if (!L_2)
{
goto IL_00a5;
}
}
{
Il2CppObject * L_3 = ___ob;
V_0 = ((Il2CppArray *)CastclassClass(L_3, Il2CppArray_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0094;
}
IL_001f:
{
Il2CppArray * L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
Il2CppObject * L_6 = Array_GetValue_m244209261(L_4, L_5, /*hidden argument*/NULL);
V_2 = L_6;
ListMap_t2001748316 * L_7 = ___map;
Il2CppObject * L_8 = ___container;
int32_t L_9 = V_1;
Il2CppObject * L_10 = V_2;
NullCheck(L_7);
XmlTypeMapElementInfo_t3184170653 * L_11 = ListMap_FindElement_m2886457511(L_7, L_8, L_9, L_10, /*hidden argument*/NULL);
V_3 = L_11;
XmlTypeMapElementInfo_t3184170653 * L_12 = V_3;
if (!L_12)
{
goto IL_004b;
}
}
{
StringBuilder_t3822575854 * L_13 = ___targetString;
if (L_13)
{
goto IL_004b;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_14 = V_3;
Il2CppObject * L_15 = V_2;
XmlSerializationWriterInterpreter_WriteMemberElement_m884687583(__this, L_14, L_15, /*hidden argument*/NULL);
goto IL_0090;
}
IL_004b:
{
XmlTypeMapElementInfo_t3184170653 * L_16 = V_3;
if (!L_16)
{
goto IL_0082;
}
}
{
StringBuilder_t3822575854 * L_17 = ___targetString;
if (!L_17)
{
goto IL_0082;
}
}
{
StringBuilder_t3822575854 * L_18 = ___targetString;
XmlTypeMapElementInfo_t3184170653 * L_19 = V_3;
NullCheck(L_19);
XmlTypeMapping_t988104027 * L_20 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_19, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_21 = V_3;
NullCheck(L_21);
TypeData_t3837952962 * L_22 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_21, /*hidden argument*/NULL);
Il2CppObject * L_23 = V_2;
String_t* L_24 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_20, L_22, L_23, /*hidden argument*/NULL);
NullCheck(L_18);
StringBuilder_t3822575854 * L_25 = StringBuilder_Append_m3898090075(L_18, L_24, /*hidden argument*/NULL);
NullCheck(L_25);
StringBuilder_Append_m3898090075(L_25, _stringLiteral32, /*hidden argument*/NULL);
goto IL_0090;
}
IL_0082:
{
Il2CppObject * L_26 = V_2;
if (!L_26)
{
goto IL_0090;
}
}
{
Il2CppObject * L_27 = V_2;
Exception_t1967233988 * L_28 = XmlSerializationWriter_CreateUnknownTypeException_m2000708971(__this, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28);
}
IL_0090:
{
int32_t L_29 = V_1;
V_1 = ((int32_t)((int32_t)L_29+(int32_t)1));
}
IL_0094:
{
int32_t L_30 = V_1;
Il2CppArray * L_31 = V_0;
NullCheck(L_31);
int32_t L_32 = Array_get_Length_m1203127607(L_31, /*hidden argument*/NULL);
if ((((int32_t)L_30) < ((int32_t)L_32)))
{
goto IL_001f;
}
}
{
goto IL_0266;
}
IL_00a5:
{
Il2CppObject * L_33 = ___ob;
if (!((Il2CppObject *)IsInst(L_33, ICollection_t3761522009_il2cpp_TypeInfo_var)))
{
goto IL_018f;
}
}
{
Il2CppObject * L_34 = ___ob;
NullCheck(L_34);
Type_t * L_35 = Object_GetType_m2022236990(L_34, /*hidden argument*/NULL);
NullCheck(L_35);
PropertyInfo_t * L_36 = VirtFuncInvoker1< PropertyInfo_t *, String_t* >::Invoke(62 /* System.Reflection.PropertyInfo System.Type::GetProperty(System.String) */, L_35, _stringLiteral65298671);
Il2CppObject * L_37 = ___ob;
NullCheck(L_36);
Il2CppObject * L_38 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_36, L_37, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
V_4 = ((*(int32_t*)((int32_t*)UnBox (L_38, Int32_t2847414787_il2cpp_TypeInfo_var))));
TypeData_t3837952962 * L_39 = ___listType;
NullCheck(L_39);
Type_t * L_40 = TypeData_get_Type_m2191724548(L_39, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TypeData_t3837952962_il2cpp_TypeInfo_var);
PropertyInfo_t * L_41 = TypeData_GetIndexerProperty_m3778817866(NULL /*static, unused*/, L_40, /*hidden argument*/NULL);
V_5 = L_41;
V_6 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
V_7 = 0;
goto IL_0181;
}
IL_00ee:
{
ObjectU5BU5D_t11523773* L_42 = V_6;
int32_t L_43 = V_7;
int32_t L_44 = L_43;
Il2CppObject * L_45 = Box(Int32_t2847414787_il2cpp_TypeInfo_var, &L_44);
NullCheck(L_42);
IL2CPP_ARRAY_BOUNDS_CHECK(L_42, 0);
ArrayElementTypeCheck (L_42, L_45);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_45);
PropertyInfo_t * L_46 = V_5;
Il2CppObject * L_47 = ___ob;
ObjectU5BU5D_t11523773* L_48 = V_6;
NullCheck(L_46);
Il2CppObject * L_49 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_46, L_47, L_48);
V_8 = L_49;
ListMap_t2001748316 * L_50 = ___map;
Il2CppObject * L_51 = ___container;
int32_t L_52 = V_7;
Il2CppObject * L_53 = V_8;
NullCheck(L_50);
XmlTypeMapElementInfo_t3184170653 * L_54 = ListMap_FindElement_m2886457511(L_50, L_51, L_52, L_53, /*hidden argument*/NULL);
V_9 = L_54;
XmlTypeMapElementInfo_t3184170653 * L_55 = V_9;
if (!L_55)
{
goto IL_0130;
}
}
{
StringBuilder_t3822575854 * L_56 = ___targetString;
if (L_56)
{
goto IL_0130;
}
}
{
XmlTypeMapElementInfo_t3184170653 * L_57 = V_9;
Il2CppObject * L_58 = V_8;
XmlSerializationWriterInterpreter_WriteMemberElement_m884687583(__this, L_57, L_58, /*hidden argument*/NULL);
goto IL_017b;
}
IL_0130:
{
XmlTypeMapElementInfo_t3184170653 * L_59 = V_9;
if (!L_59)
{
goto IL_016b;
}
}
{
StringBuilder_t3822575854 * L_60 = ___targetString;
if (!L_60)
{
goto IL_016b;
}
}
{
StringBuilder_t3822575854 * L_61 = ___targetString;
XmlTypeMapElementInfo_t3184170653 * L_62 = V_9;
NullCheck(L_62);
XmlTypeMapping_t988104027 * L_63 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_62, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_64 = V_9;
NullCheck(L_64);
TypeData_t3837952962 * L_65 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_64, /*hidden argument*/NULL);
Il2CppObject * L_66 = V_8;
String_t* L_67 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_63, L_65, L_66, /*hidden argument*/NULL);
NullCheck(L_61);
StringBuilder_t3822575854 * L_68 = StringBuilder_Append_m3898090075(L_61, L_67, /*hidden argument*/NULL);
NullCheck(L_68);
StringBuilder_Append_m3898090075(L_68, _stringLiteral32, /*hidden argument*/NULL);
goto IL_017b;
}
IL_016b:
{
Il2CppObject * L_69 = V_8;
if (!L_69)
{
goto IL_017b;
}
}
{
Il2CppObject * L_70 = V_8;
Exception_t1967233988 * L_71 = XmlSerializationWriter_CreateUnknownTypeException_m2000708971(__this, L_70, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_71);
}
IL_017b:
{
int32_t L_72 = V_7;
V_7 = ((int32_t)((int32_t)L_72+(int32_t)1));
}
IL_0181:
{
int32_t L_73 = V_7;
int32_t L_74 = V_4;
if ((((int32_t)L_73) < ((int32_t)L_74)))
{
goto IL_00ee;
}
}
{
goto IL_0266;
}
IL_018f:
{
Il2CppObject * L_75 = ___ob;
if (!((Il2CppObject *)IsInst(L_75, IEnumerable_t287189635_il2cpp_TypeInfo_var)))
{
goto IL_025b;
}
}
{
Il2CppObject * L_76 = ___ob;
V_10 = ((Il2CppObject *)Castclass(L_76, IEnumerable_t287189635_il2cpp_TypeInfo_var));
Il2CppObject * L_77 = V_10;
NullCheck(L_77);
Il2CppObject * L_78 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t287189635_il2cpp_TypeInfo_var, L_77);
V_12 = L_78;
}
IL_01ad:
try
{ // begin try (depth: 1)
{
goto IL_022f;
}
IL_01b2:
{
Il2CppObject * L_79 = V_12;
NullCheck(L_79);
Il2CppObject * L_80 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_79);
V_11 = L_80;
ListMap_t2001748316 * L_81 = ___map;
Il2CppObject * L_82 = ___container;
Il2CppObject * L_83 = V_11;
NullCheck(L_81);
XmlTypeMapElementInfo_t3184170653 * L_84 = ListMap_FindElement_m2886457511(L_81, L_82, (-1), L_83, /*hidden argument*/NULL);
V_13 = L_84;
XmlTypeMapElementInfo_t3184170653 * L_85 = V_13;
if (!L_85)
{
goto IL_01e4;
}
}
IL_01ce:
{
StringBuilder_t3822575854 * L_86 = ___targetString;
if (L_86)
{
goto IL_01e4;
}
}
IL_01d5:
{
XmlTypeMapElementInfo_t3184170653 * L_87 = V_13;
Il2CppObject * L_88 = V_11;
XmlSerializationWriterInterpreter_WriteMemberElement_m884687583(__this, L_87, L_88, /*hidden argument*/NULL);
goto IL_022f;
}
IL_01e4:
{
XmlTypeMapElementInfo_t3184170653 * L_89 = V_13;
if (!L_89)
{
goto IL_021f;
}
}
IL_01eb:
{
StringBuilder_t3822575854 * L_90 = ___targetString;
if (!L_90)
{
goto IL_021f;
}
}
IL_01f2:
{
StringBuilder_t3822575854 * L_91 = ___targetString;
XmlTypeMapElementInfo_t3184170653 * L_92 = V_13;
NullCheck(L_92);
XmlTypeMapping_t988104027 * L_93 = XmlTypeMapElementInfo_get_MappedType_m2737322658(L_92, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_94 = V_13;
NullCheck(L_94);
TypeData_t3837952962 * L_95 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_94, /*hidden argument*/NULL);
Il2CppObject * L_96 = V_11;
String_t* L_97 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_93, L_95, L_96, /*hidden argument*/NULL);
NullCheck(L_91);
StringBuilder_t3822575854 * L_98 = StringBuilder_Append_m3898090075(L_91, L_97, /*hidden argument*/NULL);
NullCheck(L_98);
StringBuilder_Append_m3898090075(L_98, _stringLiteral32, /*hidden argument*/NULL);
goto IL_022f;
}
IL_021f:
{
Il2CppObject * L_99 = V_11;
if (!L_99)
{
goto IL_022f;
}
}
IL_0226:
{
Il2CppObject * L_100 = V_11;
Exception_t1967233988 * L_101 = XmlSerializationWriter_CreateUnknownTypeException_m2000708971(__this, L_100, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_101);
}
IL_022f:
{
Il2CppObject * L_102 = V_12;
NullCheck(L_102);
bool L_103 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_102);
if (L_103)
{
goto IL_01b2;
}
}
IL_023b:
{
IL2CPP_LEAVE(0x256, FINALLY_0240);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0240;
}
FINALLY_0240:
{ // begin finally (depth: 1)
{
Il2CppObject * L_104 = V_12;
V_14 = ((Il2CppObject *)IsInst(L_104, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_105 = V_14;
if (L_105)
{
goto IL_024e;
}
}
IL_024d:
{
IL2CPP_END_FINALLY(576)
}
IL_024e:
{
Il2CppObject * L_106 = V_14;
NullCheck(L_106);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_106);
IL2CPP_END_FINALLY(576)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(576)
{
IL2CPP_JUMP_TBL(0x256, IL_0256)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0256:
{
goto IL_0266;
}
IL_025b:
{
Exception_t1967233988 * L_107 = (Exception_t1967233988 *)il2cpp_codegen_object_new(Exception_t1967233988_il2cpp_TypeInfo_var);
Exception__ctor_m3870771296(L_107, _stringLiteral4251254641, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_107);
}
IL_0266:
{
return;
}
}
// System.Int32 System.Xml.Serialization.XmlSerializationWriterInterpreter::GetListCount(System.Xml.Serialization.TypeData,System.Object)
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern TypeInfo* Int32_t2847414787_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral65298671;
extern const uint32_t XmlSerializationWriterInterpreter_GetListCount_m1323969298_MetadataUsageId;
extern "C" int32_t XmlSerializationWriterInterpreter_GetListCount_m1323969298 (XmlSerializationWriterInterpreter_t1671227756 * __this, TypeData_t3837952962 * ___listType, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_GetListCount_m1323969298_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
TypeData_t3837952962 * L_0 = ___listType;
NullCheck(L_0);
Type_t * L_1 = TypeData_get_Type_m2191724548(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsArray() */, L_1);
if (!L_2)
{
goto IL_001c;
}
}
{
Il2CppObject * L_3 = ___ob;
NullCheck(((Il2CppArray *)CastclassClass(L_3, Il2CppArray_il2cpp_TypeInfo_var)));
int32_t L_4 = Array_get_Length_m1203127607(((Il2CppArray *)CastclassClass(L_3, Il2CppArray_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_4;
}
IL_001c:
{
TypeData_t3837952962 * L_5 = ___listType;
NullCheck(L_5);
Type_t * L_6 = TypeData_get_Type_m2191724548(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
PropertyInfo_t * L_7 = VirtFuncInvoker1< PropertyInfo_t *, String_t* >::Invoke(62 /* System.Reflection.PropertyInfo System.Type::GetProperty(System.String) */, L_6, _stringLiteral65298671);
Il2CppObject * L_8 = ___ob;
NullCheck(L_7);
Il2CppObject * L_9 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_7, L_8, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
return ((*(int32_t*)((int32_t*)UnBox (L_9, Int32_t2847414787_il2cpp_TypeInfo_var))));
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAnyElementContent(System.Xml.Serialization.XmlTypeMapMemberAnyElement,System.Object)
extern const Il2CppType* XmlElement_t3562928333_0_0_0_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern TypeInfo* Il2CppArray_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlNode_t3592213601_il2cpp_TypeInfo_var;
extern TypeInfo* XmlElement_t3562928333_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_WriteAnyElementContent_m4045039636_MetadataUsageId;
extern "C" void XmlSerializationWriterInterpreter_WriteAnyElementContent_m4045039636 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapMemberAnyElement_t2899433779 * ___member, Il2CppObject * ___memberValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_WriteAnyElementContent_m4045039636_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppArray * V_0 = NULL;
XmlNode_t3592213601 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapMemberAnyElement_t2899433779 * L_0 = ___member;
NullCheck(L_0);
TypeData_t3837952962 * L_1 = XmlTypeMapMember_get_TypeData_m3428473262(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
Type_t * L_2 = TypeData_get_Type_m2191724548(L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlElement_t3562928333_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3))))
{
goto IL_0026;
}
}
{
ObjectU5BU5D_t11523773* L_4 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_5 = ___memberValue;
NullCheck(L_4);
IL2CPP_ARRAY_BOUNDS_CHECK(L_4, 0);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_5);
___memberValue = (Il2CppObject *)L_4;
}
IL_0026:
{
Il2CppObject * L_6 = ___memberValue;
V_0 = ((Il2CppArray *)CastclassClass(L_6, Il2CppArray_il2cpp_TypeInfo_var));
Il2CppArray * L_7 = V_0;
NullCheck(L_7);
Il2CppObject * L_8 = VirtFuncInvoker0< Il2CppObject * >::Invoke(4 /* System.Collections.IEnumerator System.Array::GetEnumerator() */, L_7);
V_2 = L_8;
}
IL_0034:
try
{ // begin try (depth: 1)
{
goto IL_00c7;
}
IL_0039:
{
Il2CppObject * L_9 = V_2;
NullCheck(L_9);
Il2CppObject * L_10 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_9);
V_1 = ((XmlNode_t3592213601 *)CastclassClass(L_10, XmlNode_t3592213601_il2cpp_TypeInfo_var));
XmlNode_t3592213601 * L_11 = V_1;
if (!((XmlElement_t3562928333 *)IsInstClass(L_11, XmlElement_t3562928333_il2cpp_TypeInfo_var)))
{
goto IL_00bb;
}
}
IL_0050:
{
XmlTypeMapMemberAnyElement_t2899433779 * L_12 = ___member;
XmlNode_t3592213601 * L_13 = V_1;
NullCheck(L_13);
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlNode::get_Name() */, L_13);
XmlNode_t3592213601 * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_15);
NullCheck(L_12);
bool L_17 = XmlTypeMapMemberAnyElement_IsElementDefined_m187225571(L_12, L_14, L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00a3;
}
}
IL_0067:
{
int32_t L_18 = __this->get__format_9();
if ((!(((uint32_t)L_18) == ((uint32_t)1))))
{
goto IL_008b;
}
}
IL_0073:
{
XmlNode_t3592213601 * L_19 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_20 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
String_t* L_21 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlSerializationWriter_WriteElementLiteral_m3283896518(__this, L_19, L_20, L_21, (bool)0, (bool)1, /*hidden argument*/NULL);
goto IL_009e;
}
IL_008b:
{
XmlNode_t3592213601 * L_22 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_23 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
String_t* L_24 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlSerializationWriter_WriteElementEncoded_m3487212261(__this, L_22, L_23, L_24, (bool)0, (bool)1, /*hidden argument*/NULL);
}
IL_009e:
{
goto IL_00b6;
}
IL_00a3:
{
XmlNode_t3592213601 * L_25 = V_1;
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlNode::get_Name() */, L_25);
XmlNode_t3592213601 * L_27 = V_1;
NullCheck(L_27);
String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_27);
Exception_t1967233988 * L_29 = XmlSerializationWriter_CreateUnknownAnyElementException_m4111638859(__this, L_26, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29);
}
IL_00b6:
{
goto IL_00c7;
}
IL_00bb:
{
XmlNode_t3592213601 * L_30 = V_1;
XmlWriter_t89522450 * L_31 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
NullCheck(L_30);
VirtActionInvoker1< XmlWriter_t89522450 * >::Invoke(37 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_30, L_31);
}
IL_00c7:
{
Il2CppObject * L_32 = V_2;
NullCheck(L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_0039;
}
}
IL_00d2:
{
IL2CPP_LEAVE(0xE9, FINALLY_00d7);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00d7;
}
FINALLY_00d7:
{ // begin finally (depth: 1)
{
Il2CppObject * L_34 = V_2;
V_3 = ((Il2CppObject *)IsInst(L_34, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_35 = V_3;
if (L_35)
{
goto IL_00e2;
}
}
IL_00e1:
{
IL2CPP_END_FINALLY(215)
}
IL_00e2:
{
Il2CppObject * L_36 = V_3;
NullCheck(L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_36);
IL2CPP_END_FINALLY(215)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(215)
{
IL2CPP_JUMP_TBL(0xE9, IL_00e9)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00e9:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String)
extern "C" void XmlSerializationWriterInterpreter_WritePrimitiveElement_m191590282 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, String_t* ___element, String_t* ___namesp, const MethodInfo* method)
{
{
XmlWriter_t89522450 * L_0 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
XmlTypeMapping_t988104027 * L_2 = ___typeMap;
NullCheck(L_2);
TypeData_t3837952962 * L_3 = XmlTypeMapping_get_TypeData_m3898113510(L_2, /*hidden argument*/NULL);
Il2CppObject * L_4 = ___ob;
String_t* L_5 = XmlSerializationWriterInterpreter_GetStringValue_m4202024733(__this, L_1, L_3, L_4, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_0, L_5);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String)
extern "C" void XmlSerializationWriterInterpreter_WriteEnumElement_m3368888210 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, String_t* ___element, String_t* ___namesp, const MethodInfo* method)
{
{
XmlWriter_t89522450 * L_0 = XmlSerializationWriter_get_Writer_m1690548674(__this, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
Il2CppObject * L_2 = ___ob;
String_t* L_3 = XmlSerializationWriterInterpreter_GetEnumXmlValue_m4038408248(__this, L_1, L_2, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker1< String_t* >::Invoke(27 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_0, L_3);
return;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetStringValue(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Object)
extern const Il2CppType* XmlQualifiedName_t176365656_0_0_0_var;
extern TypeInfo* StringBuilder_t3822575854_il2cpp_TypeInfo_var;
extern TypeInfo* ListMap_t2001748316_il2cpp_TypeInfo_var;
extern TypeInfo* Type_t_il2cpp_TypeInfo_var;
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_GetStringValue_m4202024733_MetadataUsageId;
extern "C" String_t* XmlSerializationWriterInterpreter_GetStringValue_m4202024733 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, TypeData_t3837952962 * ___type, Il2CppObject * ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_GetStringValue_m4202024733_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
StringBuilder_t3822575854 * V_0 = NULL;
{
TypeData_t3837952962 * L_0 = ___type;
NullCheck(L_0);
int32_t L_1 = TypeData_get_SchemaType_m1693934194(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)3))))
{
goto IL_0040;
}
}
{
Il2CppObject * L_2 = ___value;
if (L_2)
{
goto IL_0014;
}
}
{
return (String_t*)NULL;
}
IL_0014:
{
StringBuilder_t3822575854 * L_3 = (StringBuilder_t3822575854 *)il2cpp_codegen_object_new(StringBuilder_t3822575854_il2cpp_TypeInfo_var);
StringBuilder__ctor_m135953004(L_3, /*hidden argument*/NULL);
V_0 = L_3;
XmlTypeMapping_t988104027 * L_4 = ___typeMap;
NullCheck(L_4);
TypeData_t3837952962 * L_5 = XmlTypeMapping_get_TypeData_m3898113510(L_4, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_6 = ___typeMap;
NullCheck(L_6);
ObjectMap_t669501211 * L_7 = XmlMapping_get_ObjectMap_m3032707184(L_6, /*hidden argument*/NULL);
Il2CppObject * L_8 = ___value;
StringBuilder_t3822575854 * L_9 = V_0;
XmlSerializationWriterInterpreter_WriteListContent_m4184880763(__this, NULL, L_5, ((ListMap_t2001748316 *)CastclassClass(L_7, ListMap_t2001748316_il2cpp_TypeInfo_var)), L_8, L_9, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = StringBuilder_ToString_m350379841(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
String_t* L_12 = String_Trim_m1030489823(L_11, /*hidden argument*/NULL);
return L_12;
}
IL_0040:
{
TypeData_t3837952962 * L_13 = ___type;
NullCheck(L_13);
int32_t L_14 = TypeData_get_SchemaType_m1693934194(L_13, /*hidden argument*/NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)2))))
{
goto IL_0055;
}
}
{
XmlTypeMapping_t988104027 * L_15 = ___typeMap;
Il2CppObject * L_16 = ___value;
String_t* L_17 = XmlSerializationWriterInterpreter_GetEnumXmlValue_m4038408248(__this, L_15, L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0055:
{
TypeData_t3837952962 * L_18 = ___type;
NullCheck(L_18);
Type_t * L_19 = TypeData_get_Type_m2191724548(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, LoadTypeToken(XmlQualifiedName_t176365656_0_0_0_var), /*hidden argument*/NULL);
if ((!(((Il2CppObject*)(Type_t *)L_19) == ((Il2CppObject*)(Type_t *)L_20))))
{
goto IL_0077;
}
}
{
Il2CppObject * L_21 = ___value;
String_t* L_22 = XmlSerializationWriter_FromXmlQualifiedName_m2747019346(__this, ((XmlQualifiedName_t176365656 *)CastclassClass(L_21, XmlQualifiedName_t176365656_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_22;
}
IL_0077:
{
Il2CppObject * L_23 = ___value;
if (L_23)
{
goto IL_007f;
}
}
{
return (String_t*)NULL;
}
IL_007f:
{
TypeData_t3837952962 * L_24 = ___type;
Il2CppObject * L_25 = ___value;
String_t* L_26 = XmlCustomFormatter_ToXmlString_m1862488943(NULL /*static, unused*/, L_24, L_25, /*hidden argument*/NULL);
return L_26;
}
}
// System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetEnumXmlValue(System.Xml.Serialization.XmlTypeMapping,System.Object)
extern TypeInfo* EnumMap_t228974105_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializationWriterInterpreter_GetEnumXmlValue_m4038408248_MetadataUsageId;
extern "C" String_t* XmlSerializationWriterInterpreter_GetEnumXmlValue_m4038408248 (XmlSerializationWriterInterpreter_t1671227756 * __this, XmlTypeMapping_t988104027 * ___typeMap, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializationWriterInterpreter_GetEnumXmlValue_m4038408248_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
EnumMap_t228974105 * V_0 = NULL;
{
Il2CppObject * L_0 = ___ob;
if (L_0)
{
goto IL_0008;
}
}
{
return (String_t*)NULL;
}
IL_0008:
{
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
NullCheck(L_1);
ObjectMap_t669501211 * L_2 = XmlMapping_get_ObjectMap_m3032707184(L_1, /*hidden argument*/NULL);
V_0 = ((EnumMap_t228974105 *)CastclassClass(L_2, EnumMap_t228974105_il2cpp_TypeInfo_var));
EnumMap_t228974105 * L_3 = V_0;
XmlTypeMapping_t988104027 * L_4 = ___typeMap;
NullCheck(L_4);
String_t* L_5 = XmlTypeMapping_get_TypeFullName_m420567886(L_4, /*hidden argument*/NULL);
Il2CppObject * L_6 = ___ob;
NullCheck(L_3);
String_t* L_7 = EnumMap_GetXmlName_m407677947(L_3, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationWriterInterpreter,System.Xml.Serialization.XmlTypeMapping)
extern "C" void CallbackInfo__ctor_m3751330266 (CallbackInfo_t2288427699 * __this, XmlSerializationWriterInterpreter_t1671227756 * ___swi, XmlTypeMapping_t988104027 * ___typeMap, const MethodInfo* method)
{
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlSerializationWriterInterpreter_t1671227756 * L_0 = ___swi;
__this->set__swi_0(L_0);
XmlTypeMapping_t988104027 * L_1 = ___typeMap;
__this->set__typeMap_1(L_1);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteObject(System.Object)
extern "C" void CallbackInfo_WriteObject_m1039829311 (CallbackInfo_t2288427699 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
{
XmlSerializationWriterInterpreter_t1671227756 * L_0 = __this->get__swi_0();
XmlTypeMapping_t988104027 * L_1 = __this->get__typeMap_1();
Il2CppObject * L_2 = ___ob;
XmlTypeMapping_t988104027 * L_3 = __this->get__typeMap_1();
NullCheck(L_3);
String_t* L_4 = XmlMapping_get_ElementName_m2753779381(L_3, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_5 = __this->get__typeMap_1();
NullCheck(L_5);
String_t* L_6 = XmlMapping_get_Namespace_m4151275177(L_5, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker7< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)0, (bool)0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteEnum(System.Object)
extern "C" void CallbackInfo_WriteEnum_m2879433213 (CallbackInfo_t2288427699 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
{
XmlSerializationWriterInterpreter_t1671227756 * L_0 = __this->get__swi_0();
XmlTypeMapping_t988104027 * L_1 = __this->get__typeMap_1();
Il2CppObject * L_2 = ___ob;
XmlTypeMapping_t988104027 * L_3 = __this->get__typeMap_1();
NullCheck(L_3);
String_t* L_4 = XmlMapping_get_ElementName_m2753779381(L_3, /*hidden argument*/NULL);
XmlTypeMapping_t988104027 * L_5 = __this->get__typeMap_1();
NullCheck(L_5);
String_t* L_6 = XmlMapping_get_Namespace_m4151275177(L_5, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker7< XmlTypeMapping_t988104027 *, Il2CppObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)1, (bool)0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::.ctor(System.Type)
extern "C" void XmlSerializer__ctor_m1894928041 (XmlSerializer_t1888860807 * __this, Type_t * ___type, const MethodInfo* method)
{
{
Type_t * L_0 = ___type;
XmlSerializer__ctor_m30055153(__this, L_0, (XmlAttributeOverrides_t186122464 *)NULL, (TypeU5BU5D_t3431720054*)(TypeU5BU5D_t3431720054*)NULL, (XmlRootAttribute_t2483700417 *)NULL, (String_t*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::.ctor(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String)
extern TypeInfo* ArgumentNullException_t3214793280_il2cpp_TypeInfo_var;
extern TypeInfo* XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3575610;
extern const uint32_t XmlSerializer__ctor_m30055153_MetadataUsageId;
extern "C" void XmlSerializer__ctor_m30055153 (XmlSerializer_t1888860807 * __this, Type_t * ___type, XmlAttributeOverrides_t186122464 * ___overrides, TypeU5BU5D_t3431720054* ___extraTypes, XmlRootAttribute_t2483700417 * ___root, String_t* ___defaultNamespace, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer__ctor_m30055153_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlReflectionImporter_t3346079314 * V_0 = NULL;
Type_t * V_1 = NULL;
TypeU5BU5D_t3431720054* V_2 = NULL;
int32_t V_3 = 0;
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t3214793280 * L_1 = (ArgumentNullException_t3214793280 *)il2cpp_codegen_object_new(ArgumentNullException_t3214793280_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m135444188(L_1, _stringLiteral3575610, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0017:
{
XmlAttributeOverrides_t186122464 * L_2 = ___overrides;
String_t* L_3 = ___defaultNamespace;
XmlReflectionImporter_t3346079314 * L_4 = (XmlReflectionImporter_t3346079314 *)il2cpp_codegen_object_new(XmlReflectionImporter_t3346079314_il2cpp_TypeInfo_var);
XmlReflectionImporter__ctor_m3546538387(L_4, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
TypeU5BU5D_t3431720054* L_5 = ___extraTypes;
if (!L_5)
{
goto IL_0047;
}
}
{
TypeU5BU5D_t3431720054* L_6 = ___extraTypes;
V_2 = L_6;
V_3 = 0;
goto IL_003e;
}
IL_002f:
{
TypeU5BU5D_t3431720054* L_7 = V_2;
int32_t L_8 = V_3;
NullCheck(L_7);
IL2CPP_ARRAY_BOUNDS_CHECK(L_7, L_8);
int32_t L_9 = L_8;
V_1 = ((L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)));
XmlReflectionImporter_t3346079314 * L_10 = V_0;
Type_t * L_11 = V_1;
NullCheck(L_10);
XmlReflectionImporter_IncludeType_m646437332(L_10, L_11, /*hidden argument*/NULL);
int32_t L_12 = V_3;
V_3 = ((int32_t)((int32_t)L_12+(int32_t)1));
}
IL_003e:
{
int32_t L_13 = V_3;
TypeU5BU5D_t3431720054* L_14 = V_2;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_14)->max_length)))))))
{
goto IL_002f;
}
}
IL_0047:
{
XmlReflectionImporter_t3346079314 * L_15 = V_0;
Type_t * L_16 = ___type;
XmlRootAttribute_t2483700417 * L_17 = ___root;
String_t* L_18 = ___defaultNamespace;
NullCheck(L_15);
XmlTypeMapping_t988104027 * L_19 = XmlReflectionImporter_ImportTypeMapping_m4129187674(L_15, L_16, L_17, L_18, /*hidden argument*/NULL);
__this->set_typeMapping_5(L_19);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::.cctor()
extern TypeInfo* XmlSerializer_t1888860807_il2cpp_TypeInfo_var;
extern TypeInfo* Hashtable_t3875263730_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3521;
extern const uint32_t XmlSerializer__cctor_m1855149789_MetadataUsageId;
extern "C" void XmlSerializer__cctor_m1855149789 (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer__cctor_m1855149789_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t G_B3_0 = 0;
{
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_backgroundGeneration_1((bool)1);
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_deleteTempFiles_2((bool)1);
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_generatorFallback_3((bool)1);
Hashtable_t3875263730 * L_0 = (Hashtable_t3875263730 *)il2cpp_codegen_object_new(Hashtable_t3875263730_il2cpp_TypeInfo_var);
Hashtable__ctor_m1514037738(L_0, /*hidden argument*/NULL);
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_serializerTypes_7(L_0);
V_0 = (String_t*)NULL;
V_1 = (String_t*)NULL;
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_generationThreshold_0((-1));
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_backgroundGeneration_1((bool)0);
String_t* L_1 = V_0;
if (!L_1)
{
goto IL_003f;
}
}
{
String_t* L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_3 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_2, _stringLiteral3521, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0040;
}
IL_003f:
{
G_B3_0 = 1;
}
IL_0040:
{
((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->set_deleteTempFiles_2((bool)G_B3_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::OnUnknownAttribute(System.Xml.Serialization.XmlAttributeEventArgs)
extern "C" void XmlSerializer_OnUnknownAttribute_m1782989351 (XmlSerializer_t1888860807 * __this, XmlAttributeEventArgs_t966950224 * ___e, const MethodInfo* method)
{
{
XmlAttributeEventHandler_t1071444467 * L_0 = __this->get_onUnknownAttribute_8();
if (!L_0)
{
goto IL_0018;
}
}
{
XmlAttributeEventHandler_t1071444467 * L_1 = __this->get_onUnknownAttribute_8();
XmlAttributeEventArgs_t966950224 * L_2 = ___e;
NullCheck(L_1);
XmlAttributeEventHandler_Invoke_m337257336(L_1, __this, L_2, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::OnUnknownElement(System.Xml.Serialization.XmlElementEventArgs)
extern "C" void XmlSerializer_OnUnknownElement_m4145612583 (XmlSerializer_t1888860807 * __this, XmlElementEventArgs_t45031088 * ___e, const MethodInfo* method)
{
{
XmlElementEventHandler_t2494321811 * L_0 = __this->get_onUnknownElement_9();
if (!L_0)
{
goto IL_0018;
}
}
{
XmlElementEventHandler_t2494321811 * L_1 = __this->get_onUnknownElement_9();
XmlElementEventArgs_t45031088 * L_2 = ___e;
NullCheck(L_1);
XmlElementEventHandler_Invoke_m1452419704(L_1, __this, L_2, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::OnUnknownNode(System.Xml.Serialization.XmlNodeEventArgs)
extern "C" void XmlSerializer_OnUnknownNode_m2478101989 (XmlSerializer_t1888860807 * __this, XmlNodeEventArgs_t619448732 * ___e, const MethodInfo* method)
{
{
XmlNodeEventHandler_t3820646951 * L_0 = __this->get_onUnknownNode_10();
if (!L_0)
{
goto IL_0018;
}
}
{
XmlNodeEventHandler_t3820646951 * L_1 = __this->get_onUnknownNode_10();
XmlNodeEventArgs_t619448732 * L_2 = ___e;
NullCheck(L_1);
XmlNodeEventHandler_Invoke_m1420910658(L_1, __this, L_2, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::OnUnreferencedObject(System.Xml.Serialization.UnreferencedObjectEventArgs)
extern "C" void XmlSerializer_OnUnreferencedObject_m668557074 (XmlSerializer_t1888860807 * __this, UnreferencedObjectEventArgs_t3619478372 * ___e, const MethodInfo* method)
{
{
UnreferencedObjectEventHandler_t3729189727 * L_0 = __this->get_onUnreferencedObject_11();
if (!L_0)
{
goto IL_0018;
}
}
{
UnreferencedObjectEventHandler_t3729189727 * L_1 = __this->get_onUnreferencedObject_11();
UnreferencedObjectEventArgs_t3619478372 * L_2 = ___e;
NullCheck(L_1);
UnreferencedObjectEventHandler_Invoke_m3070837264(L_1, __this, L_2, /*hidden argument*/NULL);
}
IL_0018:
{
return;
}
}
// System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader()
extern TypeInfo* NotImplementedException_t1091014741_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_CreateReader_m2180376534_MetadataUsageId;
extern "C" XmlSerializationReader_t540589306 * XmlSerializer_CreateReader_m2180376534 (XmlSerializer_t1888860807 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_CreateReader_m2180376534_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NotImplementedException_t1091014741 * L_0 = (NotImplementedException_t1091014741 *)il2cpp_codegen_object_new(NotImplementedException_t1091014741_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m2063223793(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter()
extern TypeInfo* NotImplementedException_t1091014741_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_CreateWriter_m2391954902_MetadataUsageId;
extern "C" XmlSerializationWriter_t695994538 * XmlSerializer_CreateWriter_m2391954902 (XmlSerializer_t1888860807 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_CreateWriter_m2391954902_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NotImplementedException_t1091014741 * L_0 = (NotImplementedException_t1091014741 *)il2cpp_codegen_object_new(NotImplementedException_t1091014741_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m2063223793(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.IO.TextReader)
extern TypeInfo* XmlTextReader_t3719122287_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_Deserialize_m2138373791_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializer_Deserialize_m2138373791 (XmlSerializer_t1888860807 * __this, TextReader_t1534522647 * ___textReader, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_Deserialize_m2138373791_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTextReader_t3719122287 * V_0 = NULL;
{
TextReader_t1534522647 * L_0 = ___textReader;
XmlTextReader_t3719122287 * L_1 = (XmlTextReader_t3719122287 *)il2cpp_codegen_object_new(XmlTextReader_t3719122287_il2cpp_TypeInfo_var);
XmlTextReader__ctor_m381613755(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
XmlTextReader_t3719122287 * L_2 = V_0;
NullCheck(L_2);
XmlTextReader_set_Normalization_m549008905(L_2, (bool)1, /*hidden argument*/NULL);
XmlTextReader_t3719122287 * L_3 = V_0;
NullCheck(L_3);
XmlTextReader_set_WhitespaceHandling_m3261415883(L_3, 1, /*hidden argument*/NULL);
XmlTextReader_t3719122287 * L_4 = V_0;
Il2CppObject * L_5 = XmlSerializer_Deserialize_m1814899668(__this, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.XmlReader)
extern "C" Il2CppObject * XmlSerializer_Deserialize_m1814899668 (XmlSerializer_t1888860807 * __this, XmlReader_t4229084514 * ___xmlReader, const MethodInfo* method)
{
XmlSerializationReader_t540589306 * V_0 = NULL;
{
bool L_0 = __this->get_customSerializer_4();
if (!L_0)
{
goto IL_0017;
}
}
{
XmlSerializationReader_t540589306 * L_1 = VirtFuncInvoker0< XmlSerializationReader_t540589306 * >::Invoke(8 /* System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader() */, __this);
V_0 = L_1;
goto IL_0024;
}
IL_0017:
{
XmlMapping_t2344951413 * L_2 = __this->get_typeMapping_5();
XmlSerializationReader_t540589306 * L_3 = XmlSerializer_CreateReader_m2017555377(__this, L_2, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0024:
{
XmlSerializationReader_t540589306 * L_4 = V_0;
XmlReader_t4229084514 * L_5 = ___xmlReader;
NullCheck(L_4);
XmlSerializationReader_Initialize_m1765380850(L_4, L_5, __this, /*hidden argument*/NULL);
XmlSerializationReader_t540589306 * L_6 = V_0;
Il2CppObject * L_7 = VirtFuncInvoker1< Il2CppObject *, XmlSerializationReader_t540589306 * >::Invoke(10 /* System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.Serialization.XmlSerializationReader) */, __this, L_6);
return L_7;
}
}
// System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.Serialization.XmlSerializationReader)
extern TypeInfo* NotImplementedException_t1091014741_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidCastException_t922874574_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1274980128;
extern const uint32_t XmlSerializer_Deserialize_m549963018_MetadataUsageId;
extern "C" Il2CppObject * XmlSerializer_Deserialize_m549963018 (XmlSerializer_t1888860807 * __this, XmlSerializationReader_t540589306 * ___reader, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_Deserialize_m549963018_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Exception_t1967233988 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = __this->get_customSerializer_4();
if (!L_0)
{
goto IL_0011;
}
}
{
NotImplementedException_t1091014741 * L_1 = (NotImplementedException_t1091014741 *)il2cpp_codegen_object_new(NotImplementedException_t1091014741_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m2063223793(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
try
{ // begin try (depth: 1)
{
XmlSerializationReader_t540589306 * L_2 = ___reader;
if (!((XmlSerializationReaderInterpreter_t1865114396 *)IsInstClass(L_2, XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var)))
{
goto IL_002d;
}
}
IL_001c:
{
XmlSerializationReader_t540589306 * L_3 = ___reader;
NullCheck(((XmlSerializationReaderInterpreter_t1865114396 *)CastclassClass(L_3, XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var)));
Il2CppObject * L_4 = XmlSerializationReaderInterpreter_ReadRoot_m120589334(((XmlSerializationReaderInterpreter_t1865114396 *)CastclassClass(L_3, XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_1 = L_4;
goto IL_0074;
}
IL_002d:
{
SerializerData_t1946782844 * L_5 = __this->get_serializerData_6();
NullCheck(L_5);
MethodInfo_t * L_6 = L_5->get_ReaderMethod_1();
XmlSerializationReader_t540589306 * L_7 = ___reader;
NullCheck(L_6);
Il2CppObject * L_8 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_6, L_7, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
V_1 = L_8;
goto IL_0074;
}
IL_0045:
{
; // IL_0045: leave IL_0074
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t1967233988_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_004a;
throw e;
}
CATCH_004a:
{ // begin catch(System.Exception)
{
V_0 = ((Exception_t1967233988 *)__exception_local);
Exception_t1967233988 * L_9 = V_0;
if (((InvalidOperationException_t2420574324 *)IsInstClass(L_9, InvalidOperationException_t2420574324_il2cpp_TypeInfo_var)))
{
goto IL_0061;
}
}
IL_0056:
{
Exception_t1967233988 * L_10 = V_0;
if (!((InvalidCastException_t922874574 *)IsInstClass(L_10, InvalidCastException_t922874574_il2cpp_TypeInfo_var)))
{
goto IL_006d;
}
}
IL_0061:
{
Exception_t1967233988 * L_11 = V_0;
InvalidOperationException_t2420574324 * L_12 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2119621158(L_12, _stringLiteral1274980128, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12);
}
IL_006d:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local);
}
IL_006f:
{
goto IL_0074;
}
} // end catch (depth: 1)
IL_0074:
{
Il2CppObject * L_13 = V_1;
return L_13;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Object,System.Xml.Serialization.XmlSerializationWriter)
extern TypeInfo* NotImplementedException_t1091014741_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var;
extern TypeInfo* ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_Serialize_m2929681138_MetadataUsageId;
extern "C" void XmlSerializer_Serialize_m2929681138 (XmlSerializer_t1888860807 * __this, Il2CppObject * ___o, XmlSerializationWriter_t695994538 * ___writer, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_Serialize_m2929681138_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = __this->get_customSerializer_4();
if (!L_0)
{
goto IL_0011;
}
}
{
NotImplementedException_t1091014741 * L_1 = (NotImplementedException_t1091014741 *)il2cpp_codegen_object_new(NotImplementedException_t1091014741_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m2063223793(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
XmlSerializationWriter_t695994538 * L_2 = ___writer;
if (!((XmlSerializationWriterInterpreter_t1671227756 *)IsInstClass(L_2, XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var)))
{
goto IL_002d;
}
}
{
XmlSerializationWriter_t695994538 * L_3 = ___writer;
Il2CppObject * L_4 = ___o;
NullCheck(((XmlSerializationWriterInterpreter_t1671227756 *)CastclassClass(L_3, XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var)));
XmlSerializationWriterInterpreter_WriteRoot_m2582998282(((XmlSerializationWriterInterpreter_t1671227756 *)CastclassClass(L_3, XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var)), L_4, /*hidden argument*/NULL);
goto IL_0049;
}
IL_002d:
{
SerializerData_t1946782844 * L_5 = __this->get_serializerData_6();
NullCheck(L_5);
MethodInfo_t * L_6 = L_5->get_WriterMethod_3();
XmlSerializationWriter_t695994538 * L_7 = ___writer;
ObjectU5BU5D_t11523773* L_8 = ((ObjectU5BU5D_t11523773*)SZArrayNew(ObjectU5BU5D_t11523773_il2cpp_TypeInfo_var, (uint32_t)1));
Il2CppObject * L_9 = ___o;
NullCheck(L_8);
IL2CPP_ARRAY_BOUNDS_CHECK(L_8, 0);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_9);
NullCheck(L_6);
VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) */, L_6, L_7, L_8);
}
IL_0049:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.IO.TextWriter,System.Object)
extern TypeInfo* XmlTextWriter_t3874527519_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_Serialize_m1383081587_MetadataUsageId;
extern "C" void XmlSerializer_Serialize_m1383081587 (XmlSerializer_t1888860807 * __this, TextWriter_t1689927879 * ___textWriter, Il2CppObject * ___o, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_Serialize_m1383081587_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTextWriter_t3874527519 * V_0 = NULL;
{
TextWriter_t1689927879 * L_0 = ___textWriter;
XmlTextWriter_t3874527519 * L_1 = (XmlTextWriter_t3874527519 *)il2cpp_codegen_object_new(XmlTextWriter_t3874527519_il2cpp_TypeInfo_var);
XmlTextWriter__ctor_m3296703323(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
XmlTextWriter_t3874527519 * L_2 = V_0;
NullCheck(L_2);
XmlTextWriter_set_Formatting_m1915241301(L_2, 1, /*hidden argument*/NULL);
XmlTextWriter_t3874527519 * L_3 = V_0;
Il2CppObject * L_4 = ___o;
XmlSerializer_Serialize_m2870476721(__this, L_3, L_4, (XmlSerializerNamespaces_t2229116383 *)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Xml.XmlWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)
extern TypeInfo* XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var;
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* TargetInvocationException_t1980070524_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidCastException_t922874574_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral118990;
extern Il2CppCodeGenString* _stringLiteral1662954470;
extern Il2CppCodeGenString* _stringLiteral118985;
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern Il2CppCodeGenString* _stringLiteral1662606725;
extern const uint32_t XmlSerializer_Serialize_m2870476721_MetadataUsageId;
extern "C" void XmlSerializer_Serialize_m2870476721 (XmlSerializer_t1888860807 * __this, XmlWriter_t89522450 * ___writer, Il2CppObject * ___o, XmlSerializerNamespaces_t2229116383 * ___namespaces, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_Serialize_m2870476721_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSerializationWriter_t695994538 * V_0 = NULL;
Exception_t1967233988 * V_1 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
bool L_0 = __this->get_customSerializer_4();
if (!L_0)
{
goto IL_0017;
}
}
IL_000b:
{
XmlSerializationWriter_t695994538 * L_1 = VirtFuncInvoker0< XmlSerializationWriter_t695994538 * >::Invoke(9 /* System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter() */, __this);
V_0 = L_1;
goto IL_0024;
}
IL_0017:
{
XmlMapping_t2344951413 * L_2 = __this->get_typeMapping_5();
XmlSerializationWriter_t695994538 * L_3 = XmlSerializer_CreateWriter_m1885226417(__this, L_2, /*hidden argument*/NULL);
V_0 = L_3;
}
IL_0024:
{
XmlSerializerNamespaces_t2229116383 * L_4 = ___namespaces;
if (!L_4)
{
goto IL_0035;
}
}
IL_002a:
{
XmlSerializerNamespaces_t2229116383 * L_5 = ___namespaces;
NullCheck(L_5);
int32_t L_6 = XmlSerializerNamespaces_get_Count_m2432105050(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_005c;
}
}
IL_0035:
{
XmlSerializerNamespaces_t2229116383 * L_7 = (XmlSerializerNamespaces_t2229116383 *)il2cpp_codegen_object_new(XmlSerializerNamespaces_t2229116383_il2cpp_TypeInfo_var);
XmlSerializerNamespaces__ctor_m2004798200(L_7, /*hidden argument*/NULL);
___namespaces = L_7;
XmlSerializerNamespaces_t2229116383 * L_8 = ___namespaces;
NullCheck(L_8);
XmlSerializerNamespaces_Add_m10927015(L_8, _stringLiteral118990, _stringLiteral1662954470, /*hidden argument*/NULL);
XmlSerializerNamespaces_t2229116383 * L_9 = ___namespaces;
NullCheck(L_9);
XmlSerializerNamespaces_Add_m10927015(L_9, _stringLiteral118985, _stringLiteral1440052060, /*hidden argument*/NULL);
}
IL_005c:
{
XmlSerializationWriter_t695994538 * L_10 = V_0;
XmlWriter_t89522450 * L_11 = ___writer;
XmlSerializerNamespaces_t2229116383 * L_12 = ___namespaces;
NullCheck(L_10);
XmlSerializationWriter_Initialize_m4227547674(L_10, L_11, L_12, /*hidden argument*/NULL);
Il2CppObject * L_13 = ___o;
XmlSerializationWriter_t695994538 * L_14 = V_0;
VirtActionInvoker2< Il2CppObject *, XmlSerializationWriter_t695994538 * >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Object,System.Xml.Serialization.XmlSerializationWriter) */, __this, L_13, L_14);
XmlWriter_t89522450 * L_15 = ___writer;
NullCheck(L_15);
VirtActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::Flush() */, L_15);
goto IL_00b3;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t1967233988 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t1967233988_il2cpp_TypeInfo_var, e.ex->object.klass))
goto CATCH_0077;
throw e;
}
CATCH_0077:
{ // begin catch(System.Exception)
{
V_1 = ((Exception_t1967233988 *)__exception_local);
Exception_t1967233988 * L_16 = V_1;
if (!((TargetInvocationException_t1980070524 *)IsInstSealed(L_16, TargetInvocationException_t1980070524_il2cpp_TypeInfo_var)))
{
goto IL_008a;
}
}
IL_0083:
{
Exception_t1967233988 * L_17 = V_1;
NullCheck(L_17);
Exception_t1967233988 * L_18 = VirtFuncInvoker0< Exception_t1967233988 * >::Invoke(5 /* System.Exception System.Exception::get_InnerException() */, L_17);
V_1 = L_18;
}
IL_008a:
{
Exception_t1967233988 * L_19 = V_1;
if (((InvalidOperationException_t2420574324 *)IsInstClass(L_19, InvalidOperationException_t2420574324_il2cpp_TypeInfo_var)))
{
goto IL_00a0;
}
}
IL_0095:
{
Exception_t1967233988 * L_20 = V_1;
if (!((InvalidCastException_t922874574 *)IsInstClass(L_20, InvalidCastException_t922874574_il2cpp_TypeInfo_var)))
{
goto IL_00ac;
}
}
IL_00a0:
{
Exception_t1967233988 * L_21 = V_1;
InvalidOperationException_t2420574324 * L_22 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2119621158(L_22, _stringLiteral1662606725, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22);
}
IL_00ac:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local);
}
IL_00ae:
{
goto IL_00b3;
}
} // end catch (depth: 1)
IL_00b3:
{
return;
}
}
// System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter(System.Xml.Serialization.XmlMapping)
extern TypeInfo* XmlSerializer_t1888860807_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3703967641;
extern const uint32_t XmlSerializer_CreateWriter_m1885226417_MetadataUsageId;
extern "C" XmlSerializationWriter_t695994538 * XmlSerializer_CreateWriter_m1885226417 (XmlSerializer_t1888860807 * __this, XmlMapping_t2344951413 * ___typeMapping, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_CreateWriter_m1885226417_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSerializationWriter_t695994538 * V_0 = NULL;
XmlSerializer_t1888860807 * V_1 = NULL;
XmlSerializer_t1888860807 * V_2 = NULL;
SerializerData_t1946782844 * V_3 = NULL;
SerializerData_t1946782844 * V_4 = NULL;
XmlSerializationWriter_t695994538 * V_5 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_1 = __this;
XmlSerializer_t1888860807 * L_0 = V_1;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
}
IL_0008:
try
{ // begin try (depth: 1)
{
SerializerData_t1946782844 * L_1 = __this->get_serializerData_6();
if (!L_1)
{
goto IL_0046;
}
}
IL_0013:
{
SerializerData_t1946782844 * L_2 = __this->get_serializerData_6();
V_3 = L_2;
SerializerData_t1946782844 * L_3 = V_3;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
}
IL_0020:
try
{ // begin try (depth: 2)
SerializerData_t1946782844 * L_4 = __this->get_serializerData_6();
NullCheck(L_4);
XmlSerializationWriter_t695994538 * L_5 = SerializerData_CreateWriter_m334949429(L_4, /*hidden argument*/NULL);
V_0 = L_5;
IL2CPP_LEAVE(0x38, FINALLY_0031);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 2)
SerializerData_t1946782844 * L_6 = V_3;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(49)
} // end finally (depth: 2)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0038:
{
XmlSerializationWriter_t695994538 * L_7 = V_0;
if (!L_7)
{
goto IL_0046;
}
}
IL_003e:
{
XmlSerializationWriter_t695994538 * L_8 = V_0;
V_5 = L_8;
IL2CPP_LEAVE(0xE1, FINALLY_004b);
}
IL_0046:
{
IL2CPP_LEAVE(0x52, FINALLY_004b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
XmlSerializer_t1888860807 * L_9 = V_1;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(75)
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0xE1, IL_00e1)
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0052:
{
XmlMapping_t2344951413 * L_10 = ___typeMapping;
NullCheck(L_10);
SerializationSource_t3475287465 * L_11 = XmlMapping_get_Source_m4094841176(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_12 = VirtFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.Serialization.SerializationSource::get_CanBeGenerated() */, L_11);
if (!L_12)
{
goto IL_006d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializer_t1888860807_il2cpp_TypeInfo_var);
int32_t L_13 = ((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->get_generationThreshold_0();
if ((!(((uint32_t)L_13) == ((uint32_t)(-1)))))
{
goto IL_0074;
}
}
IL_006d:
{
XmlMapping_t2344951413 * L_14 = ___typeMapping;
XmlSerializationWriterInterpreter_t1671227756 * L_15 = (XmlSerializationWriterInterpreter_t1671227756 *)il2cpp_codegen_object_new(XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var);
XmlSerializationWriterInterpreter__ctor_m2777107676(L_15, L_14, /*hidden argument*/NULL);
return L_15;
}
IL_0074:
{
XmlMapping_t2344951413 * L_16 = ___typeMapping;
XmlSerializer_CheckGeneratedTypes_m3759268679(__this, L_16, /*hidden argument*/NULL);
V_2 = __this;
XmlSerializer_t1888860807 * L_17 = V_2;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_17, /*hidden argument*/NULL);
}
IL_0083:
try
{ // begin try (depth: 1)
{
SerializerData_t1946782844 * L_18 = __this->get_serializerData_6();
V_4 = L_18;
SerializerData_t1946782844 * L_19 = V_4;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_19, /*hidden argument*/NULL);
}
IL_0092:
try
{ // begin try (depth: 2)
SerializerData_t1946782844 * L_20 = __this->get_serializerData_6();
NullCheck(L_20);
XmlSerializationWriter_t695994538 * L_21 = SerializerData_CreateWriter_m334949429(L_20, /*hidden argument*/NULL);
V_0 = L_21;
IL2CPP_LEAVE(0xAB, FINALLY_00a3);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00a3;
}
FINALLY_00a3:
{ // begin finally (depth: 2)
SerializerData_t1946782844 * L_22 = V_4;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_22, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(163)
} // end finally (depth: 2)
IL2CPP_CLEANUP(163)
{
IL2CPP_JUMP_TBL(0xAB, IL_00ab)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00ab:
{
XmlSerializationWriter_t695994538 * L_23 = V_0;
if (!L_23)
{
goto IL_00b9;
}
}
IL_00b1:
{
XmlSerializationWriter_t695994538 * L_24 = V_0;
V_5 = L_24;
IL2CPP_LEAVE(0xE1, FINALLY_00d3);
}
IL_00b9:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializer_t1888860807_il2cpp_TypeInfo_var);
bool L_25 = ((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->get_generatorFallback_3();
if (L_25)
{
goto IL_00ce;
}
}
IL_00c3:
{
InvalidOperationException_t2420574324 * L_26 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_26, _stringLiteral3703967641, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26);
}
IL_00ce:
{
IL2CPP_LEAVE(0xDA, FINALLY_00d3);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00d3;
}
FINALLY_00d3:
{ // begin finally (depth: 1)
XmlSerializer_t1888860807 * L_27 = V_2;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_27, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(211)
} // end finally (depth: 1)
IL2CPP_CLEANUP(211)
{
IL2CPP_JUMP_TBL(0xE1, IL_00e1)
IL2CPP_JUMP_TBL(0xDA, IL_00da)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00da:
{
XmlMapping_t2344951413 * L_28 = ___typeMapping;
XmlSerializationWriterInterpreter_t1671227756 * L_29 = (XmlSerializationWriterInterpreter_t1671227756 *)il2cpp_codegen_object_new(XmlSerializationWriterInterpreter_t1671227756_il2cpp_TypeInfo_var);
XmlSerializationWriterInterpreter__ctor_m2777107676(L_29, L_28, /*hidden argument*/NULL);
return L_29;
}
IL_00e1:
{
XmlSerializationWriter_t695994538 * L_30 = V_5;
return L_30;
}
}
// System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader(System.Xml.Serialization.XmlMapping)
extern TypeInfo* XmlSerializer_t1888860807_il2cpp_TypeInfo_var;
extern TypeInfo* XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var;
extern TypeInfo* InvalidOperationException_t2420574324_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral3703967641;
extern const uint32_t XmlSerializer_CreateReader_m2017555377_MetadataUsageId;
extern "C" XmlSerializationReader_t540589306 * XmlSerializer_CreateReader_m2017555377 (XmlSerializer_t1888860807 * __this, XmlMapping_t2344951413 * ___typeMapping, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_CreateReader_m2017555377_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlSerializationReader_t540589306 * V_0 = NULL;
XmlSerializer_t1888860807 * V_1 = NULL;
XmlSerializer_t1888860807 * V_2 = NULL;
SerializerData_t1946782844 * V_3 = NULL;
SerializerData_t1946782844 * V_4 = NULL;
XmlSerializationReader_t540589306 * V_5 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_1 = __this;
XmlSerializer_t1888860807 * L_0 = V_1;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
}
IL_0008:
try
{ // begin try (depth: 1)
{
SerializerData_t1946782844 * L_1 = __this->get_serializerData_6();
if (!L_1)
{
goto IL_0046;
}
}
IL_0013:
{
SerializerData_t1946782844 * L_2 = __this->get_serializerData_6();
V_3 = L_2;
SerializerData_t1946782844 * L_3 = V_3;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
}
IL_0020:
try
{ // begin try (depth: 2)
SerializerData_t1946782844 * L_4 = __this->get_serializerData_6();
NullCheck(L_4);
XmlSerializationReader_t540589306 * L_5 = SerializerData_CreateReader_m533038293(L_4, /*hidden argument*/NULL);
V_0 = L_5;
IL2CPP_LEAVE(0x38, FINALLY_0031);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 2)
SerializerData_t1946782844 * L_6 = V_3;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(49)
} // end finally (depth: 2)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0038:
{
XmlSerializationReader_t540589306 * L_7 = V_0;
if (!L_7)
{
goto IL_0046;
}
}
IL_003e:
{
XmlSerializationReader_t540589306 * L_8 = V_0;
V_5 = L_8;
IL2CPP_LEAVE(0xE1, FINALLY_004b);
}
IL_0046:
{
IL2CPP_LEAVE(0x52, FINALLY_004b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
XmlSerializer_t1888860807 * L_9 = V_1;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(75)
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0xE1, IL_00e1)
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0052:
{
XmlMapping_t2344951413 * L_10 = ___typeMapping;
NullCheck(L_10);
SerializationSource_t3475287465 * L_11 = XmlMapping_get_Source_m4094841176(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
bool L_12 = VirtFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.Serialization.SerializationSource::get_CanBeGenerated() */, L_11);
if (!L_12)
{
goto IL_006d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializer_t1888860807_il2cpp_TypeInfo_var);
int32_t L_13 = ((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->get_generationThreshold_0();
if ((!(((uint32_t)L_13) == ((uint32_t)(-1)))))
{
goto IL_0074;
}
}
IL_006d:
{
XmlMapping_t2344951413 * L_14 = ___typeMapping;
XmlSerializationReaderInterpreter_t1865114396 * L_15 = (XmlSerializationReaderInterpreter_t1865114396 *)il2cpp_codegen_object_new(XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var);
XmlSerializationReaderInterpreter__ctor_m1586101900(L_15, L_14, /*hidden argument*/NULL);
return L_15;
}
IL_0074:
{
XmlMapping_t2344951413 * L_16 = ___typeMapping;
XmlSerializer_CheckGeneratedTypes_m3759268679(__this, L_16, /*hidden argument*/NULL);
V_2 = __this;
XmlSerializer_t1888860807 * L_17 = V_2;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_17, /*hidden argument*/NULL);
}
IL_0083:
try
{ // begin try (depth: 1)
{
SerializerData_t1946782844 * L_18 = __this->get_serializerData_6();
V_4 = L_18;
SerializerData_t1946782844 * L_19 = V_4;
Monitor_Enter_m476686225(NULL /*static, unused*/, L_19, /*hidden argument*/NULL);
}
IL_0092:
try
{ // begin try (depth: 2)
SerializerData_t1946782844 * L_20 = __this->get_serializerData_6();
NullCheck(L_20);
XmlSerializationReader_t540589306 * L_21 = SerializerData_CreateReader_m533038293(L_20, /*hidden argument*/NULL);
V_0 = L_21;
IL2CPP_LEAVE(0xAB, FINALLY_00a3);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00a3;
}
FINALLY_00a3:
{ // begin finally (depth: 2)
SerializerData_t1946782844 * L_22 = V_4;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_22, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(163)
} // end finally (depth: 2)
IL2CPP_CLEANUP(163)
{
IL2CPP_JUMP_TBL(0xAB, IL_00ab)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00ab:
{
XmlSerializationReader_t540589306 * L_23 = V_0;
if (!L_23)
{
goto IL_00b9;
}
}
IL_00b1:
{
XmlSerializationReader_t540589306 * L_24 = V_0;
V_5 = L_24;
IL2CPP_LEAVE(0xE1, FINALLY_00d3);
}
IL_00b9:
{
IL2CPP_RUNTIME_CLASS_INIT(XmlSerializer_t1888860807_il2cpp_TypeInfo_var);
bool L_25 = ((XmlSerializer_t1888860807_StaticFields*)XmlSerializer_t1888860807_il2cpp_TypeInfo_var->static_fields)->get_generatorFallback_3();
if (L_25)
{
goto IL_00ce;
}
}
IL_00c3:
{
InvalidOperationException_t2420574324 * L_26 = (InvalidOperationException_t2420574324 *)il2cpp_codegen_object_new(InvalidOperationException_t2420574324_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1485483280(L_26, _stringLiteral3703967641, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26);
}
IL_00ce:
{
IL2CPP_LEAVE(0xDA, FINALLY_00d3);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_00d3;
}
FINALLY_00d3:
{ // begin finally (depth: 1)
XmlSerializer_t1888860807 * L_27 = V_2;
Monitor_Exit_m2088237919(NULL /*static, unused*/, L_27, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(211)
} // end finally (depth: 1)
IL2CPP_CLEANUP(211)
{
IL2CPP_JUMP_TBL(0xE1, IL_00e1)
IL2CPP_JUMP_TBL(0xDA, IL_00da)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00da:
{
XmlMapping_t2344951413 * L_28 = ___typeMapping;
XmlSerializationReaderInterpreter_t1865114396 * L_29 = (XmlSerializationReaderInterpreter_t1865114396 *)il2cpp_codegen_object_new(XmlSerializationReaderInterpreter_t1865114396_il2cpp_TypeInfo_var);
XmlSerializationReaderInterpreter__ctor_m1586101900(L_29, L_28, /*hidden argument*/NULL);
return L_29;
}
IL_00e1:
{
XmlSerializationReader_t540589306 * L_30 = V_5;
return L_30;
}
}
// System.Void System.Xml.Serialization.XmlSerializer::CheckGeneratedTypes(System.Xml.Serialization.XmlMapping)
extern TypeInfo* NotImplementedException_t1091014741_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializer_CheckGeneratedTypes_m3759268679_MetadataUsageId;
extern "C" void XmlSerializer_CheckGeneratedTypes_m3759268679 (XmlSerializer_t1888860807 * __this, XmlMapping_t2344951413 * ___typeMapping, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializer_CheckGeneratedTypes_m3759268679_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NotImplementedException_t1091014741 * L_0 = (NotImplementedException_t1091014741 *)il2cpp_codegen_object_new(NotImplementedException_t1091014741_il2cpp_TypeInfo_var);
NotImplementedException__ctor_m2063223793(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer/SerializerData::CreateReader()
extern TypeInfo* XmlSerializationReader_t540589306_il2cpp_TypeInfo_var;
extern const uint32_t SerializerData_CreateReader_m533038293_MetadataUsageId;
extern "C" XmlSerializationReader_t540589306 * SerializerData_CreateReader_m533038293 (SerializerData_t1946782844 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (SerializerData_CreateReader_m533038293_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = __this->get_ReaderType_0();
if (!L_0)
{
goto IL_001c;
}
}
{
Type_t * L_1 = __this->get_ReaderType_0();
Il2CppObject * L_2 = Activator_CreateInstance_m1399154923(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
return ((XmlSerializationReader_t540589306 *)CastclassClass(L_2, XmlSerializationReader_t540589306_il2cpp_TypeInfo_var));
}
IL_001c:
{
XmlSerializerImplementation_t457041561 * L_3 = __this->get_Implementation_4();
if (!L_3)
{
goto IL_0033;
}
}
{
XmlSerializerImplementation_t457041561 * L_4 = __this->get_Implementation_4();
NullCheck(L_4);
XmlSerializationReader_t540589306 * L_5 = VirtFuncInvoker0< XmlSerializationReader_t540589306 * >::Invoke(4 /* System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializerImplementation::get_Reader() */, L_4);
return L_5;
}
IL_0033:
{
return (XmlSerializationReader_t540589306 *)NULL;
}
}
// System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer/SerializerData::CreateWriter()
extern TypeInfo* XmlSerializationWriter_t695994538_il2cpp_TypeInfo_var;
extern const uint32_t SerializerData_CreateWriter_m334949429_MetadataUsageId;
extern "C" XmlSerializationWriter_t695994538 * SerializerData_CreateWriter_m334949429 (SerializerData_t1946782844 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (SerializerData_CreateWriter_m334949429_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Type_t * L_0 = __this->get_WriterType_2();
if (!L_0)
{
goto IL_001c;
}
}
{
Type_t * L_1 = __this->get_WriterType_2();
Il2CppObject * L_2 = Activator_CreateInstance_m1399154923(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
return ((XmlSerializationWriter_t695994538 *)CastclassClass(L_2, XmlSerializationWriter_t695994538_il2cpp_TypeInfo_var));
}
IL_001c:
{
XmlSerializerImplementation_t457041561 * L_3 = __this->get_Implementation_4();
if (!L_3)
{
goto IL_0033;
}
}
{
XmlSerializerImplementation_t457041561 * L_4 = __this->get_Implementation_4();
NullCheck(L_4);
XmlSerializationWriter_t695994538 * L_5 = VirtFuncInvoker0< XmlSerializationWriter_t695994538 * >::Invoke(5 /* System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializerImplementation::get_Writer() */, L_4);
return L_5;
}
IL_0033:
{
return (XmlSerializationWriter_t695994538 *)NULL;
}
}
// System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializerImplementation::get_Reader()
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializerImplementation_get_Reader_m3611826389_MetadataUsageId;
extern "C" XmlSerializationReader_t540589306 * XmlSerializerImplementation_get_Reader_m3611826389 (XmlSerializerImplementation_t457041561 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializerImplementation_get_Reader_m3611826389_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NotSupportedException_t1374155497 * L_0 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m149930845(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializerImplementation::get_Writer()
extern TypeInfo* NotSupportedException_t1374155497_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializerImplementation_get_Writer_m3310456533_MetadataUsageId;
extern "C" XmlSerializationWriter_t695994538 * XmlSerializerImplementation_get_Writer_m3310456533 (XmlSerializerImplementation_t457041561 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializerImplementation_get_Writer_m3310456533_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
NotSupportedException_t1374155497 * L_0 = (NotSupportedException_t1374155497 *)il2cpp_codegen_object_new(NotSupportedException_t1374155497_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m149930845(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Xml.Serialization.XmlSerializerNamespaces::.ctor()
extern TypeInfo* ListDictionary_t4226329727_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializerNamespaces__ctor_m2004798200_MetadataUsageId;
extern "C" void XmlSerializerNamespaces__ctor_m2004798200 (XmlSerializerNamespaces_t2229116383 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializerNamespaces__ctor_m2004798200_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
ListDictionary_t4226329727 * L_0 = (ListDictionary_t4226329727 *)il2cpp_codegen_object_new(ListDictionary_t4226329727_il2cpp_TypeInfo_var);
ListDictionary__ctor_m1342781113(L_0, /*hidden argument*/NULL);
__this->set_namespaces_0(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlSerializerNamespaces::Add(System.String,System.String)
extern TypeInfo* XmlQualifiedName_t176365656_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializerNamespaces_Add_m10927015_MetadataUsageId;
extern "C" void XmlSerializerNamespaces_Add_m10927015 (XmlSerializerNamespaces_t2229116383 * __this, String_t* ___prefix, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializerNamespaces_Add_m10927015_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedName_t176365656 * V_0 = NULL;
{
String_t* L_0 = ___prefix;
String_t* L_1 = ___ns;
XmlQualifiedName_t176365656 * L_2 = (XmlQualifiedName_t176365656 *)il2cpp_codegen_object_new(XmlQualifiedName_t176365656_il2cpp_TypeInfo_var);
XmlQualifiedName__ctor_m2754617635(L_2, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
ListDictionary_t4226329727 * L_3 = __this->get_namespaces_0();
XmlQualifiedName_t176365656 * L_4 = V_0;
NullCheck(L_4);
String_t* L_5 = XmlQualifiedName_get_Name_m607016698(L_4, /*hidden argument*/NULL);
XmlQualifiedName_t176365656 * L_6 = V_0;
NullCheck(L_3);
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(10 /* System.Void System.Collections.Specialized.ListDictionary::set_Item(System.Object,System.Object) */, L_3, L_5, L_6);
return;
}
}
// System.Xml.XmlQualifiedName[] System.Xml.Serialization.XmlSerializerNamespaces::ToArray()
extern TypeInfo* XmlQualifiedNameU5BU5D_t781474633_il2cpp_TypeInfo_var;
extern TypeInfo* ICollection_t3761522009_il2cpp_TypeInfo_var;
extern const uint32_t XmlSerializerNamespaces_ToArray_m2329284233_MetadataUsageId;
extern "C" XmlQualifiedNameU5BU5D_t781474633* XmlSerializerNamespaces_ToArray_m2329284233 (XmlSerializerNamespaces_t2229116383 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlSerializerNamespaces_ToArray_m2329284233_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlQualifiedNameU5BU5D_t781474633* V_0 = NULL;
{
ListDictionary_t4226329727 * L_0 = __this->get_namespaces_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Collections.Specialized.ListDictionary::get_Count() */, L_0);
V_0 = ((XmlQualifiedNameU5BU5D_t781474633*)SZArrayNew(XmlQualifiedNameU5BU5D_t781474633_il2cpp_TypeInfo_var, (uint32_t)L_1));
ListDictionary_t4226329727 * L_2 = __this->get_namespaces_0();
NullCheck(L_2);
Il2CppObject * L_3 = VirtFuncInvoker0< Il2CppObject * >::Invoke(15 /* System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Values() */, L_2);
XmlQualifiedNameU5BU5D_t781474633* L_4 = V_0;
NullCheck(L_3);
InterfaceActionInvoker2< Il2CppArray *, int32_t >::Invoke(3 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_t3761522009_il2cpp_TypeInfo_var, L_3, (Il2CppArray *)(Il2CppArray *)L_4, 0);
XmlQualifiedNameU5BU5D_t781474633* L_5 = V_0;
return L_5;
}
}
// System.Int32 System.Xml.Serialization.XmlSerializerNamespaces::get_Count()
extern "C" int32_t XmlSerializerNamespaces_get_Count_m2432105050 (XmlSerializerNamespaces_t2229116383 * __this, const MethodInfo* method)
{
{
ListDictionary_t4226329727 * L_0 = __this->get_namespaces_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Collections.Specialized.ListDictionary::get_Count() */, L_0);
return L_1;
}
}
// System.Collections.Specialized.ListDictionary System.Xml.Serialization.XmlSerializerNamespaces::get_Namespaces()
extern "C" ListDictionary_t4226329727 * XmlSerializerNamespaces_get_Namespaces_m2487868879 (XmlSerializerNamespaces_t2229116383 * __this, const MethodInfo* method)
{
{
ListDictionary_t4226329727 * L_0 = __this->get_namespaces_0();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlTextAttribute::get_DataType()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTextAttribute_get_DataType_m3203282297_MetadataUsageId;
extern "C" String_t* XmlTextAttribute_get_DataType_m3203282297 (XmlTextAttribute_t1613374166 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTextAttribute_get_DataType_m3203282297_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_dataType_0();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_dataType_0();
return L_2;
}
}
// System.Type System.Xml.Serialization.XmlTextAttribute::get_Type()
extern "C" Type_t * XmlTextAttribute_get_Type_m1681470744 (XmlTextAttribute_t1613374166 * __this, const MethodInfo* method)
{
{
Type_t * L_0 = __this->get_type_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTextAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral83858907;
extern const uint32_t XmlTextAttribute_AddKeyHash_m2425140335_MetadataUsageId;
extern "C" void XmlTextAttribute_AddKeyHash_m2425140335 (XmlTextAttribute_t1613374166 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTextAttribute_AddKeyHash_m2425140335_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral83858907, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
Type_t * L_2 = __this->get_type_1();
KeyHelper_AddField_m2451117329(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_dataType_0();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
NullCheck(L_5);
StringBuilder_Append_m2143093878(L_5, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeAttribute::get_IncludeInSchema()
extern "C" bool XmlTypeAttribute_get_IncludeInSchema_m1947145965 (XmlTypeAttribute_t43505513 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get_includeInSchema_0();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlTypeAttribute::get_Namespace()
extern "C" String_t* XmlTypeAttribute_get_Namespace_m823455349 (XmlTypeAttribute_t43505513 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get_ns_1();
return L_0;
}
}
// System.String System.Xml.Serialization.XmlTypeAttribute::get_TypeName()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeAttribute_get_TypeName_m4236473005_MetadataUsageId;
extern "C" String_t* XmlTypeAttribute_get_TypeName_m4236473005 (XmlTypeAttribute_t43505513 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeAttribute_get_TypeName_m4236473005_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = __this->get_typeName_2();
if (L_0)
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
return L_1;
}
IL_0011:
{
String_t* L_2 = __this->get_typeName_2();
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlTypeAttribute::AddKeyHash(System.Text.StringBuilder)
extern Il2CppCodeGenString* _stringLiteral2704379;
extern const uint32_t XmlTypeAttribute_AddKeyHash_m1359859836_MetadataUsageId;
extern "C" void XmlTypeAttribute_AddKeyHash_m1359859836 (XmlTypeAttribute_t43505513 * __this, StringBuilder_t3822575854 * ___sb, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeAttribute_AddKeyHash_m1359859836_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
StringBuilder_t3822575854 * L_0 = ___sb;
NullCheck(L_0);
StringBuilder_Append_m3898090075(L_0, _stringLiteral2704379, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_1 = ___sb;
String_t* L_2 = __this->get_ns_1();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_1, 1, L_2, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_3 = ___sb;
String_t* L_4 = __this->get_typeName_2();
KeyHelper_AddField_m853061274(NULL /*static, unused*/, L_3, 2, L_4, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_5 = ___sb;
bool L_6 = __this->get_includeInSchema_0();
KeyHelper_AddField_m886151391(NULL /*static, unused*/, L_5, 4, L_6, /*hidden argument*/NULL);
StringBuilder_t3822575854 * L_7 = ___sb;
NullCheck(L_7);
StringBuilder_Append_m2143093878(L_7, ((int32_t)124), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::.ctor(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapElementInfo__ctor_m3598290163_MetadataUsageId;
extern "C" void XmlTypeMapElementInfo__ctor_m3598290163 (XmlTypeMapElementInfo_t3184170653 * __this, XmlTypeMapMember_t757519331 * ___member, TypeData_t3837952962 * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo__ctor_m3598290163_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_0 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
__this->set__namespace_1(L_0);
__this->set__wrappedElement_9((bool)1);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
XmlTypeMapMember_t757519331 * L_1 = ___member;
__this->set__member_3(L_1);
TypeData_t3837952962 * L_2 = ___type;
__this->set__type_8(L_2);
TypeData_t3837952962 * L_3 = ___type;
NullCheck(L_3);
bool L_4 = TypeData_get_IsValueType_m321491079(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0043;
}
}
{
TypeData_t3837952962 * L_5 = ___type;
NullCheck(L_5);
bool L_6 = TypeData_get_IsNullable_m3895772871(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0043;
}
}
{
__this->set__isNullable_5((bool)1);
}
IL_0043:
{
return;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData()
extern "C" TypeData_t3837952962 * XmlTypeMapElementInfo_get_TypeData_m2873544274 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = __this->get__type_8();
return L_0;
}
}
// System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue()
extern "C" Il2CppObject * XmlTypeMapElementInfo_get_ChoiceValue_m1518850154 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get__choiceValue_4();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ChoiceValue(System.Object)
extern "C" void XmlTypeMapElementInfo_set_ChoiceValue_m4143204969 (XmlTypeMapElementInfo_t3184170653 * __this, Il2CppObject * ___value, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___value;
__this->set__choiceValue_4(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName()
extern "C" String_t* XmlTypeMapElementInfo_get_ElementName_m1448879699 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__elementName_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String)
extern "C" void XmlTypeMapElementInfo_set_ElementName_m3071025056 (XmlTypeMapElementInfo_t3184170653 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__elementName_0(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace()
extern "C" String_t* XmlTypeMapElementInfo_get_Namespace_m1244892615 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__namespace_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String)
extern "C" void XmlTypeMapElementInfo_set_Namespace_m2703770860 (XmlTypeMapElementInfo_t3184170653 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__namespace_1(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeNamespace()
extern Il2CppCodeGenString* _stringLiteral1440052060;
extern const uint32_t XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611_MetadataUsageId;
extern "C" String_t* XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_get_DataTypeNamespace_m23896611_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapping_t988104027 * L_0 = __this->get__mappedType_7();
if (L_0)
{
goto IL_0011;
}
}
{
return _stringLiteral1440052060;
}
IL_0011:
{
XmlTypeMapping_t988104027 * L_1 = __this->get__mappedType_7();
NullCheck(L_1);
String_t* L_2 = XmlTypeMapping_get_XmlTypeNamespace_m3791467172(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeName()
extern "C" String_t* XmlTypeMapElementInfo_get_DataTypeName_m4068744677 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = __this->get__mappedType_7();
if (L_0)
{
goto IL_0017;
}
}
{
TypeData_t3837952962 * L_1 = XmlTypeMapElementInfo_get_TypeData_m2873544274(__this, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = TypeData_get_XmlType_m3918246226(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0017:
{
XmlTypeMapping_t988104027 * L_3 = __this->get__mappedType_7();
NullCheck(L_3);
String_t* L_4 = XmlTypeMapping_get_XmlType_m1769290969(L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::get_Form()
extern "C" int32_t XmlTypeMapElementInfo_get_Form_m1046644933 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__form_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Form(System.Xml.Schema.XmlSchemaForm)
extern "C" void XmlTypeMapElementInfo_set_Form_m269726242 (XmlTypeMapElementInfo_t3184170653 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__form_2(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType()
extern "C" XmlTypeMapping_t988104027 * XmlTypeMapElementInfo_get_MappedType_m2737322658 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = __this->get__mappedType_7();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_MappedType(System.Xml.Serialization.XmlTypeMapping)
extern "C" void XmlTypeMapElementInfo_set_MappedType_m1791664461 (XmlTypeMapElementInfo_t3184170653 * __this, XmlTypeMapping_t988104027 * ___value, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = ___value;
__this->set__mappedType_7(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsNullable()
extern "C" bool XmlTypeMapElementInfo_get_IsNullable_m2400854406 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get__isNullable_5();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsNullable(System.Boolean)
extern "C" void XmlTypeMapElementInfo_set_IsNullable_m75400169 (XmlTypeMapElementInfo_t3184170653 * __this, bool ___value, const MethodInfo* method)
{
{
bool L_0 = ___value;
__this->set__isNullable_5(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::get_Member()
extern "C" XmlTypeMapMember_t757519331 * XmlTypeMapElementInfo_get_Member_m101276455 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember_t757519331 * L_0 = __this->get__member_3();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_NestingLevel(System.Int32)
extern "C" void XmlTypeMapElementInfo_set_NestingLevel_m220994802 (XmlTypeMapElementInfo_t3184170653 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__nestingLevel_6(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_MultiReferenceType()
extern "C" bool XmlTypeMapElementInfo_get_MultiReferenceType_m3638335751 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = __this->get__mappedType_7();
if (!L_0)
{
goto IL_0017;
}
}
{
XmlTypeMapping_t988104027 * L_1 = __this->get__mappedType_7();
NullCheck(L_1);
bool L_2 = XmlTypeMapping_get_MultiReferenceType_m2426892065(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0017:
{
return (bool)0;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_WrappedElement()
extern "C" bool XmlTypeMapElementInfo_get_WrappedElement_m4167601554 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get__wrappedElement_9();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_WrappedElement(System.Boolean)
extern "C" void XmlTypeMapElementInfo_set_WrappedElement_m1591432437 (XmlTypeMapElementInfo_t3184170653 * __this, bool ___value, const MethodInfo* method)
{
{
bool L_0 = ___value;
__this->set__wrappedElement_9(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsTextElement()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1828005365;
extern const uint32_t XmlTypeMapElementInfo_get_IsTextElement_m554063468_MetadataUsageId;
extern "C" bool XmlTypeMapElementInfo_get_IsTextElement_m554063468 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_get_IsTextElement_m554063468_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = XmlTypeMapElementInfo_get_ElementName_m1448879699(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_1 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_0, _stringLiteral1828005365, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsTextElement(System.Boolean)
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral682530450;
extern Il2CppCodeGenString* _stringLiteral1828005365;
extern const uint32_t XmlTypeMapElementInfo_set_IsTextElement_m350767095_MetadataUsageId;
extern "C" void XmlTypeMapElementInfo_set_IsTextElement_m350767095 (XmlTypeMapElementInfo_t3184170653 * __this, bool ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_set_IsTextElement_m350767095_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___value;
if (L_0)
{
goto IL_0011;
}
}
{
Exception_t1967233988 * L_1 = (Exception_t1967233988 *)il2cpp_codegen_object_new(Exception_t1967233988_il2cpp_TypeInfo_var);
Exception__ctor_m3870771296(L_1, _stringLiteral682530450, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
XmlTypeMapElementInfo_set_ElementName_m3071025056(__this, _stringLiteral1828005365, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlTypeMapElementInfo_set_Namespace_m2703770860(__this, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsUnnamedAnyElement()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m473659373_MetadataUsageId;
extern "C" bool XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m473659373 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m473659373_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
String_t* L_0 = XmlTypeMapElementInfo_get_ElementName_m1448879699(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
bool L_2 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsUnnamedAnyElement(System.Boolean)
extern TypeInfo* Exception_t1967233988_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral682530450;
extern const uint32_t XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m3817477304_MetadataUsageId;
extern "C" void XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m3817477304 (XmlTypeMapElementInfo_t3184170653 * __this, bool ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m3817477304_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = ___value;
if (L_0)
{
goto IL_0011;
}
}
{
Exception_t1967233988 * L_1 = (Exception_t1967233988 *)il2cpp_codegen_object_new(Exception_t1967233988_il2cpp_TypeInfo_var);
Exception__ctor_m3870771296(L_1, _stringLiteral682530450, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_2 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlTypeMapElementInfo_set_ElementName_m3071025056(__this, L_2, /*hidden argument*/NULL);
String_t* L_3 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
XmlTypeMapElementInfo_set_Namespace_m2703770860(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::Equals(System.Object)
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapElementInfo_Equals_m849013987_MetadataUsageId;
extern "C" bool XmlTypeMapElementInfo_Equals_m849013987 (XmlTypeMapElementInfo_t3184170653 * __this, Il2CppObject * ___other, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfo_Equals_m849013987_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfo_t3184170653 * V_0 = NULL;
{
Il2CppObject * L_0 = ___other;
if (L_0)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
Il2CppObject * L_1 = ___other;
V_0 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_1, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
String_t* L_2 = __this->get__elementName_0();
XmlTypeMapElementInfo_t3184170653 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = L_3->get__elementName_0();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_5 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_2, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0027;
}
}
{
return (bool)0;
}
IL_0027:
{
TypeData_t3837952962 * L_6 = __this->get__type_8();
NullCheck(L_6);
String_t* L_7 = TypeData_get_XmlType_m3918246226(L_6, /*hidden argument*/NULL);
XmlTypeMapElementInfo_t3184170653 * L_8 = V_0;
NullCheck(L_8);
TypeData_t3837952962 * L_9 = L_8->get__type_8();
NullCheck(L_9);
String_t* L_10 = TypeData_get_XmlType_m3918246226(L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_11 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_7, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0049;
}
}
{
return (bool)0;
}
IL_0049:
{
String_t* L_12 = __this->get__namespace_1();
XmlTypeMapElementInfo_t3184170653 * L_13 = V_0;
NullCheck(L_13);
String_t* L_14 = L_13->get__namespace_1();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_15 = String_op_Inequality_m2125462205(NULL /*static, unused*/, L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0061;
}
}
{
return (bool)0;
}
IL_0061:
{
int32_t L_16 = __this->get__form_2();
XmlTypeMapElementInfo_t3184170653 * L_17 = V_0;
NullCheck(L_17);
int32_t L_18 = L_17->get__form_2();
if ((((int32_t)L_16) == ((int32_t)L_18)))
{
goto IL_0074;
}
}
{
return (bool)0;
}
IL_0074:
{
TypeData_t3837952962 * L_19 = __this->get__type_8();
XmlTypeMapElementInfo_t3184170653 * L_20 = V_0;
NullCheck(L_20);
TypeData_t3837952962 * L_21 = L_20->get__type_8();
if ((((Il2CppObject*)(TypeData_t3837952962 *)L_19) == ((Il2CppObject*)(TypeData_t3837952962 *)L_21)))
{
goto IL_0087;
}
}
{
return (bool)0;
}
IL_0087:
{
bool L_22 = __this->get__isNullable_5();
XmlTypeMapElementInfo_t3184170653 * L_23 = V_0;
NullCheck(L_23);
bool L_24 = L_23->get__isNullable_5();
if ((((int32_t)L_22) == ((int32_t)L_24)))
{
goto IL_009a;
}
}
{
return (bool)0;
}
IL_009a:
{
Il2CppObject * L_25 = __this->get__choiceValue_4();
if (!L_25)
{
goto IL_00bd;
}
}
{
Il2CppObject * L_26 = __this->get__choiceValue_4();
XmlTypeMapElementInfo_t3184170653 * L_27 = V_0;
NullCheck(L_27);
Il2CppObject * L_28 = L_27->get__choiceValue_4();
NullCheck(L_26);
bool L_29 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_28);
if (L_29)
{
goto IL_00bd;
}
}
{
return (bool)0;
}
IL_00bd:
{
Il2CppObject * L_30 = __this->get__choiceValue_4();
XmlTypeMapElementInfo_t3184170653 * L_31 = V_0;
NullCheck(L_31);
Il2CppObject * L_32 = L_31->get__choiceValue_4();
if ((((Il2CppObject*)(Il2CppObject *)L_30) == ((Il2CppObject*)(Il2CppObject *)L_32)))
{
goto IL_00d0;
}
}
{
return (bool)0;
}
IL_00d0:
{
return (bool)1;
}
}
// System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::GetHashCode()
extern "C" int32_t XmlTypeMapElementInfo_GetHashCode_m3866245639 (XmlTypeMapElementInfo_t3184170653 * __this, const MethodInfo* method)
{
{
int32_t L_0 = Object_GetHashCode_m500842593(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor()
extern TypeInfo* ArrayList_t2121638921_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapElementInfoList__ctor_m823538428_MetadataUsageId;
extern "C" void XmlTypeMapElementInfoList__ctor_m823538428 (XmlTypeMapElementInfoList_t3690603483 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapElementInfoList__ctor_m823538428_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2121638921_il2cpp_TypeInfo_var);
ArrayList__ctor_m1878432947(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::.ctor()
extern TypeInfo* DBNull_t491814586_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember__ctor_m2756049672_MetadataUsageId;
extern "C" void XmlTypeMapMember__ctor_m2756049672 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember__ctor_m2756049672_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t491814586_il2cpp_TypeInfo_var);
DBNull_t491814586 * L_0 = ((DBNull_t491814586_StaticFields*)DBNull_t491814586_il2cpp_TypeInfo_var->static_fields)->get_Value_0();
__this->set__defaultValue_6(L_0);
Object__ctor_m1772956182(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapMember::get_Name()
extern "C" String_t* XmlTypeMapMember_get_Name_m466877389 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__name_0();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_Name(System.String)
extern "C" void XmlTypeMapMember_set_Name_m1877731198 (XmlTypeMapMember_t757519331 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__name_0(L_0);
return;
}
}
// System.Object System.Xml.Serialization.XmlTypeMapMember::get_DefaultValue()
extern "C" Il2CppObject * XmlTypeMapMember_get_DefaultValue_m399150432 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = __this->get__defaultValue_6();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_DefaultValue(System.Object)
extern "C" void XmlTypeMapMember_set_DefaultValue_m2585305675 (XmlTypeMapMember_t757519331 * __this, Il2CppObject * ___value, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___value;
__this->set__defaultValue_6(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::IsReadOnly(System.Type)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_IsReadOnly_m3382064857_MetadataUsageId;
extern "C" bool XmlTypeMapMember_IsReadOnly_m3382064857 (XmlTypeMapMember_t757519331 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_IsReadOnly_m3382064857_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
int32_t G_B5_0 = 0;
{
MemberInfo_t * L_0 = __this->get__member_4();
if (L_0)
{
goto IL_0012;
}
}
{
Type_t * L_1 = ___type;
XmlTypeMapMember_InitMember_m4087126387(__this, L_1, /*hidden argument*/NULL);
}
IL_0012:
{
MemberInfo_t * L_2 = __this->get__member_4();
if (!((PropertyInfo_t *)IsInstClass(L_2, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_0037;
}
}
{
MemberInfo_t * L_3 = __this->get__member_4();
NullCheck(((PropertyInfo_t *)CastclassClass(L_3, PropertyInfo_t_il2cpp_TypeInfo_var)));
bool L_4 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t *)CastclassClass(L_3, PropertyInfo_t_il2cpp_TypeInfo_var)));
G_B5_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
goto IL_0038;
}
IL_0037:
{
G_B5_0 = 0;
}
IL_0038:
{
return (bool)G_B5_0;
}
}
// System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_GetValue_m1922396398_MetadataUsageId;
extern "C" Il2CppObject * XmlTypeMapMember_GetValue_m1922396398 (Il2CppObject * __this /* static, unused */, Il2CppObject * ___ob, String_t* ___name, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_GetValue_m1922396398_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
MemberInfoU5BU5D_t3813794579* V_0 = NULL;
{
Il2CppObject * L_0 = ___ob;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2022236990(L_0, /*hidden argument*/NULL);
String_t* L_2 = ___name;
NullCheck(L_1);
MemberInfoU5BU5D_t3813794579* L_3 = VirtFuncInvoker2< MemberInfoU5BU5D_t3813794579*, String_t*, int32_t >::Invoke(51 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20));
V_0 = L_3;
MemberInfoU5BU5D_t3813794579* L_4 = V_0;
NullCheck(L_4);
IL2CPP_ARRAY_BOUNDS_CHECK(L_4, 0);
int32_t L_5 = 0;
if (!((PropertyInfo_t *)IsInstClass(((L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5))), PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_002c;
}
}
{
MemberInfoU5BU5D_t3813794579* L_6 = V_0;
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 0);
int32_t L_7 = 0;
Il2CppObject * L_8 = ___ob;
NullCheck(((PropertyInfo_t *)CastclassClass(((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7))), PropertyInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_9 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7))), PropertyInfo_t_il2cpp_TypeInfo_var)), L_8, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
return L_9;
}
IL_002c:
{
MemberInfoU5BU5D_t3813794579* L_10 = V_0;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, 0);
int32_t L_11 = 0;
Il2CppObject * L_12 = ___ob;
NullCheck(((FieldInfo_t *)CastclassClass(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))), FieldInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_13 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))), FieldInfo_t_il2cpp_TypeInfo_var)), L_12);
return L_13;
}
}
// System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_GetValue_m1259309106_MetadataUsageId;
extern "C" Il2CppObject * XmlTypeMapMember_GetValue_m1259309106 (XmlTypeMapMember_t757519331 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_GetValue_m1259309106_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
MemberInfo_t * L_0 = __this->get__member_4();
if (L_0)
{
goto IL_0017;
}
}
{
Il2CppObject * L_1 = ___ob;
NullCheck(L_1);
Type_t * L_2 = Object_GetType_m2022236990(L_1, /*hidden argument*/NULL);
XmlTypeMapMember_InitMember_m4087126387(__this, L_2, /*hidden argument*/NULL);
}
IL_0017:
{
MemberInfo_t * L_3 = __this->get__member_4();
if (!((PropertyInfo_t *)IsInstClass(L_3, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_003a;
}
}
{
MemberInfo_t * L_4 = __this->get__member_4();
Il2CppObject * L_5 = ___ob;
NullCheck(((PropertyInfo_t *)CastclassClass(L_4, PropertyInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_6 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(L_4, PropertyInfo_t_il2cpp_TypeInfo_var)), L_5, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
return L_6;
}
IL_003a:
{
MemberInfo_t * L_7 = __this->get__member_4();
Il2CppObject * L_8 = ___ob;
NullCheck(((FieldInfo_t *)CastclassClass(L_7, FieldInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_9 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass(L_7, FieldInfo_t_il2cpp_TypeInfo_var)), L_8);
return L_9;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.Object)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_SetValue_m1279268951_MetadataUsageId;
extern "C" void XmlTypeMapMember_SetValue_m1279268951 (XmlTypeMapMember_t757519331 * __this, Il2CppObject * ___ob, Il2CppObject * ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_SetValue_m1279268951_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
MemberInfo_t * L_0 = __this->get__member_4();
if (L_0)
{
goto IL_0017;
}
}
{
Il2CppObject * L_1 = ___ob;
NullCheck(L_1);
Type_t * L_2 = Object_GetType_m2022236990(L_1, /*hidden argument*/NULL);
XmlTypeMapMember_InitMember_m4087126387(__this, L_2, /*hidden argument*/NULL);
}
IL_0017:
{
MemberInfo_t * L_3 = __this->get__member_4();
if (!((PropertyInfo_t *)IsInstClass(L_3, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_003f;
}
}
{
MemberInfo_t * L_4 = __this->get__member_4();
Il2CppObject * L_5 = ___ob;
Il2CppObject * L_6 = ___value;
NullCheck(((PropertyInfo_t *)CastclassClass(L_4, PropertyInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker3< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(25 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(L_4, PropertyInfo_t_il2cpp_TypeInfo_var)), L_5, L_6, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
goto IL_0051;
}
IL_003f:
{
MemberInfo_t * L_7 = __this->get__member_4();
Il2CppObject * L_8 = ___ob;
Il2CppObject * L_9 = ___value;
NullCheck(((FieldInfo_t *)CastclassClass(L_7, FieldInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) */, ((FieldInfo_t *)CastclassClass(L_7, FieldInfo_t_il2cpp_TypeInfo_var)), L_8, L_9);
}
IL_0051:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_SetValue_m331432915_MetadataUsageId;
extern "C" void XmlTypeMapMember_SetValue_m331432915 (Il2CppObject * __this /* static, unused */, Il2CppObject * ___ob, String_t* ___name, Il2CppObject * ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_SetValue_m331432915_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
MemberInfoU5BU5D_t3813794579* V_0 = NULL;
{
Il2CppObject * L_0 = ___ob;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2022236990(L_0, /*hidden argument*/NULL);
String_t* L_2 = ___name;
NullCheck(L_1);
MemberInfoU5BU5D_t3813794579* L_3 = VirtFuncInvoker2< MemberInfoU5BU5D_t3813794579*, String_t*, int32_t >::Invoke(51 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20));
V_0 = L_3;
MemberInfoU5BU5D_t3813794579* L_4 = V_0;
NullCheck(L_4);
IL2CPP_ARRAY_BOUNDS_CHECK(L_4, 0);
int32_t L_5 = 0;
if (!((PropertyInfo_t *)IsInstClass(((L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5))), PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_0031;
}
}
{
MemberInfoU5BU5D_t3813794579* L_6 = V_0;
NullCheck(L_6);
IL2CPP_ARRAY_BOUNDS_CHECK(L_6, 0);
int32_t L_7 = 0;
Il2CppObject * L_8 = ___ob;
Il2CppObject * L_9 = ___value;
NullCheck(((PropertyInfo_t *)CastclassClass(((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7))), PropertyInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker3< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(25 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(((L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7))), PropertyInfo_t_il2cpp_TypeInfo_var)), L_8, L_9, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
goto IL_0040;
}
IL_0031:
{
MemberInfoU5BU5D_t3813794579* L_10 = V_0;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, 0);
int32_t L_11 = 0;
Il2CppObject * L_12 = ___ob;
Il2CppObject * L_13 = ___value;
NullCheck(((FieldInfo_t *)CastclassClass(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))), FieldInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) */, ((FieldInfo_t *)CastclassClass(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))), FieldInfo_t_il2cpp_TypeInfo_var)), L_12, L_13);
}
IL_0040:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::InitMember(System.Type)
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral309353872;
extern const uint32_t XmlTypeMapMember_InitMember_m4087126387_MetadataUsageId;
extern "C" void XmlTypeMapMember_InitMember_m4087126387 (XmlTypeMapMember_t757519331 * __this, Type_t * ___type, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_InitMember_m4087126387_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
MemberInfoU5BU5D_t3813794579* V_0 = NULL;
{
Type_t * L_0 = ___type;
String_t* L_1 = __this->get__name_0();
NullCheck(L_0);
MemberInfoU5BU5D_t3813794579* L_2 = VirtFuncInvoker2< MemberInfoU5BU5D_t3813794579*, String_t*, int32_t >::Invoke(51 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_0, L_1, ((int32_t)20));
V_0 = L_2;
MemberInfoU5BU5D_t3813794579* L_3 = V_0;
NullCheck(L_3);
IL2CPP_ARRAY_BOUNDS_CHECK(L_3, 0);
int32_t L_4 = 0;
__this->set__member_4(((L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4))));
Type_t * L_5 = ___type;
String_t* L_6 = __this->get__name_0();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Concat_m138640077(NULL /*static, unused*/, L_6, _stringLiteral309353872, /*hidden argument*/NULL);
NullCheck(L_5);
MemberInfoU5BU5D_t3813794579* L_8 = VirtFuncInvoker2< MemberInfoU5BU5D_t3813794579*, String_t*, int32_t >::Invoke(51 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_5, L_7, ((int32_t)20));
V_0 = L_8;
MemberInfoU5BU5D_t3813794579* L_9 = V_0;
NullCheck(L_9);
if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
MemberInfoU5BU5D_t3813794579* L_10 = V_0;
NullCheck(L_10);
IL2CPP_ARRAY_BOUNDS_CHECK(L_10, 0);
int32_t L_11 = 0;
__this->set__specifiedMember_5(((L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11))));
}
IL_0043:
{
MemberInfo_t * L_12 = __this->get__specifiedMember_5();
if (!((PropertyInfo_t *)IsInstClass(L_12, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_006f;
}
}
{
MemberInfo_t * L_13 = __this->get__specifiedMember_5();
NullCheck(((PropertyInfo_t *)CastclassClass(L_13, PropertyInfo_t_il2cpp_TypeInfo_var)));
bool L_14 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t *)CastclassClass(L_13, PropertyInfo_t_il2cpp_TypeInfo_var)));
if (L_14)
{
goto IL_006f;
}
}
{
__this->set__specifiedMember_5((MemberInfo_t *)NULL);
}
IL_006f:
{
return;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::get_TypeData()
extern "C" TypeData_t3837952962 * XmlTypeMapMember_get_TypeData_m3428473262 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = __this->get__typeData_3();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_TypeData(System.Xml.Serialization.TypeData)
extern "C" void XmlTypeMapMember_set_TypeData_m2333518141 (XmlTypeMapMember_t757519331 * __this, TypeData_t3837952962 * ___value, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = ___value;
__this->set__typeData_3(L_0);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_Index()
extern "C" int32_t XmlTypeMapMember_get_Index_m1785150577 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__index_1();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_Index(System.Int32)
extern "C" void XmlTypeMapMember_set_Index_m920860652 (XmlTypeMapMember_t757519331 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__index_1(L_0);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_GlobalIndex()
extern "C" int32_t XmlTypeMapMember_get_GlobalIndex_m1359983822 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__globalIndex_2();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_GlobalIndex(System.Int32)
extern "C" void XmlTypeMapMember_set_GlobalIndex_m527115593 (XmlTypeMapMember_t757519331 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__globalIndex_2(L_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsOptionalValueType()
extern "C" bool XmlTypeMapMember_get_IsOptionalValueType_m3882268486 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__flags_7();
return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)1))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsOptionalValueType(System.Boolean)
extern "C" void XmlTypeMapMember_set_IsOptionalValueType_m439540033 (XmlTypeMapMember_t757519331 * __this, bool ___value, const MethodInfo* method)
{
XmlTypeMapMember_t757519331 * G_B2_0 = NULL;
XmlTypeMapMember_t757519331 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XmlTypeMapMember_t757519331 * G_B3_1 = NULL;
{
bool L_0 = ___value;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__flags_7();
G_B3_0 = ((int32_t)((int32_t)L_1|(int32_t)1));
G_B3_1 = G_B1_0;
goto IL_001d;
}
IL_0014:
{
int32_t L_2 = __this->get__flags_7();
G_B3_0 = ((int32_t)((int32_t)L_2&(int32_t)((int32_t)-2)));
G_B3_1 = G_B2_0;
}
IL_001d:
{
NullCheck(G_B3_1);
G_B3_1->set__flags_7(G_B3_0);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsReturnValue()
extern "C" bool XmlTypeMapMember_get_IsReturnValue_m41810588 (XmlTypeMapMember_t757519331 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__flags_7();
return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)2))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsReturnValue(System.Boolean)
extern "C" void XmlTypeMapMember_set_IsReturnValue_m866328855 (XmlTypeMapMember_t757519331 * __this, bool ___value, const MethodInfo* method)
{
XmlTypeMapMember_t757519331 * G_B2_0 = NULL;
XmlTypeMapMember_t757519331 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XmlTypeMapMember_t757519331 * G_B3_1 = NULL;
{
bool L_0 = ___value;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0014;
}
}
{
int32_t L_1 = __this->get__flags_7();
G_B3_0 = ((int32_t)((int32_t)L_1|(int32_t)2));
G_B3_1 = G_B1_0;
goto IL_001d;
}
IL_0014:
{
int32_t L_2 = __this->get__flags_7();
G_B3_0 = ((int32_t)((int32_t)L_2&(int32_t)((int32_t)-3)));
G_B3_1 = G_B2_0;
}
IL_001d:
{
NullCheck(G_B3_1);
G_B3_1->set__flags_7(G_B3_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::CheckOptionalValueType(System.Type)
extern "C" void XmlTypeMapMember_CheckOptionalValueType_m1568711098 (XmlTypeMapMember_t757519331 * __this, Type_t * ___type, const MethodInfo* method)
{
{
MemberInfo_t * L_0 = __this->get__member_4();
if (L_0)
{
goto IL_0012;
}
}
{
Type_t * L_1 = ___type;
XmlTypeMapMember_InitMember_m4087126387(__this, L_1, /*hidden argument*/NULL);
}
IL_0012:
{
MemberInfo_t * L_2 = __this->get__specifiedMember_5();
XmlTypeMapMember_set_IsOptionalValueType_m439540033(__this, (bool)((((int32_t)((((Il2CppObject*)(MemberInfo_t *)L_2) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMember::GetValueSpecified(System.Object)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* Boolean_t211005341_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_GetValueSpecified_m1148679889_MetadataUsageId;
extern "C" bool XmlTypeMapMember_GetValueSpecified_m1148679889 (XmlTypeMapMember_t757519331 * __this, Il2CppObject * ___ob, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_GetValueSpecified_m1148679889_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
MemberInfo_t * L_0 = __this->get__specifiedMember_5();
if (!((PropertyInfo_t *)IsInstClass(L_0, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
MemberInfo_t * L_1 = __this->get__specifiedMember_5();
Il2CppObject * L_2 = ___ob;
NullCheck(((PropertyInfo_t *)CastclassClass(L_1, PropertyInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_3 = VirtFuncInvoker2< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(L_1, PropertyInfo_t_il2cpp_TypeInfo_var)), L_2, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
return ((*(bool*)((bool*)UnBox (L_3, Boolean_t211005341_il2cpp_TypeInfo_var))));
}
IL_0028:
{
MemberInfo_t * L_4 = __this->get__specifiedMember_5();
Il2CppObject * L_5 = ___ob;
NullCheck(((FieldInfo_t *)CastclassClass(L_4, FieldInfo_t_il2cpp_TypeInfo_var)));
Il2CppObject * L_6 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass(L_4, FieldInfo_t_il2cpp_TypeInfo_var)), L_5);
return ((*(bool*)((bool*)UnBox (L_6, Boolean_t211005341_il2cpp_TypeInfo_var))));
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMember::SetValueSpecified(System.Object,System.Boolean)
extern TypeInfo* PropertyInfo_t_il2cpp_TypeInfo_var;
extern TypeInfo* Boolean_t211005341_il2cpp_TypeInfo_var;
extern TypeInfo* FieldInfo_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMember_SetValueSpecified_m1043962768_MetadataUsageId;
extern "C" void XmlTypeMapMember_SetValueSpecified_m1043962768 (XmlTypeMapMember_t757519331 * __this, Il2CppObject * ___ob, bool ___value, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMember_SetValueSpecified_m1043962768_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
MemberInfo_t * L_0 = __this->get__specifiedMember_5();
if (!((PropertyInfo_t *)IsInstClass(L_0, PropertyInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_002d;
}
}
{
MemberInfo_t * L_1 = __this->get__specifiedMember_5();
Il2CppObject * L_2 = ___ob;
bool L_3 = ___value;
bool L_4 = L_3;
Il2CppObject * L_5 = Box(Boolean_t211005341_il2cpp_TypeInfo_var, &L_4);
NullCheck(((PropertyInfo_t *)CastclassClass(L_1, PropertyInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker3< Il2CppObject *, Il2CppObject *, ObjectU5BU5D_t11523773* >::Invoke(25 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass(L_1, PropertyInfo_t_il2cpp_TypeInfo_var)), L_2, L_5, (ObjectU5BU5D_t11523773*)(ObjectU5BU5D_t11523773*)NULL);
goto IL_0044;
}
IL_002d:
{
MemberInfo_t * L_6 = __this->get__specifiedMember_5();
Il2CppObject * L_7 = ___ob;
bool L_8 = ___value;
bool L_9 = L_8;
Il2CppObject * L_10 = Box(Boolean_t211005341_il2cpp_TypeInfo_var, &L_9);
NullCheck(((FieldInfo_t *)CastclassClass(L_6, FieldInfo_t_il2cpp_TypeInfo_var)));
VirtActionInvoker2< Il2CppObject *, Il2CppObject * >::Invoke(23 /* System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) */, ((FieldInfo_t *)CastclassClass(L_6, FieldInfo_t_il2cpp_TypeInfo_var)), L_7, L_10);
}
IL_0044:
{
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAnyAttribute::.ctor()
extern "C" void XmlTypeMapMemberAnyAttribute__ctor_m1700938584 (XmlTypeMapMemberAnyAttribute_t576758419 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember__ctor_m2756049672(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAnyElement::.ctor()
extern "C" void XmlTypeMapMemberAnyElement__ctor_m603620152 (XmlTypeMapMemberAnyElement_t2899433779 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberExpandable__ctor_m4040891444(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::IsElementDefined(System.String,System.String)
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMemberAnyElement_IsElementDefined_m187225571_MetadataUsageId;
extern "C" bool XmlTypeMapMemberAnyElement_IsElementDefined_m187225571 (XmlTypeMapMemberAnyElement_t2899433779 * __this, String_t* ___name, String_t* ___ns, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMemberAnyElement_IsElementDefined_m187225571_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfo_t3184170653 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
bool V_2 = false;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(__this, /*hidden argument*/NULL);
NullCheck(L_0);
Il2CppObject * L_1 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_1 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_0058;
}
IL_0011:
{
Il2CppObject * L_2 = V_1;
NullCheck(L_2);
Il2CppObject * L_3 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_2);
V_0 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m473659373(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002f;
}
}
IL_0028:
{
V_2 = (bool)1;
IL2CPP_LEAVE(0x7C, FINALLY_0068);
}
IL_002f:
{
XmlTypeMapElementInfo_t3184170653 * L_6 = V_0;
NullCheck(L_6);
String_t* L_7 = XmlTypeMapElementInfo_get_ElementName_m1448879699(L_6, /*hidden argument*/NULL);
String_t* L_8 = ___name;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_9 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0058;
}
}
IL_0040:
{
XmlTypeMapElementInfo_t3184170653 * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = XmlTypeMapElementInfo_get_Namespace_m1244892615(L_10, /*hidden argument*/NULL);
String_t* L_12 = ___ns;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_13 = String_op_Equality_m1260523650(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0058;
}
}
IL_0051:
{
V_2 = (bool)1;
IL2CPP_LEAVE(0x7C, FINALLY_0068);
}
IL_0058:
{
Il2CppObject * L_14 = V_1;
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_0011;
}
}
IL_0063:
{
IL2CPP_LEAVE(0x7A, FINALLY_0068);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_0068;
}
FINALLY_0068:
{ // begin finally (depth: 1)
{
Il2CppObject * L_16 = V_1;
V_3 = ((Il2CppObject *)IsInst(L_16, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_17 = V_3;
if (L_17)
{
goto IL_0073;
}
}
IL_0072:
{
IL2CPP_END_FINALLY(104)
}
IL_0073:
{
Il2CppObject * L_18 = V_3;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_18);
IL2CPP_END_FINALLY(104)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(104)
{
IL2CPP_JUMP_TBL(0x7C, IL_007c)
IL2CPP_JUMP_TBL(0x7A, IL_007a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_007a:
{
return (bool)0;
}
IL_007c:
{
bool L_19 = V_2;
return L_19;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::get_IsDefaultAny()
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMemberAnyElement_get_IsDefaultAny_m1693850370_MetadataUsageId;
extern "C" bool XmlTypeMapMemberAnyElement_get_IsDefaultAny_m1693850370 (XmlTypeMapMemberAnyElement_t2899433779 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMemberAnyElement_get_IsDefaultAny_m1693850370_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
XmlTypeMapElementInfo_t3184170653 * V_0 = NULL;
Il2CppObject * V_1 = NULL;
bool V_2 = false;
Il2CppObject * V_3 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = XmlTypeMapMemberElement_get_ElementInfo_m3298338329(__this, /*hidden argument*/NULL);
NullCheck(L_0);
Il2CppObject * L_1 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_1 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_002f;
}
IL_0011:
{
Il2CppObject * L_2 = V_1;
NullCheck(L_2);
Il2CppObject * L_3 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_2);
V_0 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m473659373(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002f;
}
}
IL_0028:
{
V_2 = (bool)1;
IL2CPP_LEAVE(0x53, FINALLY_003f);
}
IL_002f:
{
Il2CppObject * L_6 = V_1;
NullCheck(L_6);
bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_6);
if (L_7)
{
goto IL_0011;
}
}
IL_003a:
{
IL2CPP_LEAVE(0x51, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
Il2CppObject * L_8 = V_1;
V_3 = ((Il2CppObject *)IsInst(L_8, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_9 = V_3;
if (L_9)
{
goto IL_004a;
}
}
IL_0049:
{
IL2CPP_END_FINALLY(63)
}
IL_004a:
{
Il2CppObject * L_10 = V_3;
NullCheck(L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_10);
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x53, IL_0053)
IL2CPP_JUMP_TBL(0x51, IL_0051)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0051:
{
return (bool)0;
}
IL_0053:
{
bool L_11 = V_2;
return L_11;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::.ctor()
extern TypeInfo* String_t_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMemberAttribute__ctor_m2721275042_MetadataUsageId;
extern "C" void XmlTypeMapMemberAttribute__ctor_m2721275042 (XmlTypeMapMemberAttribute_t2837866357 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMemberAttribute__ctor_m2721275042_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_0 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2();
__this->set__namespace_9(L_0);
XmlTypeMapMember__ctor_m2756049672(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_AttributeName()
extern "C" String_t* XmlTypeMapMemberAttribute_get_AttributeName_m2749329371 (XmlTypeMapMemberAttribute_t2837866357 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__attributeName_8();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_AttributeName(System.String)
extern "C" void XmlTypeMapMemberAttribute_set_AttributeName_m4039826520 (XmlTypeMapMemberAttribute_t2837866357 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__attributeName_8(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_Namespace()
extern "C" String_t* XmlTypeMapMemberAttribute_get_Namespace_m2347779695 (XmlTypeMapMemberAttribute_t2837866357 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__namespace_9();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Namespace(System.String)
extern "C" void XmlTypeMapMemberAttribute_set_Namespace_m2633344708 (XmlTypeMapMemberAttribute_t2837866357 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__namespace_9(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Form(System.Xml.Schema.XmlSchemaForm)
extern "C" void XmlTypeMapMemberAttribute_set_Form_m99487562 (XmlTypeMapMemberAttribute_t2837866357 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__form_10(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::get_MappedType()
extern "C" XmlTypeMapping_t988104027 * XmlTypeMapMemberAttribute_get_MappedType_m3750014842 (XmlTypeMapMemberAttribute_t2837866357 * __this, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = __this->get__mappedType_11();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_MappedType(System.Xml.Serialization.XmlTypeMapping)
extern "C" void XmlTypeMapMemberAttribute_set_MappedType_m3674658933 (XmlTypeMapMemberAttribute_t2837866357 * __this, XmlTypeMapping_t988104027 * ___value, const MethodInfo* method)
{
{
XmlTypeMapping_t988104027 * L_0 = ___value;
__this->set__mappedType_11(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::.ctor()
extern "C" void XmlTypeMapMemberElement__ctor_m1945462530 (XmlTypeMapMemberElement_t1386704533 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember__ctor_m2756049672(__this, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo()
extern TypeInfo* XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMemberElement_get_ElementInfo_m3298338329_MetadataUsageId;
extern "C" XmlTypeMapElementInfoList_t3690603483 * XmlTypeMapMemberElement_get_ElementInfo_m3298338329 (XmlTypeMapMemberElement_t1386704533 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMemberElement_get_ElementInfo_m3298338329_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__elementInfo_8();
if (L_0)
{
goto IL_0016;
}
}
{
XmlTypeMapElementInfoList_t3690603483 * L_1 = (XmlTypeMapElementInfoList_t3690603483 *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t3690603483_il2cpp_TypeInfo_var);
XmlTypeMapElementInfoList__ctor_m823538428(L_1, /*hidden argument*/NULL);
__this->set__elementInfo_8(L_1);
}
IL_0016:
{
XmlTypeMapElementInfoList_t3690603483 * L_2 = __this->get__elementInfo_8();
return L_2;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList)
extern "C" void XmlTypeMapMemberElement_set_ElementInfo_m2588514852 (XmlTypeMapMemberElement_t1386704533 * __this, XmlTypeMapElementInfoList_t3690603483 * ___value, const MethodInfo* method)
{
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = ___value;
__this->set__elementInfo_8(L_0);
return;
}
}
// System.String System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceMember()
extern "C" String_t* XmlTypeMapMemberElement_get_ChoiceMember_m1211378825 (XmlTypeMapMemberElement_t1386704533 * __this, const MethodInfo* method)
{
{
String_t* L_0 = __this->get__choiceMember_9();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceMember(System.String)
extern "C" void XmlTypeMapMemberElement_set_ChoiceMember_m3137117800 (XmlTypeMapMemberElement_t1386704533 * __this, String_t* ___value, const MethodInfo* method)
{
{
String_t* L_0 = ___value;
__this->set__choiceMember_9(L_0);
return;
}
}
// System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceTypeData()
extern "C" TypeData_t3837952962 * XmlTypeMapMemberElement_get_ChoiceTypeData_m3523493323 (XmlTypeMapMemberElement_t1386704533 * __this, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = __this->get__choiceTypeData_11();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceTypeData(System.Xml.Serialization.TypeData)
extern "C" void XmlTypeMapMemberElement_set_ChoiceTypeData_m1441245526 (XmlTypeMapMemberElement_t1386704533 * __this, TypeData_t3837952962 * ___value, const MethodInfo* method)
{
{
TypeData_t3837952962 * L_0 = ___value;
__this->set__choiceTypeData_11(L_0);
return;
}
}
// System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.XmlTypeMapMemberElement::FindElement(System.Object,System.Object)
extern TypeInfo* XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var;
extern TypeInfo* IEnumerator_t287207039_il2cpp_TypeInfo_var;
extern TypeInfo* IDisposable_t1628921374_il2cpp_TypeInfo_var;
extern const uint32_t XmlTypeMapMemberElement_FindElement_m2926979141_MetadataUsageId;
extern "C" XmlTypeMapElementInfo_t3184170653 * XmlTypeMapMemberElement_FindElement_m2926979141 (XmlTypeMapMemberElement_t1386704533 * __this, Il2CppObject * ___ob, Il2CppObject * ___memberValue, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
il2cpp_codegen_initialize_method (XmlTypeMapMemberElement_FindElement_m2926979141_MetadataUsageId);
s_Il2CppMethodIntialized = true;
}
Il2CppObject * V_0 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_1 = NULL;
Il2CppObject * V_2 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_3 = NULL;
Il2CppObject * V_4 = NULL;
XmlTypeMapElementInfo_t3184170653 * V_5 = NULL;
Il2CppObject * V_6 = NULL;
Il2CppObject * V_7 = NULL;
Exception_t1967233988 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t1967233988 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
XmlTypeMapElementInfoList_t3690603483 * L_0 = __this->get__elementInfo_8();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_0023;
}
}
{
XmlTypeMapElementInfoList_t3690603483 * L_2 = __this->get__elementInfo_8();
NullCheck(L_2);
Il2CppObject * L_3 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0);
return ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_3, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
}
IL_0023:
{
String_t* L_4 = __this->get__choiceMember_9();
if (!L_4)
{
goto IL_00a6;
}
}
{
Il2CppObject * L_5 = ___ob;
String_t* L_6 = __this->get__choiceMember_9();
Il2CppObject * L_7 = XmlTypeMapMember_GetValue_m1922396398(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL);
V_0 = L_7;
XmlTypeMapElementInfoList_t3690603483 * L_8 = __this->get__elementInfo_8();
NullCheck(L_8);
Il2CppObject * L_9 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_8);
V_2 = L_9;
}
IL_0047:
try
{ // begin try (depth: 1)
{
goto IL_007c;
}
IL_004c:
{
Il2CppObject * L_10 = V_2;
NullCheck(L_10);
Il2CppObject * L_11 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_10);
V_1 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_11, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_12 = V_1;
NullCheck(L_12);
Il2CppObject * L_13 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_007c;
}
}
IL_0063:
{
XmlTypeMapElementInfo_t3184170653 * L_14 = V_1;
NullCheck(L_14);
Il2CppObject * L_15 = XmlTypeMapElementInfo_get_ChoiceValue_m1518850154(L_14, /*hidden argument*/NULL);
Il2CppObject * L_16 = V_0;
NullCheck(L_15);
bool L_17 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_15, L_16);
if (!L_17)
{
goto IL_007c;
}
}
IL_0074:
{
XmlTypeMapElementInfo_t3184170653 * L_18 = V_1;
V_5 = L_18;
IL2CPP_LEAVE(0x124, FINALLY_008c);
}
IL_007c:
{
Il2CppObject * L_19 = V_2;
NullCheck(L_19);
bool L_20 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_19);
if (L_20)
{
goto IL_004c;
}
}
IL_0087:
{
IL2CPP_LEAVE(0xA1, FINALLY_008c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_008c;
}
FINALLY_008c:
{ // begin finally (depth: 1)
{
Il2CppObject * L_21 = V_2;
V_6 = ((Il2CppObject *)IsInst(L_21, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_22 = V_6;
if (L_22)
{
goto IL_0099;
}
}
IL_0098:
{
IL2CPP_END_FINALLY(140)
}
IL_0099:
{
Il2CppObject * L_23 = V_6;
NullCheck(L_23);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_23);
IL2CPP_END_FINALLY(140)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(140)
{
IL2CPP_JUMP_TBL(0x124, IL_0124)
IL2CPP_JUMP_TBL(0xA1, IL_00a1)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_00a1:
{
goto IL_0122;
}
IL_00a6:
{
Il2CppObject * L_24 = ___memberValue;
if (L_24)
{
goto IL_00be;
}
}
{
XmlTypeMapElementInfoList_t3690603483 * L_25 = __this->get__elementInfo_8();
NullCheck(L_25);
Il2CppObject * L_26 = VirtFuncInvoker1< Il2CppObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_25, 0);
return ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_26, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
}
IL_00be:
{
XmlTypeMapElementInfoList_t3690603483 * L_27 = __this->get__elementInfo_8();
NullCheck(L_27);
Il2CppObject * L_28 = VirtFuncInvoker0< Il2CppObject * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_27);
V_4 = L_28;
}
IL_00cb:
try
{ // begin try (depth: 1)
{
goto IL_00fb;
}
IL_00d0:
{
Il2CppObject * L_29 = V_4;
NullCheck(L_29);
Il2CppObject * L_30 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_29);
V_3 = ((XmlTypeMapElementInfo_t3184170653 *)CastclassClass(L_30, XmlTypeMapElementInfo_t3184170653_il2cpp_TypeInfo_var));
XmlTypeMapElementInfo_t3184170653 * L_31 = V_3;
NullCheck(L_31);
TypeData_t3837952962 * L_32 = XmlTypeMapElementInfo_get_TypeData_m2873544274(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
Type_t * L_33 = TypeData_get_Type_m2191724548(L_32, /*hidden argument*/NULL);
Il2CppObject * L_34 = ___memberValue;
NullCheck(L_33);
bool L_35 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(44 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_33, L_34);
if (!L_35)
{
goto IL_00fb;
}
}
IL_00f3:
{
XmlTypeMapElementInfo_t3184170653 * L_36 = V_3;
V_5 = L_36;
IL2CPP_LEAVE(0x124, FINALLY_010c);
}
IL_00fb:
{
Il2CppObject * L_37 = V_4;
NullCheck(L_37);
bool L_38 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t287207039_il2cpp_TypeInfo_var, L_37);
if (L_38)
{
goto IL_00d0;
}
}
IL_0107:
{
IL2CPP_LEAVE(0x122, FINALLY_010c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t1967233988 *)e.ex;
goto FINALLY_010c;
}
FINALLY_010c:
{ // begin finally (depth: 1)
{
Il2CppObject * L_39 = V_4;
V_7 = ((Il2CppObject *)IsInst(L_39, IDisposable_t1628921374_il2cpp_TypeInfo_var));
Il2CppObject * L_40 = V_7;
if (L_40)
{
goto IL_011a;
}
}
IL_0119:
{
IL2CPP_END_FINALLY(268)
}
IL_011a:
{
Il2CppObject * L_41 = V_7;
NullCheck(L_41);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1628921374_il2cpp_TypeInfo_var, L_41);
IL2CPP_END_FINALLY(268)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(268)
{
IL2CPP_JUMP_TBL(0x124, IL_0124)
IL2CPP_JUMP_TBL(0x122, IL_0122)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1967233988 *)
}
IL_0122:
{
return (XmlTypeMapElementInfo_t3184170653 *)NULL;
}
IL_0124:
{
XmlTypeMapElementInfo_t3184170653 * L_42 = V_5;
return L_42;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::SetChoice(System.Object,System.Object)
extern "C" void XmlTypeMapMemberElement_SetChoice_m4110992127 (XmlTypeMapMemberElement_t1386704533 * __this, Il2CppObject * ___ob, Il2CppObject * ___choice, const MethodInfo* method)
{
{
Il2CppObject * L_0 = ___ob;
String_t* L_1 = __this->get__choiceMember_9();
Il2CppObject * L_2 = ___choice;
XmlTypeMapMember_SetValue_m331432915(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::get_IsXmlTextCollector()
extern "C" bool XmlTypeMapMemberElement_get_IsXmlTextCollector_m325470374 (XmlTypeMapMemberElement_t1386704533 * __this, const MethodInfo* method)
{
{
bool L_0 = __this->get__isTextCollector_10();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_IsXmlTextCollector(System.Boolean)
extern "C" void XmlTypeMapMemberElement_set_IsXmlTextCollector_m3131336969 (XmlTypeMapMemberElement_t1386704533 * __this, bool ___value, const MethodInfo* method)
{
{
bool L_0 = ___value;
__this->set__isTextCollector_10(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::.ctor()
extern "C" void XmlTypeMapMemberExpandable__ctor_m4040891444 (XmlTypeMapMemberExpandable_t1849554103 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberElement__ctor_m1945462530(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::get_FlatArrayIndex()
extern "C" int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_m1457305161 (XmlTypeMapMemberExpandable_t1849554103 * __this, const MethodInfo* method)
{
{
int32_t L_0 = __this->get__flatArrayIndex_12();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::set_FlatArrayIndex(System.Int32)
extern "C" void XmlTypeMapMemberExpandable_set_FlatArrayIndex_m1028741936 (XmlTypeMapMemberExpandable_t1849554103 * __this, int32_t ___value, const MethodInfo* method)
{
{
int32_t L_0 = ___value;
__this->set__flatArrayIndex_12(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::.ctor()
extern "C" void XmlTypeMapMemberFlatList__ctor_m1101456401 (XmlTypeMapMemberFlatList_t1312744122 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberExpandable__ctor_m4040891444(__this, /*hidden argument*/NULL);
return;
}
}
// System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::get_ListMap()
extern "C" ListMap_t2001748316 * XmlTypeMapMemberFlatList_get_ListMap_m1043078955 (XmlTypeMapMemberFlatList_t1312744122 * __this, const MethodInfo* method)
{
{
ListMap_t2001748316 * L_0 = __this->get__listMap_13();
return L_0;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::set_ListMap(System.Xml.Serialization.ListMap)
extern "C" void XmlTypeMapMemberFlatList_set_ListMap_m2363063974 (XmlTypeMapMemberFlatList_t1312744122 * __this, ListMap_t2001748316 * ___value, const MethodInfo* method)
{
{
ListMap_t2001748316 * L_0 = ___value;
__this->set__listMap_13(L_0);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberList::.ctor()
extern "C" void XmlTypeMapMemberList__ctor_m2538963338 (XmlTypeMapMemberList_t2630503969 * __this, const MethodInfo* method)
{
{
XmlTypeMapMemberElement__ctor_m1945462530(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Xml.Serialization.XmlTypeMapMemberNamespaces::.ctor()
extern "C" void XmlTypeMapMemberNamespaces__ctor_m3224015152 (XmlTypeMapMemberNamespaces_t1473492027 * __this, const MethodInfo* method)
{
{
XmlTypeMapMember__ctor_m2756049672(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
30ca4fc9cf300a33ea73398a995009e216511fc4
|
226644adf0554f20164cc0594d10d1706a0d7510
|
/Classes/GameAbout.h
|
c0441fe4203b34de23312e55012999bc59430678
|
[] |
no_license
|
water158/RockAndSerriors
|
73b65ff8e3a9ce7acfb9de5c4d2ca1cf866fa408
|
1d7a2bb17e3d7b782a3df744a1726eee3cab26f5
|
refs/heads/master
| 2020-06-24T21:41:50.210550
| 2019-07-27T01:21:24
| 2019-07-27T01:21:24
| 199,099,638
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 611
|
h
|
GameAbout.h
|
//
// GameAbout.h
// RockPaperScissors
//
// Created by mini01 on 14-5-10.
//
//
#ifndef __RockPaperScissors__GameAbout__
#define __RockPaperScissors__GameAbout__
#include <iostream>
#include "cocos2d.h"
#include "MyXmlParser.h"
#include "GsoundManager.h"
#include "MyMenu.h"
#include "SmartRes.h"
using namespace cocos2d;
class GameAbout : public CCLayer
{
public:
static CCScene* scene();
virtual bool init();
CREATE_FUNC(GameAbout);
void backCallback(CCObject* obj);
private:
XMLParser* pXmlparser;
};
#endif /* defined(__RockPaperScissors__GameAbout__) */
|
1318bedbf1048e30ab0f2a1ae8219437d47f4ecd
|
bdfda25eb8f35346081d9cfb0ce00c845e771a72
|
/Plugins/BasisCore/Source/BasisCore/Private/TPSCharacterBase.cpp
|
7e8e03daa4012f408e04dd3d616610a5587bfdcd
|
[] |
no_license
|
kkcedar8520/UnrealDestiny
|
bf062b284efd500b482d13585e086318de2fc10e
|
3dbe4af01597948edae1cf546ec5d957f0e04b81
|
refs/heads/master
| 2023-03-29T15:28:10.726572
| 2021-04-08T15:03:14
| 2021-04-08T15:03:14
| 355,240,409
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,423
|
cpp
|
TPSCharacterBase.cpp
|
// Fill out your copyright notice in the Description page of Project Settings.
#include "TPSCharacterBase.h"
// Sets default values
ATPSCharacter::ATPSCharacter()
{
// Set this character to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
StaticMesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("MESH"));
SkeletalMesh = CreateDefaultSubobject<USkeletalMeshComponent>(TEXT("SkeletalMesh"));
// set our turn rates for input
BaseTurnRate = 45.f;
BaseLookUpRate = 45.f;
// Don't rotate when the controller rotates. Let that just affect the camera.
bUseControllerRotationPitch = false;
bUseControllerRotationYaw = false;
bUseControllerRotationRoll = false;
// Configure character movement
GetCharacterMovement()->bOrientRotationToMovement = true; // Character moves in the direction of input...
GetCharacterMovement()->RotationRate = FRotator(0.0f, 540.0f, 0.0f); // ...at this rotation rate
GetCharacterMovement()->JumpZVelocity = 600.f;
GetCharacterMovement()->AirControl = 0.2f;
GetCharacterMovement()->MaxWalkSpeed = 600.0f;
// Create a camera boom (pulls in towards the player if there is a collision)
CameraBoom = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraBoom"));
CameraBoom->SetupAttachment(RootComponent);
CameraBoom->TargetArmLength = 300.0f; // The camera follows at this distance behind the character
CameraBoom->bUsePawnControlRotation = true; // Rotate the arm based on the controller
// Create a follow camera
FollowCamera = CreateDefaultSubobject<UCameraComponent>(TEXT("FollowCamera"));
FollowCamera->SetupAttachment(CameraBoom, USpringArmComponent::SocketName); // Attach the camera to the end of the boom and let the boom adjust to match the controller orientation
FollowCamera->bUsePawnControlRotation = false; // Camera does not rotate relative to arm
//boolean
bSprint = false;
}
void ATPSCharacter::PostInitializeComponents()
{
Super::PostInitializeComponents();
AnimInstance = Cast<UAnimInstance>(GetMesh()->GetAnimInstance());
if (AnimInstance != nullptr)
AnimInstance->OnMontageEnded.AddDynamic(this, &ATPSCharacter::OnAttackMontageEnded);
}
// Called when the game starts or when spawned
void ATPSCharacter::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void ATPSCharacter::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
// Called to bind functionality to input
void ATPSCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
check(PlayerInputComponent);
Super::SetupPlayerInputComponent(PlayerInputComponent);
PlayerInputComponent->BindAxis(TEXT("MoveFoward"), this, &ATPSCharacter::MoveFoward);
PlayerInputComponent->BindAxis(TEXT("MoveRight"), this, &ATPSCharacter::MoveRight);
PlayerInputComponent->BindAxis(TEXT("Lookup"), this, &ATPSCharacter::LookUp);
PlayerInputComponent->BindAxis(TEXT("Turn"), this, &ATPSCharacter::Turn);
PlayerInputComponent->BindAxis("TurnRate", this, &ATPSCharacter::TurnAtRate);
PlayerInputComponent->BindAxis("LookUpRate", this, &ATPSCharacter::LookUpAtRate);
PlayerInputComponent->BindAction(TEXT("Jump"), EInputEvent::IE_Pressed, this, &ATPSCharacter::Jump);
PlayerInputComponent->BindAction("Jump", IE_Released, this, &ACharacter::StopJumping);
PlayerInputComponent->BindAction(TEXT("Sprint"), EInputEvent::IE_Pressed, this, &ATPSCharacter::Sprint);
PlayerInputComponent->BindAction("Sprint", IE_Released, this, &ATPSCharacter::StopSprint);
PlayerInputComponent->BindAction(TEXT("Attack"), EInputEvent::IE_Pressed, this, &ATPSCharacter::Attack);
PlayerInputComponent->BindAction("Attack", IE_Released, this, &ATPSCharacter::StopAttack);
// handle touch devices
PlayerInputComponent->BindTouch(IE_Pressed, this, &ATPSCharacter::TouchStarted);
PlayerInputComponent->BindTouch(IE_Released, this, &ATPSCharacter::TouchStopped);
}
void ATPSCharacter::TouchStarted(ETouchIndex::Type FingerIndex, FVector Location)
{
Jump();
}
void ATPSCharacter::TouchStopped(ETouchIndex::Type FingerIndex, FVector Location)
{
StopJumping();
}
void ATPSCharacter::MoveRight(float Value)
{
//AddMovementInput(FRotationMatrix(GetControlRotation()).GetUnitAxis(EAxis::Y), Value);
if ((Controller != NULL) && (Value != 0.0f))
{
// find out which way is right
const FRotator Rotation = Controller->GetControlRotation();
const FRotator YawRotation(0, Rotation.Yaw, 0);
// get right vector
const FVector Direction = FRotationMatrix(YawRotation).GetUnitAxis(EAxis::Y);
// add movement in that direction
AddMovementInput(Direction, Value);
}
//AddMovementInput(GetActorRightVector());
}
void ATPSCharacter::MoveFoward(float Value)
{
//AddMovementInput(FRotationMatrix(GetControlRotation()).GetUnitAxis(EAxis::X), Value);
if ((Controller != NULL) && (Value != 0.0f))
{
// find out which way is forward
const FRotator Rotation = Controller->GetControlRotation();
const FRotator YawRotation(0, Rotation.Yaw, 0);
// get forward vector
const FVector Direction = FRotationMatrix(YawRotation).GetUnitAxis(EAxis::X);
AddMovementInput(Direction, Value);
}
//AddMovementInput(GetActorForwardVector());
}
void ATPSCharacter::LookUp(float Value)
{
AddControllerPitchInput(Value);
}
void ATPSCharacter::Turn(float Value)
{
AddControllerYawInput(Value);
}
void ATPSCharacter::TurnAtRate(float Rate)
{
// calculate delta for this frame from the rate information
AddControllerYawInput(Rate * BaseTurnRate * GetWorld()->GetDeltaSeconds());
}
void ATPSCharacter::LookUpAtRate(float Rate)
{
// calculate delta for this frame from the rate information
AddControllerPitchInput(Rate * BaseLookUpRate * GetWorld()->GetDeltaSeconds());
}
//User Defined Function
void ATPSCharacter::Sprint()
{
//
//GetCharacterMovement()->MaxWalkSpeed = 600;
//bSprint = true;
}
void ATPSCharacter::StopSprint()
{
//bSprint = false;
//GetCharacterMovement()->MaxWalkSpeed = 300;
}
void ATPSCharacter::Attack()
{
if (IsAttacking)return;
Cast<UCharacterAnimInstance>(AnimInstance)->PlayAttackMontage();
IsAttacking = true;
}
void ATPSCharacter::StopAttack()
{
}
void ATPSCharacter::footStep_Implementation()
{
}
void ATPSCharacter::AttackEffect_Implementation()
{
}
void ATPSCharacter::AttackSound_Implementation()
{
}
void ATPSCharacter::OnAttackMontageEnded(UAnimMontage* Motage, bool bInterrupted)
{
IsAttacking = false;
}
|
4aae7d33a10d28a5ca83f1a5d2595601ff9da643
|
42eb5cf43d311789481ffd00f5ceeaf332887ff6
|
/libXBase/XAbsoluteTime.cpp
|
f2e05da904a2c6295da04b73e0cbed6ba161f4f5
|
[] |
no_license
|
OliviaWinona/GeorefLaser
|
6f53e1dbd6e6efe3c4c3672916e79b1b466c18fb
|
3291756d54fee3a3749c55ad02f7ccf8637598d2
|
refs/heads/master
| 2021-01-10T15:56:17.023162
| 2016-01-29T09:29:05
| 2016-01-29T09:29:05
| 48,236,174
| 0
| 0
| null | null | null | null |
ISO-8859-1
|
C++
| false
| false
| 1,953
|
cpp
|
XAbsoluteTime.cpp
|
#include "XAbsoluteTime.h"
#include <time.h>
#include "libXBase/Xbase.h"
#include "libXGeodesy/XGpsTools.h"
XAbsoluteTime::XAbsoluteTime(void)
{
year = 0;
month = 0;
day = 0;
m_tps = 0;
hour = 0;
min =0;
sec =0;
}
//-----------------------------------------------------------------------------
XAbsoluteTime::~XAbsoluteTime(void)
{
}
//-----------------------------------------------------------------------------
uint32 XAbsoluteTime::SetTime(uint32 date,uint16 corJour, uint16 corSec)
{
day = jour(date);
if(day-corJour < 1)//problème
std::cout << "ATTENTION CODE TEMPORAIRE PROBLEME SUR LE CALCUL DE LA DATE";
day= day-corJour;
month = mois(date);
year = annee(date);
struct tm t;
t.tm_year = year +2000-1900;
t.tm_mon = month - 1;
t.tm_mday = day;
t.tm_hour = 0;
t.tm_min = 0;
t.tm_sec = corSec;
sec = corSec;
m_tps = mktime(&t);
//char info[1024];
//sprintf(info,"Nbre de secondes depuis le 1er Janvier 1970 : %ld\n", tps);
return m_tps;
}
//-----------------------------------------------------------------------------
uint32 XAbsoluteTime::SetTimeTrajGps(uint32 date)
{
XGpsTools xgt(date);
uint16 corSec = xgt.CorrectionUtcToGps();
uint16 corJour = xgt.WeekDay();
return SetTime(date,corJour,corSec);
}
//-----------------------------------------------------------------------------
uint32 XAbsoluteTime::SetTimeRxpUtc(uint32 date)
{
return SetTime(date,0,0);
}
//-----------------------------------------------------------------------------
bool XAbsoluteTime::XmlWrite(std::ostream* out)
{
*out << "<pivot_ref_gps>\n";
*out << "<year>" << year+2000 << "</year>\n";
*out << "<month>"<< month << "</month>\n";
*out << "<day>" << day << "</day>\n";
*out << "<hour>" << hour << "</hour>\n";
*out << "<min>" << min << "</min>\n";
*out << "<sec>" << sec << "</sec>\n";
*out << "<sec_1970>" << m_tps << "</sec_1970>\n";
*out << "</pivot_ref_gps>\n";
return out->good();
}
|
05eadff134fa6ce5bb399e61ef4a4b4d2e160e34
|
483b333c2f6c11ede642f585f917137855d7fda2
|
/example/setenv/setenv.cpp
|
ebb082665b6ea4f18df3c7ab98a5185402b795f6
|
[] |
no_license
|
kevinkassimo/TLPI
|
612dedf2e8d6c19c12ef6192516f8d5be8e15c8a
|
60645075e0b1bd1b057e70f6d13ee28cb8764018
|
refs/heads/master
| 2021-01-21T22:10:34.784819
| 2017-06-29T10:49:37
| 2017-06-29T10:49:37
| 95,181,513
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,027
|
cpp
|
setenv.cpp
|
//
// Created by kunqian on 6/24/17.
//
#include "../myutils.h"
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <unistd.h>
extern char **environ;
int main(int argc, char **argv) {
clearenv();
if (argc < 2 || strcmp(argv[1], "--help") == 0) {
usage_exit("setenv [name=value]*\n");
}
bool unset_flag = false;
if (strcmp(argv[1], "-u") == 0) {
unset_flag = true;
}
if (unset_flag) {
for (int i = 2; i < argc; i++) {
if (unsetenv(argv[i]) == -1) {
perror("unsetenv");
err_exit(EXIT_FAILURE, "cannot unset env %s\n", argv[i]);
}
}
} else {
for (int i = 1; i < argc; i++) {
if (putenv(argv[i]) != 0) {
perror("putenv");
err_exit(EXIT_FAILURE, "cannot set env %s\n", argv[i]);
}
}
}
char **ep;
for (ep = environ; *ep != NULL; ep++) {
puts(*ep);
}
exit(EXIT_SUCCESS);
}
|
ff14b7ddd04c0d097a6b516b3f7b9055d296ba05
|
3f0128502b50d935012610ccc4820efdff669228
|
/Symulator-ruchu-pociagow-master/graphics/parsertilemap.cpp
|
7787b6d0ec1f600d92ab159b956a694fa5160a04
|
[] |
no_license
|
feels-like-1984/AISDI
|
5aa07d4a0101ff5fb23846368153a21de8aabb34
|
25c8801ff32221739a1484c287229b9ac8acd3ab
|
refs/heads/master
| 2021-05-29T20:40:15.006662
| 2015-04-12T21:13:59
| 2015-04-12T21:13:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,423
|
cpp
|
parsertilemap.cpp
|
#include <QFile>
#include <QString>
#include "decodexml.h"
struct SRPTile{
QString line1, line2, line3;
int size;
int numTiles;
void GetSize();
bool ReadFromStream(QTextStream &input);
qint64 GetTileNumber(int index);
};
void inline SRPTile::GetSize(){
size = line1.size();
int temp = line2.size();
if(temp<size)
size = temp;
temp = line3.size();
if(temp<size)
size = temp;
size++;
int rest = size%4;
size -= rest;
numTiles = size/4;
size--;
}
bool SRPTile::ReadFromStream(QTextStream &input){
if (input.atEnd()) return false; // incomplete row
line1 = input.readLine();
if (input.atEnd()) return false; // incomplete row
line2 = input.readLine();
if (input.atEnd()) return false; // incomplete row
line3 = input.readLine();
line1.toLower();
line2.toLower();
line3.toLower();
GetSize();
return true;
}
qint64 SRPTile::GetTileNumber(int index){
if(index >= numTiles)
return 0;
int i = index*4;
qint64 result = 0;
char a1, a2, a3;
a1 = line1.at(i).toLatin1();
a2 = line1.at(i+1).toLatin1();
a3 = line1.at(i+2).toLatin1();
char b1, b2, b3;
b1 = line2.at(i).toLatin1();
b2 = line2.at(i+1).toLatin1();
b3 = line2.at(i+2).toLatin1();
char c1, c2, c3;
c1 = line3.at(i).toLatin1();
c2 = line3.at(i+1).toLatin1();
c3 = line3.at(i+2).toLatin1();
//decorations
if(b2=='1'){
//tree
return (qint64)1 << (37 - 1);
}
if(b2=='2'){
//rock
return (qint64)1 << (38 - 1);
}
if(a1=='x')
a1 = ' ';
bool StraightRails = b2=='b';
if(!StraightRails){
switch(b2){
case 'u':
result |= 1 << 1;
StraightRails = true;
break;
case 'd':
result |= 1 << 2;
StraightRails = true;
break;
case 'l':
result |= 1 << 3;
StraightRails = true;
break;
case 'r':
result |= 1 << 4;
StraightRails = true;
break;
default:
break;
}
}
//one-directional
//"straights"
if(a2=='u' && StraightRails && c2=='u'){
//up
result |= 1 << 1;
}
if(a2=='d' && StraightRails && c2=='d'){
//down
result |= 1 << 2;
}
if(b1=='l' && StraightRails && b3=='l'){
//left
result |= 1 << 3;
}
if(b1=='r' && StraightRails && b3=='r'){
//right
result |= 1 << 4;
}
//turnings
if(c3=='u' || c3=='r'){
//turn up-right
result |= 1 << 5;
}
if(c1=='u' || c1=='l'){
//turn up-left
result |= 1 << 6;
}
if(a3=='d' || a3=='r'){
//turn down-right
result |= 1 << 7;
}
if(a1=='d' || a1=='l'){
//turn down-left
result |= 1 << 8;
}
if(a3=='l' || a3=='u'){
//turn left-up
result |= 1 << 9;
}
if(c3=='l' || c3=='d'){
//turn left-down
result |= 1 << 10;
}
if(a1=='r' || a1=='u'){
//turn right-up
result |= 1 << 11;
}
if(c1=='r' || c1=='d'){
//turn right-down
result |= 1 << 12;
}
//stations
if(a2=='u' && b2=='s' && c2=='u'){
//up
result |= 1 << 13;
}
if(a2=='d' && b2=='s' && c2=='d'){
//down
result |= 1 << 14;
}
if(b1=='l' && b2=='s' && b3=='l'){
//left
result |= 1 << 15;
}
if(b1=='r' && b2=='s' && b3=='r'){
//right
result |= 1 << 16;
}
//"both"-directional
//stations
if(a2=='b' && b2=='s' && c2=='b'){
//up/down
result |= 1 << 17;
}
if(b1=='b' && b2=='s' && b3=='b'){
//left/right
result |= 1 << 18;
}
//"straights"
if(a2=='b' && StraightRails && c2=='b'){
//up/down
result |= 1 << 19;
}
if(b1=='b' && StraightRails && b3=='b'){
//left/right
result |= 1 << 20;
}
//turnings
if(c3=='b'){
//bottom and right
result |= 1 << 21;
}
if(c1=='b'){
//bottom and left
result |= 1 << 22;
}
if(a3=='b'){
//top and right
result |= 1 << 23;
}
if(a1=='b'){
//top and left
result |= 1 << 24;
}
return result>>1;
}
int DecodeXml::parseTileMap(QString &text,int XPos, int YPos) {
if(text==0)
return 0; // wrong input data
QTextStream input(&text);
input.readLine(); // nothing better for skipping a line??
vector<SRPTile*> TileLines;
SRPTile* FirstRow = new SRPTile();
TileLines.push_back(FirstRow);
if(!FirstRow->ReadFromStream(input))
return 0;// incomplete data
if(FirstRow->size < 3)
return 0;// the only tile is not complete
//skip the line
if(!input.atEnd())
input.readLine();
//data not ended?
if (!input.atEnd()){
//ok, so load the whole data
SRPTile* NextRow = new SRPTile();
bool DeleteLastRow = true;
while(NextRow->ReadFromStream(input)){
TileLines.push_back(NextRow);
if (input.atEnd()){
DeleteLastRow = false;
break;
}
input.readLine(); // nothing better for skipping line??
NextRow = new SRPTile();
}
if(DeleteLastRow){
delete NextRow;
}
}
int MapHeight = TileLines.size();
//Find the MapWidth
int MapWidth = 0;
for(int i = 0; i < MapHeight; i++){
int numTiles = TileLines[i]->numTiles;
if(numTiles > MapWidth)
MapWidth = numTiles;
}
//Paint our art.
for(int y = 0; y < MapHeight; y++){
SRPTile* Row = TileLines[y];
for(int x = 0; x < MapWidth; x++){
qint64 tile = Row->GetTileNumber(x);
qint64 flag = 1;
for(int i = 1; i <= 39; i++){
if(flag&tile){
engine->addTile(x+XPos,MapHeight-1-y+YPos,i);
tileSimWidget->addTile(x+XPos,MapHeight-1-y+YPos,i);
}
flag <<= (qint64)1;
}
}
}
//do the clean up.
while(TileLines.size()){
delete TileLines.back();
TileLines.pop_back();
}
return 1;
}
|
61f38d2b65448a1cf28366d9d4a9c0f7d657a3c1
|
2af8ad4883fe6626c347183207b1331043ed9b5d
|
/source/ProcessorIF.cpp
|
539e4d1f52c84d4fbb4aa28355398858c644dea7
|
[
"BSD-3-Clause",
"MIT"
] |
permissive
|
specpose/VST3SkeletonOpenGLViewTest
|
7fdab4474d4f406752b5eb3688519cff70d151f4
|
7af05ac52168b07f1cef4059617eb5883f2bfce3
|
refs/heads/master
| 2021-01-12T04:45:24.486596
| 2017-01-06T18:35:55
| 2017-01-06T18:35:55
| 77,789,973
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,878
|
cpp
|
ProcessorIF.cpp
|
#include "ProcessorIF.h"
using namespace Steinberg;
using namespace Steinberg::Vst;
FUID ProcessorIF::cid(0x49BAF003, 0xB44D455E, 0x9CBDE54F, 0x7FF2CBA1);
//------------------------------------------------------------------------
//------------------------------------------------------------------------
//------------------------------------------------------------------------
ProcessorIF::ProcessorIF()
{
setControllerClass(ControllerGL::cid);
}
//------------------------------------------------------------------------
tresult PLUGIN_API ProcessorIF::initialize(FUnknown* context)
{
tresult res = AudioEffect::initialize(context);
if (res == kResultTrue)
{
addAudioInput(USTRING("Audio Input"), SpeakerArr::kStereo);
addAudioOutput(USTRING("Audio Output"), SpeakerArr::kStereo);
}
return res;
}
//------------------------------------------------------------------------
tresult PLUGIN_API ProcessorIF::setBusArrangements(SpeakerArrangement* inputs, int32 numIns, SpeakerArrangement* outputs, int32 numOuts)
{
if (numIns != 1 || numOuts != 1)
return kResultFalse;
if (inputs[0] != outputs[0])
return kResultFalse;
return AudioEffect::setBusArrangements(inputs, numIns, outputs, numOuts);
}
//------------------------------------------------------------------------
tresult PLUGIN_API ProcessorIF::setProcessing(Steinberg::TBool state)
{
return AudioEffect::setProcessing(state);
}
//------------------------------------------------------------------------
tresult PLUGIN_API ProcessorIF::process(ProcessData& data)
{
for (int32 sample = 0; sample < data.numSamples; sample++)
{
for (int32 channel = 0; channel < data.inputs[0].numChannels; channel++)
{
float value = data.inputs[0].channelBuffers32[channel][sample];
data.outputs[0].channelBuffers32[channel][sample] = value;
value = std::abs(value);
}
}
return kResultTrue;
}
|
2aa64ab99cc6fd518a5bd43454db9c4f330dc7f3
|
4adf8d064c33e7498b0e5baaf6767c30261cb71b
|
/WeeklyCompetition/20211205/2096.cpp
|
e1a5fcd835b0d661e6bb3cc3794cecd3d4ad78e1
|
[] |
no_license
|
codingClaire/leetcode
|
0f679b526c14083ccf6d35937e5d845c9fa27f71
|
45fd500d2e2f52df0adc9d47ccc9fd29993dbef1
|
refs/heads/main
| 2023-05-25T12:34:27.952866
| 2023-05-20T15:09:02
| 2023-05-20T15:09:02
| 148,796,605
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 4,361
|
cpp
|
2096.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:
string getDirections(TreeNode *root, int startValue, int destValue)
{
unordered_map<TreeNode *, TreeNode *> fa; // 父节点哈希表
TreeNode *s = nullptr; // 起点节点
TreeNode *t = nullptr; // 终点节点
// 深度优先搜索维护哈希表与起点终点
function<void(TreeNode *)> dfs = [&](TreeNode *curr)
{
if (curr->val == startValue)
{
s = curr;
}
if (curr->val == destValue)
{
t = curr;
}
if (curr->left)
{
fa[curr->left] = curr;
dfs(curr->left);
}
if (curr->right)
{
fa[curr->right] = curr;
dfs(curr->right);
}
};
dfs(root);
// 求出根节点到对应节点的路径字符串
function<string(TreeNode *)> path = [&](TreeNode *curr)
{
string res;
while (curr != root)
{
TreeNode *par = fa[curr];
if (curr == par->left)
{
res.push_back('L');
}
else
{
res.push_back('R');
}
curr = par;
}
reverse(res.begin(), res.end());
return res;
};
string path1 = path(s);
string path2 = path(t);
// 计算最长公共前缀并删去对应部分,同时将 path_1 逐字符修改为 'U'
int l1 = path1.size(), l2 = path2.size();
int i = 0;
while (i < min(l1, l2))
{
if (path1[i] == path2[i])
{
++i;
}
else
{
break;
}
}
string finalpath(l1 - i, 'U'); // 最短路径对应字符串
finalpath.append(path2.substr(i, l2 - i));
return finalpath;
}
};
//改写,但是这个版本会TLE
//官方题解的时间空间复杂度都挺高的
class Solution
{
public:
TreeNode *s = nullptr; // start point
TreeNode *t = nullptr;// destination point
unordered_map<TreeNode *, TreeNode *> fa; //father dict
void DFS(TreeNode *current, int startValue, int destValue)
{
if (current->val == startValue)
s = current;
if (current->val == destValue)
t = current;
if (current->left != NULL)
{
fa[current->left] = current;
DFS(current->left, startValue, destValue);
}
if (current->right != NULL)
{
fa[current->right] = current;
DFS(current->right, startValue, destValue);
}
}
string getPath(TreeNode *root,TreeNode *current)
{//从root到current的路径,自底向上地增加方向,最后需要反转路径
string path="";
while(current!=root){
TreeNode * father=fa[current];
if(father->left ==current)
path.push_back('L');
if(father->right ==current)
path.push_back('R');
current=father;
}
reverse(path.begin(), path.end());
return path;
}
string getDirections(TreeNode *root, int startValue, int destValue)
{
DFS(root, startValue, destValue); // 维护start dest和father dict
string path1 = getPath(root,s);
string path2 = getPath(root,t);
int l1 = path1.size(), l2 = path2.size();
int prenum = 0;
while (prenum < min(l1, l2))
{
if (path1[prenum] == path2[prenum])
prenum++;
}
string finalpath(l1 - prenum, 'U');
finalpath.append(path2.substr(prenum, l2 - prenum)); //从prenum开始的l2-prenum个字符
return finalpath;
}
};
|
ad3a40235c4dc2e5fd86414808b793f2e9f4bc91
|
a41ff94559e24cba03f42081ee5452f64063622a
|
/Notes/Recursion/CoinExchange.cpp
|
5bb27a2b53dfccc91991cf62cde993e486424b40
|
[] |
no_license
|
RavenColEvol/competitive-journey
|
aaff3ebd66bb6fdbbcff33de7516ac401023e1f0
|
0e5cd2ff7e7c92644a8bee2b016c2eead4cb8370
|
refs/heads/master
| 2022-11-23T02:06:10.966813
| 2020-07-30T13:32:57
| 2020-07-30T13:32:57
| 229,191,033
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 553
|
cpp
|
CoinExchange.cpp
|
#include<bits/stdc++.h>
#define REP(i, a, b) for(int i = a; i <= b; i++)
#define fastio ios::sync_with_stdio(0); cin.tie(0);
using namespace std;
int minCoin(int value, int coins[], int m)
{
if(value==0)
return 0;
int answer = INT_MAX;
REP(i, 0 , m-1){
if(coins[i] <= value)
{
int temp = 1 + minCoin(value - coins[i], coins, m);
if(answer > temp)
answer = temp;
}
}
return answer;
}
int main()
{
int coins[] = {1, 5, 10};
int n = 31;
int m = sizeof(coins)/sizeof(coins[0]);
cout << minCoin(n, coins, m);
return 0;
}
|
f2b793362db02b05199fe5fbc52d1a32ba32e66e
|
0299d546825752a82b86d7ddd156f9bcd7ea4bc5
|
/src/ElectroMagnSolver/EF_Solver1D_TDMA.cpp
|
997532adea7a0f922e3c6c0f2cbc3bb329878315
|
[] |
no_license
|
wphu/SmileiSE
|
400eed1bf60a109ab16218efec03ab3edfb741a6
|
ac5dd2df9425bb9b74e8cd8cc399a2bd30950b69
|
refs/heads/master
| 2020-05-25T06:43:59.753150
| 2018-03-21T06:59:44
| 2018-03-21T06:59:44
| 84,918,453
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,482
|
cpp
|
EF_Solver1D_TDMA.cpp
|
#include "EF_Solver1D_TDMA.h"
#include "ElectroMagn.h"
#include "Field1D.h"
EF_Solver1D_TDMA::EF_Solver1D_TDMA(PicParams ¶ms, SmileiMPI* smpi, int nx_sou_left)
: Solver1D(params)
{
SmileiMPI_Cart1D* smpi1D = static_cast<SmileiMPI_Cart1D*>(smpi);
dx = params.cell_length[0];
dx_inv_ = 1.0 / dx;
dx_sq = dx * dx;
nx = params.n_space_global[0]+1;
nx_source_left = nx_sou_left;
if(params.bc_em_type_x[0] == "Dirichlet"){
bc_x_left = 1;
bc_e_value[0][0] = params.bc_em_value_x[0];
}
else if(params.bc_em_type_x[0] == "Neumann"){
bc_x_left = 2;
bc_e_derivative[0][0] = params.bc_em_value_x[0];
}
if(params.bc_em_type_x[1] == "Dirichlet"){
bc_x_right = 1;
bc_e_value[0][1] = params.bc_em_value_x[1];
}
else if(params.bc_em_type_x[1] == "Neumann"){
bc_x_right = 2;
bc_e_derivative[0][1] = params.bc_em_value_x[1];
}
if(smpi1D->isMaster()){
//grid1D = static_cast<Grid1D*>(grid);
initTDMA();
}
//initSLU();
}
EF_Solver1D_TDMA::~EF_Solver1D_TDMA()
{
}
void EF_Solver1D_TDMA::operator()( ElectroMagn* fields, SmileiMPI* smpi)
{
SmileiMPI_Cart1D* smpi1D = static_cast<SmileiMPI_Cart1D*>(smpi);
// Static-cast of the fields
Field1D* Ex1D = static_cast<Field1D*>(fields->Ex_);
Field1D* rho1D = static_cast<Field1D*>(fields->rho_);
Field1D* phi1D = static_cast<Field1D*>(fields->phi_);
Field1D* rho1D_global = static_cast<Field1D*>(fields->rho_global);
Field1D* phi1D_global = static_cast<Field1D*>(fields->phi_global);
Field1D* Ex1D_global = static_cast<Field1D*>(fields->Ex_global);
if(smpi1D->isMaster()){
solve_TDMA(rho1D_global, phi1D_global);
//phi1D_global->put_to(0.0);
solve_Ex(phi1D_global, Ex1D_global);
}
//Ex1D_global->put_to(0.0);
//Ey1D_global->put_to(0.0);
smpi1D->barrier();
smpi1D->scatterField(Ex1D_global, Ex1D);
smpi1D->scatterField(phi1D_global, phi1D);
}
void EF_Solver1D_TDMA::initTDMA()
{
a = new double[nx - nx_source_left];
b = new double[nx - nx_source_left];
c = new double[nx - nx_source_left];
f = new double[nx - nx_source_left];
e = new double[nx - nx_source_left];
d = new double[nx - nx_source_left];
for(int i =1; i < nx-1-nx_source_left; i++)
{
a[i] = 1.0;
b[i] = -2.0;
c[i] = 1.0;
}
if(bc_x_left == 1){
a[0] = 0.0;
b[0] = 1.0;
c[0] = 0.0;
}
else if(bc_x_left == 2){
a[0] = 0.0;
b[0] = 1.0;
c[0] = -1.0;
}
if(bc_x_right == 1){
a[nx-1-nx_source_left] = 0.0;
b[nx-1-nx_source_left] = 1.0;
c[nx-1-nx_source_left] = 0.0;
}
else if(bc_x_right == 2){
a[nx-1-nx_source_left] = -1.0;
b[nx-1-nx_source_left] = 1.0;
c[nx-1-nx_source_left] = 0.0;
}
}
void EF_Solver1D_TDMA::solve_TDMA(Field* rho, Field* phi)
{
Field1D* rho1D = static_cast<Field1D*>(rho);
Field1D* phi1D = static_cast<Field1D*>(phi);
//> The boundary value can be changed with time
for(int i = 1; i < nx-1-nx_source_left; i++)
{
f[i] = -dx_sq * const_ephi0_inv * (*rho1D)(i+nx_source_left);
}
if(bc_x_left == 1){
f[0] = bc_e_value[0][0];
}
else if(bc_x_left == 2){
f[0] = bc_e_derivative[0][0];
}
if(bc_x_right == 1){
f[nx-1-nx_source_left] = bc_e_value[0][1];
}
else if(bc_x_right == 2){
f[nx-1-nx_source_left] = -bc_e_derivative[0][1];
}
e[0] = c[0] / b[0];
d[0] = f[0] / b[0];
for(int i =1; i < nx-1-nx_source_left; i++)
{
e[i] = c[i] / ( b[i] - a[i] * e[i-1] );
d[i] = ( f[i] -a[i] * d[i-1] ) / ( b[i] - a[i] * e[i-1] );
}
(*phi1D)(nx-1) = ( f[nx-1-nx_source_left] - a[nx-1-nx_source_left] * d[nx-2-nx_source_left] ) / ( b[nx-1-nx_source_left] - a[nx-1-nx_source_left] * e[nx-2-nx_source_left] );
for(int i = nx-2-nx_source_left; i >= 0; i--)
{
(*phi1D)(i+nx_source_left) = d[i] - e[i] * (*phi1D)(i+1+nx_source_left);
}
for(int i=0; i<nx_source_left; i++)
{
(*phi1D)(i) = (*phi1D)(nx_source_left);
}
}
void EF_Solver1D_TDMA::solve_Ex(Field* phi, Field* Ex)
{
Field1D* phi1D = static_cast<Field1D*>(phi);
Field1D* Ex1D = static_cast<Field1D*>(Ex);
for(int i = 1; i < nx-1; i++)
{
(*Ex1D)(i) = - ((*phi1D)(i+1) - (*phi1D)(i-1)) *0.5 * dx_inv_;
}
(*Ex1D)(0) = -(-3.0 * (*phi1D)(0) + 4.0 * (*phi1D)(1) - (*phi1D)(2)) *0.5 * dx_inv_;
(*Ex1D)(nx-1) = -((*phi1D)(nx-3) - 4.0 * (*phi1D)(nx-2) + 3.0 * (*phi1D)(nx-1)) *0.5 * dx_inv_;
}
// no source region for electric field
void EF_Solver1D_TDMA::initTDMA_org()
{
a = new double[nx];
b = new double[nx];
c = new double[nx];
f = new double[nx];
e = new double[nx];
d = new double[nx];
for(int i =1; i < nx-1; i++)
{
a[i] = 1.0;
b[i] = -2.0;
c[i] = 1.0;
}
if(bc_x_left == 1){
a[0] = 0.0;
b[0] = 1.0;
c[0] = 0.0;
}
else if(bc_x_left == 2){
a[0] = 0.0;
b[0] = 1.0;
c[0] = -1.0;
}
if(bc_x_right == 1){
a[nx-1] = 0.0;
b[nx-1] = 1.0;
c[nx-1] = 0.0;
}
else if(bc_x_right == 2){
a[nx-1] = -1.0;
b[nx-1] = 1.0;
c[nx-1] = 0.0;
}
}
// no source region for electric field
void EF_Solver1D_TDMA::solve_TDMA_org(Field* rho, Field* phi)
{
Field1D* rho1D = static_cast<Field1D*>(rho);
Field1D* phi1D = static_cast<Field1D*>(phi);
//> The boundary value can be changed with time
for(int i = 1; i < nx-1; i++)
{
f[i] = -dx_sq * const_ephi0_inv * (*rho1D)(i);
}
if(bc_x_left == 1){
f[0] = bc_e_value[0][0];
}
else if(bc_x_left == 2){
f[0] = bc_e_derivative[0][0];
}
if(bc_x_right == 1){
f[nx-1] = bc_e_value[0][1];
}
else if(bc_x_right == 2){
f[nx-1] = -bc_e_derivative[0][1];
}
e[0] = c[0] / b[0];
d[0] = f[0] / b[0];
for(int i =1; i < nx-1; i++)
{
e[i] = c[i] / ( b[i] - a[i] * e[i-1] );
d[i] = ( f[i] -a[i] * d[i-1] ) / ( b[i] - a[i] * e[i-1] );
}
(*phi1D)(nx-1) = ( f[nx-1] - a[nx-1] * d[nx-2] ) / ( b[nx-1] - a[nx-1] * e[nx-2] );
for(int i = nx-2; i >= 0; i--)
{
(*phi1D)(i) = d[i] - e[i] * (*phi1D)(i+1);
}
}
|
3d1b740a5f3e5817862f16bcd45077eabc50b2d4
|
37cca16f12e7b1d4d01d6f234da6d568c318abee
|
/ext/src/java/io/BufferedOutputStream.hpp
|
ee21cff1450d47db99e59ca7a58564155a1a68c2
|
[] |
no_license
|
subhash1-0/thirstyCrow
|
e48155ce68fc886f2ee8e7802567c1149bc54206
|
78b7e4e3d2b9a9530ad7d66b44eacfe73ceea582
|
refs/heads/master
| 2016-09-06T21:25:54.075724
| 2015-09-21T17:21:15
| 2015-09-21T17:21:15
| 42,881,521
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,028
|
hpp
|
BufferedOutputStream.hpp
|
// Generated from C:/Program Files/Java/jre1.8.0_51/lib/rt.jar
#pragma once
#include <fwd-pastry-2.1.hpp>
#include <java/io/fwd-pastry-2.1.hpp>
#include <java/io/FilterOutputStream.hpp>
struct default_init_tag;
class java::io::BufferedOutputStream
: public FilterOutputStream
{
public:
typedef FilterOutputStream super;
public: /* protected */
::int8_tArray* buf { };
int32_t count { };
protected:
void ctor(OutputStream* arg0);
void ctor(OutputStream* arg0, int32_t arg1);
public:
void flush() override;
/*void flushBuffer(); (private) */
void write(int32_t arg0) override;
void write(::int8_tArray* arg0, int32_t arg1, int32_t arg2) override;
// Generated
BufferedOutputStream(OutputStream* arg0);
BufferedOutputStream(OutputStream* arg0, int32_t arg1);
protected:
BufferedOutputStream(const ::default_init_tag&);
public:
static ::java::lang::Class *class_();
void write(::int8_tArray* b);
private:
virtual ::java::lang::Class* getClass0();
};
|
91fd482c3500cfca0765a55aa48e20c377a84a77
|
ccb5c239db674fddddc051a314945e648ede05cb
|
/main.cpp
|
7fb85136e3f365d2b93f3e1eaad966cc503428de
|
[] |
no_license
|
LittleD3092/bottle_and_cap_problem
|
809927b84bb3bc741325bd0371e6528cd3a384f7
|
3c5e02a7164275e2280cd45e82a44cbf25f49a6c
|
refs/heads/master
| 2023-03-27T19:35:38.643955
| 2021-03-23T13:26:26
| 2021-03-23T13:26:26
| 350,722,640
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 431
|
cpp
|
main.cpp
|
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{
//input
int x;
scanf("%d", &x);
//change money to bottle and cap
int bottle = x;
int cap = x;
//process
while(cap >= 3)
{
if(cap == 3)
{
cap = 0;
bottle ++;
break;
}
int new_bottle = cap/4;
bottle += new_bottle;
cap = cap%4 + new_bottle;
}
//output
printf("%d\n", bottle);
//end
system("pause");
return 0;
}
|
d7a5a9bb2367d6648f2108a6097ff4c5293fc31a
|
d479a3ea5db1516574b20df0456f5fb9238c4992
|
/STL_BASICS/containers/seq_containers/seq_containers.cpp
|
72bb9eef7defe7196546aed690c77c08c4a19c55
|
[] |
no_license
|
v33rh0ra/cpp_filestuff
|
6e512a285accc509886ee21caa27ada33c8d3aeb
|
9a0fd8090fd370d2d9cd86766a041ab43240691d
|
refs/heads/master
| 2020-03-24T09:07:58.782072
| 2018-07-28T11:17:48
| 2018-07-28T11:17:48
| 142,619,358
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 609
|
cpp
|
seq_containers.cpp
|
/* Sequence Containers
* -vector, deque, list, forward list, array
*
*/
/* Associative Containers
* (binary tree)
* -set, multiset
* -map, multimap
*/
/* unordered containers
* - unordered set/multiset
* - unordered map/multimap
*/
#include <vector>
#include <deque>
#include <list>
#include <set> //set and multiset
#include <map> //map and multimap
#include <unordered_set> //unordered set/multiset
#include <unordered_map> //unordered map/multimap
#include <iterator>
#include <algorithm> //includes most algos
#include <numeric> //numeric algo
#include <functional> //for functors?? wassdat!!!!! :(
|
36bd94750e4240c858fcf22167aab1bb566e60ac
|
a6c1139ce5989786ec86baa74e6d5b579b7be6f6
|
/stockServer/fetch/FetchActor.hpp
|
f85f646648c81e7ee3662b30bf43d02002b57b3b
|
[] |
no_license
|
spectrum968/dfwbi
|
99b35bfb39450d4bd686a9ef35b7c41ded4a59f8
|
5f004dd5027f17884fe6d398620019090e8c6d4c
|
refs/heads/master
| 2022-06-29T14:17:04.417249
| 2014-01-19T15:25:13
| 2014-01-19T15:25:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 6,321
|
hpp
|
FetchActor.hpp
|
#ifndef __FETCH_ACTOR_H_
#define __FETCH_ACTOR_H__
#include <boost/algorithm/string.hpp>
#include "boost/date_time/posix_time/posix_time.hpp"
#include <Theron/Actor.h>
#include <iostream>
#include <sstream>
#include <tidy/tidy.h>
#include <tidy/buffio.h>
#include <curl/curl.h>
#include <unicode/ucnv.h>
#include "OperateActor.hpp"
#include "StockPrice.hpp"
// static size_t fetch_write(void *ptr, size_t size, size_t nmemb, TidyBuffer *out)
// {
// uint r;
// r = size * nmemb;
// tidyBufAppend( out, ptr, r );
// return(r);
// }
static size_t fetch_write(void *ptr, size_t size, size_t nmemb, std::stringstream *stream)
{
stream->write((char*)ptr,size*nmemb);
return size*nmemb;
}
class FetchActor : public OperateActor
{
public:
inline FetchActor()
{
RegisterHandler(this, &FetchActor::FetchTaskHandler);
}
void OperateHandler(const OperateMessage &message, const Theron::Address from)
{
switch(message.type)
{
case OperateMessage::STATUS:
std::cout<<"get status...."<<std::endl;
Send(OperateMessage(OperateMessage::RESP,"FetchActor ok"), from);
break;
default:
break;
}
}
void FetchTaskHandler(const FetchTaskMessage &message, const Theron::Address from)
{
std::cout<<"get data.................."<<std::endl;
std::string url=message.fi->url;
char curl_errbuf[CURL_ERROR_SIZE];
CURL *curl = curl_easy_init();
int err;
fetch::FetchResult *result=new fetch::FetchResult();
fetch::FetchInfo fi=*(message.fi);
delete message.fi;
result->type=fetch::UNKNOWN;
result->url=fi.url;
result->pathList=fi.pathList;
result->attMap=fi.attMap;
int errCode=0;
if(curl!=NULL) {
curl_easy_setopt(curl, CURLOPT_URL,url.c_str());
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_errbuf);
// curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L);
// curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 10);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL,1);
curl_easy_setopt(curl, CURLOPT_TIMEOUT ,60);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fetch_write);
std::stringstream iss;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &iss);
err=curl_easy_perform(curl);
if ( !err )
{
std::map<std::string,std::string>::iterator efit=fi.attMap.find("encode");
char *resStr=new char[iss.str().length()*3];
memset(resStr,0,iss.str().length()*3);
if(efit!=fi.attMap.end())
{
UErrorCode error = U_ZERO_ERROR;
ucnv_convert("UTF-8",efit->second.c_str(),resStr, iss.str().length()*3, iss.str().c_str(), iss.str().length(), &error );
}else
{
strcpy(resStr,iss.str().c_str());
}
TidyDoc tdoc;
// TidyBuffer tidy_errbuf = {0};
// TidyBuffer docbuf = {0};
tdoc = tidyCreate();
tidyOptSetInt(tdoc, TidyWrapLen, 4096);
// tidySetErrorBuffer( tdoc, &tidy_errbuf );
tidyOptSetBool( tdoc, TidyXmlOut, yes );
tidyOptSetBool(tdoc, TidyQuoteNbsp, no);
tidyOptSetBool(tdoc, TidyForceOutput, yes); /* try harder */
// tidyOptSetBool( tdoc, TidyXmlDecl, yes );
tidyOptSetBool(tdoc, TidyQuiet, yes);
tidyOptSetBool(tdoc, TidyShowWarnings, no);
tidyOptSetValue(tdoc,TidyDoctype,"omit");
tidyOptSetBool(tdoc, TidyFixBackslash, yes);
tidyOptSetBool(tdoc, TidyMark, no);
tidySetCharEncoding(tdoc,"utf8");
// tidyBufInit(&docbuf);
// err = tidyParseBuffer(tdoc, &docbuf);
err = tidyParseString(tdoc, resStr);
if ( err >= 0 ) {
err = tidyCleanAndRepair(tdoc); /* fix any problems */
if ( err >= 0 ) {
// err=tidyRunDiagnostics(tdoc); /* load tidy error buffer */
// if ( err >= 0 ) {
// std::cout<<"tidy error:"<<tidy_errbuf.bp<<std::endl; /* show errors */
TidyBuffer outbuf = {0};
tidyBufInit(&outbuf);
tidySaveBuffer( tdoc, &outbuf );
std::stringstream hss;
hss<<(char*)outbuf.bp;
tidyBufFree(&outbuf);
result->result=hss.str();
// }
// else
// {
// errCode=-5;
// }
}else
{
errCode=-4;
}
}else
{
errCode=-3;
}
// tidyBufFree(&tidy_errbuf);
// tidyBufFree(&docbuf);
tidyRelease(tdoc);
delete [] resStr;
}else
{
errCode=-2;
}
}else
{
errCode=-1;
}
if(errCode<0)
{
std::stringstream ess;
ess<<errCode;
result->type=fetch::ERROR;
result->result=ess.str();
}
curl_easy_cleanup(curl);
Send(FetchResultMessage(result), from);
}
private:
};
#endif
|
4e3aae132e43cda9e9bc017a95eb4a693adae1a3
|
32a9356bc4e0af62eb960c89ab3adc373812675f
|
/contrib/CCF/CCF/Test/IDL2/SemanticGraph/HandBuilt/Builder.hpp
|
180f9ba313631be86c905799fac3ddfd0f0fb247
|
[] |
no_license
|
DOCGroup/XSC
|
0c2ce163a307f9d20366d707f772ff1f04c72261
|
b85458b18b95bf81dc9c807d8d06768111b22172
|
refs/heads/master
| 2023-08-25T18:53:51.641598
| 2022-05-10T14:18:58
| 2022-05-10T14:18:58
| 27,931,533
| 4
| 3
| null | 2023-09-11T06:12:54
| 2014-12-12T17:54:46
|
C++
|
UTF-8
|
C++
| false
| false
| 383
|
hpp
|
Builder.hpp
|
// file : Test/IDL2/SemanticGraph/HandBuilt/Builder.hpp
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
#ifndef TEST_IDL2_SEMANTIC_GRAPH_BUILDER_HPP
#define TEST_IDL2_SEMANTIC_GRAPH_BUILDER_HPP
#include "CCF/IDL2/SemanticGraph.hpp"
class Builder
{
public:
CCF::IDL2::SemanticGraph::TranslationUnit*
build ();
};
#endif // TEST_IDL2_SEMANTIC_GRAPH_BUILDER_HPP
|
370041e1f7b88743126614e9f1e55b4002632ed3
|
7a0211f643a19c0e4fc985c1d749ded40dd78e97
|
/NRF24__transmitter_code/NRF24__transmitter_code..ino
|
2995d1e4cef31e5c1182261ad650c8be5487deb6
|
[
"MIT"
] |
permissive
|
yinflight/Airplane--Fixed-Wing-UAV
|
8412f3b9c1da974501419990c47a3698e92c7ec4
|
bd9ca980fa65ab15bfdd5fdf007a2ec4fb6e9af8
|
refs/heads/master
| 2023-03-22T16:04:31.675544
| 2019-09-22T04:36:04
| 2019-09-22T04:36:04
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,727
|
ino
|
NRF24__transmitter_code..ino
|
/*A basic 4 channel transmitter using the nRF24L01 module.*/
/* Like, share and subscribe, https://www.youtube.com/channel/UCNMdGm2BwTYoPvY7Yus1QpA */
/* Channel Name Manoj Sharma...(yes, I know I need to change it. */
/* First include the libraries.Google and Download it.
* Install the NRF24 library to your IDE
* Upload this code to the Arduino UNO
* Connect a NRF24 module to it:
Module // Arduino UNO
GND -> GND
Vcc -> 3.3V
CE -> D9
CSN -> D10
CLK -> D13
MOSI -> D11
MISO -> D12
*/
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
/*Create a unique pipe out. The receiver has to
wear the same unique code*/
const uint64_t pipeOut = 0xE8E8F0F0E1LL; //IMPORTANT: The same as in the receiver
RF24 radio(9, 10); // select CSN pin
// The sizeof this struct should not exceed 32 bytes
// This gives us up to 32 8 bits channals
struct MyData {
byte throttle;
byte pitch;
byte roll; // we will be only using 3 channels Throttle, one servo for roll and one for pitch control.
};
MyData data;
void resetData()
{
//This are the start values of each channal
// Throttle is 0 in order to stop the motors
//127 is the middle value of the 10ADC.
data.throttle = 0;
data.pitch = 127;
data.roll = 127;
}
void setup()
{
//Start everything up
radio.begin();
radio.setAutoAck(false);
radio.setDataRate(RF24_250KBPS);
radio.openWritingPipe(pipeOut);
radio.setPALevel(RF24_PA_MAX); //if the connection does'nt work change it to LOW or MIN( options LOW,MIN,HIGH,MAX)
radio.stopListening();
resetData();
}
/**************************************************/
// Returns a corrected value for a joystick position that takes into account
// the values of the outer extents and the middle of the joystick range.
int mapJoystickValues(int val, int lower, int middle, int upper, bool reverse)
{
val = constrain(val, lower, upper);
if ( val < middle )
val = map(val, lower, middle, 0, 128);
else
val = map(val, middle, upper, 128, 255);
return ( reverse ? 255 - val : val );
}
void loop()
{
// The calibration numbers used here should be measured
// for your joysticks till they send the correct values.
data.throttle = mapJoystickValues( analogRead(A0), 13, 524, 1015, true );//connect the middle pin of the throttle potentionmeter to analog pin A0 and the other two pins to ground and +5v or arduino
data.roll = mapJoystickValues( analogRead(A1), 12, 544, 1021, true );//do same procedure here also(anolog pin A1)
data.pitch = mapJoystickValues( analogRead(A2), 34, 522, 1020, true );//and here too(Analog pin A2)
radio.write(&data, sizeof(MyData));
}
|
33032f393c57b84ae7abed6e3998b6a4c25fd8b6
|
6fe0473cfa3699bc3ed99ae159ea5bcfd29b9e4b
|
/hackerrank/warmup/FillingJars.cpp
|
2f64b5c0870f66d5b02b49d7fcbdb852fc89ac8e
|
[] |
no_license
|
digideskio/contest
|
52836b5b7afc9d59194626f17844bdfd5e755a93
|
83657f96544a742ef746eda926622799fd080369
|
refs/heads/master
| 2021-01-21T03:46:16.857522
| 2015-03-25T22:42:56
| 2015-03-25T22:42:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 456
|
cpp
|
FillingJars.cpp
|
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
int main() {
ll N;
ll M;
cin >> N >> M;
ll jar1;
ll jar2;
ll total = 0;
ll temp;
for(ll i=0; i<M; i++){
cin >> jar1 >> jar2 >> temp;
temp *=(abs(jar1-jar2) +1);
total += temp;
}
ll final = total/N;
int f = (int)final;
cout << f << endl;
return 0;
}
|
9c0dcfe50ab50ef7291492c5d74301bfd549bb60
|
363b62d1424fedf7a40a87045fccf9eaa469ff5f
|
/todo-ui/taskwidget.h
|
e9a3dce175685f6adfa9891beb6833a12201cc8c
|
[] |
no_license
|
vagnergrossklaus/todo-qt
|
725a985ec8c74715f42a31ac7b3353c49b3ccd88
|
43be2d32a519f56f26165441c9efae1b5b3dad7f
|
refs/heads/master
| 2021-06-30T23:30:10.322269
| 2019-03-19T13:08:29
| 2019-03-19T13:08:29
| 138,225,039
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 599
|
h
|
taskwidget.h
|
#ifndef TASKWIDGET_H
#define TASKWIDGET_H
#include <QWidget>
#include "model/taskmodel.h"
namespace Ui {
class TaskWidget;
}
class TaskWidget : public QWidget {
Q_OBJECT
public:
explicit TaskWidget(TaskModel *task, QWidget *parent = nullptr);
~TaskWidget();
TaskModel *task() const;
private:
Ui::TaskWidget *ui;
TaskModel *_task;
void strikeOut(Qt::CheckState state);
private slots:
void onStateChanged(int state);
void onEditClicked();
void onRemoveClicked();
signals:
void edited(TaskWidget *widget);
void removed(TaskWidget *widget);
};
#endif // TASKWIDGET_H
|
264fd209b62635b431bc310ccf5d8305ddf7e6d1
|
3d860cb7fc8b1d1b15fbff1f44e32dc6a8fe6176
|
/source/Seat.cpp
|
e6cd20959201b74cb534079404d6a2db82912572
|
[] |
no_license
|
raven-os/feathers
|
0202352b30aeefc5ffc236d2ead8c456fb1d6646
|
30b9c5c04c8e0c1d6f6487e0fa4eb001e5bbff3c
|
refs/heads/master
| 2021-06-03T21:50:12.469054
| 2019-12-12T21:07:23
| 2019-12-12T21:07:23
| 111,445,046
| 14
| 1
| null | 2019-01-21T20:06:18
| 2017-11-20T18:03:48
|
C++
|
UTF-8
|
C++
| false
| false
| 2,382
|
cpp
|
Seat.cpp
|
#include "Seat.hpp"
#include "Server.hpp"
Seat::Seat()
{
seat = wlr_seat_create(Server::getInstance().getWlDisplay(), "seat0");
SET_LISTENER(Seat, SeatListeners, request_cursor, seat_request_cursor);
wl_signal_add(&seat->events.request_set_cursor, &request_cursor);
SET_LISTENER(Seat, SeatListeners, request_set_selection, seat_request_set_selection);
wl_signal_add(&seat->events.request_set_selection, &request_set_selection);
SET_LISTENER(Seat, SeatListeners, request_set_primary_selection, seat_request_set_primary_selection);
wl_signal_add(&seat->events.request_set_primary_selection, &request_set_primary_selection);
}
void Seat::seat_request_cursor(wl_listener *listener, void *data)
{
wlr_seat_pointer_request_set_cursor_event *event = static_cast<wlr_seat_pointer_request_set_cursor_event *>(data);
wlr_seat_client *focused_client = seat->pointer_state.focused_client;
if (focused_client == event->seat_client)
{
wlr_cursor_set_surface(Server::getInstance().cursor.cursor, event->surface, event->hotspot_x, event->hotspot_y);
}
}
void Seat::seat_request_set_selection(wl_listener *listener, void *data)
{
wlr_seat_request_set_selection_event *event =
static_cast<wlr_seat_request_set_selection_event *>(data);
wlr_seat_set_selection(seat, event->source, event->serial);
}
void Seat::seat_request_set_primary_selection(wl_listener *listener, void *data)
{
wlr_seat_request_set_primary_selection_event *event =
static_cast<wlr_seat_request_set_primary_selection_event *>(data);
wlr_seat_set_primary_selection(seat, event->source, event->serial);
}
wlr_seat *Seat::getSeat() const noexcept
{
return seat;
}
void Seat::unfocusPrevious()
{
if (auto *prev_surface = seat->keyboard_state.focused_surface)
{
if (wlr_surface_is_xdg_surface_v6(prev_surface))
{
wlr_xdg_surface_v6 *previous = wlr_xdg_surface_v6_from_wlr_surface(prev_surface);
wlr_xdg_toplevel_v6_set_activated(previous, false);
}
else if (wlr_surface_is_xdg_surface(prev_surface))
{
wlr_xdg_surface *previous = wlr_xdg_surface_from_wlr_surface(prev_surface);
wlr_xdg_toplevel_set_activated(previous, false);
}
else if (wlr_surface_is_layer_surface(prev_surface))
{
wlr_layer_surface_v1 *previous = wlr_layer_surface_v1_from_wlr_surface(prev_surface);
(void)previous; // do nothing for the moment
}
}
}
|
9042cd0a91c8b8b75a77b9215744df437890c530
|
fb606fe829b50476ad5cc20be08bb32416b3ad3a
|
/Курсовая работа/Coursework(ORIGINAL)/find.h
|
f01b4770c6f20ac54312f3cee5185d915a6d4d17
|
[] |
no_license
|
AdilBikeev/Exam_Schedule
|
f399602c7e68a32515b8a4b618655ea62da266be
|
80ce4436a0a886b759fe1d1ba4d32ecc32e24323
|
refs/heads/master
| 2020-03-23T18:37:28.018454
| 2018-07-22T18:31:43
| 2018-07-22T18:31:43
| 141,920,707
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 921
|
h
|
find.h
|
#ifndef FIND_H
#define FIND_H
#include <QMainWindow>
#include <QWidget>
#include <QString>
#include "menu.h"
class Find: public Menu
{
public:
void Void_Audit(int from_time_heur, int from_time_minute,int to_time_heur, int to_time_min);//устанавливает знак - говорящий о том, что аудитория будет занята
QString set_list_audit();//в list_audit выводит список не занятых в указанное время аудиторий
Find();
private:
bool Now_exame(int from_time_heur, int from_time_minute,int to_time_heur, int to_time_min,QString stroka);//овтечает на вопрос " в выбранное время есть экзамен в данной аудитории ?"
protected:
void clear_file();//очищает файл с пустыми аудиториями
};
#endif // FIND_H
|
25d7d1f04b11f0e72da94e48d529670a0f5b1da1
|
e2271fed03eaa42ced1fcb018d7db6234ba09a18
|
/Dynamic_Programming/push_dominoes.cpp
|
806a13e5168ec0b547e001159d99d616ff0534db
|
[] |
no_license
|
saurabh8522/fantastic-couscous
|
3e555cad5a70947be5c876e5b9e50b1652ffad6e
|
e639b9fe1e4c2f74154b055a5f1532831d9b35f7
|
refs/heads/master
| 2022-04-14T23:55:18.089297
| 2020-03-24T09:26:34
| 2020-03-24T09:26:34
| 241,529,595
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,379
|
cpp
|
push_dominoes.cpp
|
class Solution {
public:
string pushDominoes(string d) {
if(d.size()<2) return d;
int n=d.size();
int i,j;
for(i=0;i<d.size();){
// cout<<i<<endl;
if(d[i]!='.'){i++;continue;}
for(j=i+1;j<d.size();j++){
// cout<<j<<endl;
if(d[j]!='.'){
// i=j+1;
break;
}
}
// cout<<i<<" "<<j<<endl;
if(i==0&&j==d.size()) return d;
if(i==0&&d[j]=='L'){
for(int k=0;k<j;k++){
d[k]='L';
}
int k;
for(k=j;k<d.size();k++){
if(d[k]=='.'){
i=k;
break;
}
}
if(k==d.size()) return d;
continue;
}
else if(i==0&&d[j]=='R'){
int k;
for(k=j;k<d.size();k++){
if(d[k]=='.'){
i=k;
break;
}
}
if(k==d.size()) return d;
continue;
}
if(j==d.size()&&d[i-1]=='R'){
for(int k=i;k<j;k++){
d[k]='R';
}
}
else if(j==d.size()&&d[i-1]=='L') return d;
int l=i,r=j-1;
if(l==r&&l!=0&&r!=n-1){
if(d[l-1]==d[r+1]){
d[l]=d[l-1];
}
}
while(l<r){
if(d[i-1]=='L'&&d[j]=='R'){
break;
}
if(d[i-1]=='R'){
d[l]='R';
l++;
}
if(d[j]=='L'){
d[r]='L';
r--;
}
if(l==r&&l!=0&&r!=n-1){
if(d[l-1]==d[r+1]){
d[l]=d[l-1];
}
}
}
int k;
for(k=j;k<d.size();k++){
if(d[k]=='.'){
i=k;
break;
}
}
if(k==d.size()) return d;
// cout<<d<<endl;
}
return d;
}
};
|
456c4664d868fd99ad3866423711ec8c29fcfe9d
|
6abb92d99ff4218866eafab64390653addbf0d64
|
/AtCoder/abc/abc245/c.cpp
|
c162a64061e738bef04da4db54b49c4e9a998a8b
|
[] |
no_license
|
Johannyjm/c-pro
|
38a7b81aff872b2246e5c63d6e49ef3dfb0789ae
|
770f2ac419b31bb0d47c4ee93c717c0c98c1d97d
|
refs/heads/main
| 2023-08-18T01:02:23.761499
| 2023-08-07T15:13:58
| 2023-08-07T15:13:58
| 217,938,272
| 0
| 0
| null | 2023-06-25T15:11:37
| 2019-10-28T00:51:09
|
C++
|
UTF-8
|
C++
| false
| false
| 929
|
cpp
|
c.cpp
|
#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (n); ++i)
#define rep1(i, n) for(int i = 1; i < (n); ++i)
using namespace std;
using ll = long long;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n, k;
cin >> n >> k;
vector<int> a(n), b(n);
rep(i, n) cin >> a[i];
rep(i, n) cin >> b[i];
vector<int> cand;
cand.push_back(a.front());
cand.push_back(b.front());
rep1(i, n){
vector<int> tmp;
if(cand.size() == 0){
puts("No");
return 0;
}
bool flga = false;
bool flgb = false;
for(auto e: cand){
if(abs(e - a[i]) <= k) flga = true;
if(abs(e - b[i]) <= k) flgb = true;
}
if(flga) tmp.push_back(a[i]);
if(flgb) tmp.push_back(b[i]);
cand = tmp;
}
if(cand.size() == 0) puts("No");
else puts("Yes");
return 0;
}
|
e568730367b2908858c731482ad30ce8f03b810e
|
021806922e8c30cee0481f121bb2524c30f2016b
|
/codechef/DRS.cpp
|
91874a97906c75e55d3d06d733de9a19da3b00fd
|
[] |
no_license
|
apsknight/snippets
|
5d0aeb44dd32a63faf15c67b0be572be4baf87d1
|
596edd2fee92db41ab031e1ffc59cdd08ad529d8
|
refs/heads/master
| 2022-02-20T07:25:25.919361
| 2019-10-03T18:04:47
| 2019-10-04T08:11:04
| 81,497,666
| 2
| 2
| null | 2019-10-04T08:11:08
| 2017-02-09T21:41:09
|
C++
|
UTF-8
|
C++
| false
| false
| 852
|
cpp
|
DRS.cpp
|
/**
* Problem URL : https://www.codechef.com/LOCAPR17/problems/DRS
* Author : Aman Pratap Singh
* Language : C++
* Compiler : G+
*/
#include <iostream>
#include <vector>
using namespace std;
int main() {
int t;
cin >> t;
while(t--) {
int n;
cin >> n;
vector<double> vec(n);
for(int i = 0; i < n; i++) {
cin >> vec[i];
}
int res = 0;
int arr[6] = {0};
for(int i = 0; i < n; i++) {
int tep = (int) vec[i] / 80;
arr[tep]++;
}
for(int i = 0; i < 6; i++) {
if (arr[i] >= 2)
res += 2;
else
res += arr[i];
}
cout << res << endl;
}
}
|
5e5d590200cb72c7020430f99dbfff9980c1f648
|
9720521a2296d1e6f7bc2855fd8ce87efd6280af
|
/test/composition_test.cpp
|
f9405a399ccd47e576e17073caf6bf6400c08ada
|
[
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
giveflow/FunctionalPlus
|
a7e3baa20f776935404b3a6587553401b73d8c1f
|
e799da5c8fe197e282dc36736f120f5f8719b123
|
refs/heads/master
| 2021-01-19T13:15:27.600929
| 2017-08-15T15:40:42
| 2017-08-15T15:40:42
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,360
|
cpp
|
composition_test.cpp
|
// Copyright 2015, Tobias Hermann and the FunctionalPlus contributors.
// https://github.com/Dobiasd/FunctionalPlus
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include "doctest.h"
#include <fplus/fplus.hpp>
#include <vector>
namespace {
int APlusTwoTimesBFunc(int a, int b)
{
return a + 2 * b;
}
typedef std::deque<int> IntDeq;
typedef std::deque<IntDeq> IntContCont;
typedef IntDeq IntCont;
typedef IntCont Row;
std::uint64_t fibo(std::uint64_t n)
{
if (n < 2)
return n;
else
return fibo(n-1) + fibo(n-2);
}
// version using continuation passing style (CPS)
std::uint64_t fibo_cont(const std::function<std::uint64_t(std::uint64_t)>& cont, std::uint64_t n)
{
if (n < 2)
return n;
else
return cont(n-1) + cont(n-2);
}
}
class CompositionTestState {
public:
explicit CompositionTestState(int x) : x_(x) {}
void Add(int y) { x_ += y; }
int Get() const { return x_; }
private:
int x_;
};
TEST_CASE("composition_test, forward_apply")
{
using namespace fplus;
REQUIRE_EQ(forward_apply(3, square<int>), 9);
}
TEST_CASE("composition_test, lazy")
{
using namespace fplus;
const auto square_3_stub = lazy(square<int>, 3);
REQUIRE_EQ(square_3_stub(), 9);
}
TEST_CASE("composition_test, fixed")
{
using namespace fplus;
const auto lazy_3 = fixed(3);
REQUIRE_EQ(lazy_3(), 3);
}
TEST_CASE("composition_test, parameter_binding")
{
using namespace fplus;
Row row = {1,2,3};
typedef IntContCont Mat;
Mat mat;
auto square = [](int x){ return x*x; };
REQUIRE_EQ(bind_unary(square, 2)(), 4);
auto squareRowElems = bind_1st_of_2(transform<decltype(square), Row>,
square);
Row squaredRow = squareRowElems(row);
REQUIRE_EQ(squaredRow, IntCont({1,4,9}));
auto int_division = [](int x, int y) { return x / y; };
REQUIRE_EQ(bind_2nd_of_2(int_division, 2)(6), 3);
auto add3 = [](int x, int y, int z) { return x + y + z; };
REQUIRE_EQ(bind_1st_and_2nd_of_3(add3, 3, 5)(7), 15);
}
TEST_CASE("composition_test, compose")
{
using namespace fplus;
auto square = [](int x){ return x*x; };
REQUIRE_EQ((compose(square, square)(2)), 16);
REQUIRE_EQ((compose(square, square, square)(2)), 256);
REQUIRE_EQ((compose(square, square, square, square)(2)), 65536);
REQUIRE_EQ((compose(square, square, square, square, square)(1)), 1);
}
TEST_CASE("composition_test, flip")
{
using namespace fplus;
auto APlusTwoTimesB = [](int a, int b) { return a + 2 * b; };
auto TwoTimesAPlusB = [](int a, int b) { return 2 * a + b; };
REQUIRE_EQ((flip(APlusTwoTimesB)(2, 1)), 5);
REQUIRE_EQ((flip(TwoTimesAPlusB)(1, 2)), 5);
}
TEST_CASE("composition_test, logical")
{
using namespace fplus;
auto is1 = [](int x) { return x == 1; };
auto is2 = [](int x) { return x == 2; };
REQUIRE_FALSE((logical_not(is1)(1)));
REQUIRE((logical_not(is1)(2)));
REQUIRE((logical_or(is1, is2)(1)));
REQUIRE((logical_or(is1, is2)(2)));
REQUIRE_FALSE((logical_or(is1, is2)(3)));
REQUIRE_FALSE((logical_and(is1, is2)(1)));
REQUIRE((logical_and(is1, is1)(1)));
REQUIRE_FALSE((logical_xor(is1, is1)(1)));
REQUIRE((logical_xor(is2, is1)(1)));
REQUIRE_FALSE((logical_xor(is2, is2)(1)));
}
TEST_CASE("composition_test, apply_to_pair")
{
using namespace fplus;
auto APlusTwoTimesB = [](int a, int b) { return a + 2 * b; };
REQUIRE_EQ((apply_to_pair(APlusTwoTimesB, std::make_pair(1, 2))), 5);
REQUIRE_EQ((apply_to_pair(APlusTwoTimesBFunc, std::make_pair(1, 2))), 5);
}
TEST_CASE("composition_test, state")
{
using namespace fplus;
CompositionTestState state(1);
REQUIRE_EQ(state.Get(), 1);
auto stateAdd = std::mem_fn(&CompositionTestState::Add);
stateAdd(state, 2);
REQUIRE_EQ(state.Get(), 3);
//auto stateAddBoundFPP = Bind1of2(stateAdd, &state); // crashes VC2015 compiler
//stateAddBoundFPP(3);
auto stateAddBoundStl = std::bind(&CompositionTestState::Add, std::placeholders::_1, std::placeholders::_2);
stateAddBoundStl(state, 3);
REQUIRE_EQ(state.Get(), 6);
}
TEST_CASE("composition_test, memoize")
{
using namespace fplus;
auto f = memoize(square<int>);
REQUIRE_EQ(f(2), 4);
REQUIRE_EQ(f(2), 4);
REQUIRE_EQ(f(3), 9);
REQUIRE_EQ(f(3), 9);
const auto add = [](int x, int y) -> int
{
return x + y;
};
auto add_memo = memoize_binary(add);
REQUIRE_EQ(add_memo(2, 3), 5);
REQUIRE_EQ(add_memo(2, 3), 5);
REQUIRE_EQ(add_memo(1, 2), 3);
REQUIRE_EQ(add_memo(1, 2), 3);
const auto fibo_memo = memoize_recursive(fibo_cont);
for (std::uint64_t n = 0; n < 10; ++n)
{
REQUIRE_EQ(fibo_memo(n), fibo(n));
}
}
TEST_CASE("composition_test, constructor_as_function")
{
using namespace fplus;
struct foo
{
foo(int a, int b) : a_(a), b_(2*b) {}
int a_;
int b_;
};
const auto create_foo = constructor_as_function<foo, int, int>;
const auto my_foo = create_foo(1,2);
REQUIRE_EQ(my_foo.a_, 1);
REQUIRE_EQ(my_foo.b_, 4);
}
|
ff5a0089f67d17f701b6132a845197cb40682be1
|
cf76cc266aa332eb8f6030d1b0afdb9576414ea1
|
/src/transport.cpp
|
d9b6d56e38021ff3dfac2a6031779b6f8937da64
|
[
"Apache-2.0"
] |
permissive
|
tsc19/fring
|
8c7a1773ef40b4d43459cdcc0383c69ca90fa75d
|
2418ce1b27892f2f5c256f94ae0c5fc376cfa72c
|
refs/heads/master
| 2021-12-14T14:39:03.765593
| 2021-12-06T15:38:11
| 2021-12-06T15:38:11
| 177,904,545
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,786
|
cpp
|
transport.cpp
|
#include "transport.h"
// Destructor function body must be provided even pure virtual
Receiver::~Receiver() { }
AsyncUDPServer::AsyncUDPServer(const std::shared_ptr<Receiver>& receiver, unsigned short port):
receiver(receiver), buffer(new AtomicQueue<BufferItemType>()) {
std::cout << "INFO: AsyncUDPServer::(constructor): Initializing to port " << port << " on any interface" << std::endl;
udp_socket_id_ = socket(AF_INET, SOCK_DGRAM, 0);
struct sockaddr_in udp_addr_;
udp_addr_.sin_family = AF_INET;
udp_addr_.sin_port = htons(port);
udp_addr_.sin_addr.s_addr = INADDR_ANY;
bzero(&(udp_addr_.sin_zero),8);
int32_t res_bind = bind(udp_socket_id_, (struct sockaddr *)&udp_addr_, sizeof(struct sockaddr));
if (res_bind == -1) {
std::cerr << "ERROR: AsyncUDPServer::(constructor): Failed to bind: " << strerror(errno) << std::endl;
}
int32_t multi_use = 1;
int32_t res_multi_use = setsockopt(udp_socket_id_, SOL_SOCKET, SO_REUSEADDR, &multi_use, sizeof(multi_use));
if(res_multi_use == -1) {
std::cerr << "ERROR: AsyncUDPServer::(constructor): Failed to set socket address reuse option: " << strerror(errno) << std::endl;
}
}
void AsyncUDPServer::run() {
#ifndef NDEBUG
std::cout << "DEBUG: AsyncUDPServer::run: Starting buffer handler thread" << std::endl;
#endif
this->buffer_handler = std::thread(&AsyncUDPServer::handle, this);
#ifndef NDEBUG
std::cout << "DEBUG: AsyncUDPServer::run: Starting receive worker thread" << std::endl;
#endif
this->receive_worker = std::thread(&AsyncUDPServer::receive, this);
#ifndef NDEBUG
std::cout << "DEBUG: AsyncUDPServer::run: Threads started" << std::endl;
#endif
}
void AsyncUDPServer::stop() {
this->receive_worker.join();
this->buffer_handler.join();
}
void AsyncUDPServer::send(const std::string& ip, unsigned short port, const std::string& data) {
struct sockaddr_in udp_client_addr_;
udp_client_addr_.sin_family = AF_INET;
udp_client_addr_.sin_port = htons(port);
udp_client_addr_.sin_addr.s_addr = inet_addr(ip.c_str());
bzero(&(udp_client_addr_.sin_zero),8);
int32_t res_sendto = sendto(this->udp_socket_id_, data.data(), data.size(), 0, (struct sockaddr *)&udp_client_addr_, sizeof(struct sockaddr));
if(res_sendto == -1) {
std::cerr << "ERROR: AsyncUDPServer::send: Failed to send: " << strerror(errno) << std::endl;
} else if (res_sendto < (int)data.size()) {
std::cerr << "WARNING: AsyncUDPServer::send: Only " << res_sendto << " out of " << data.size() << " is sent" << std::endl;
}
}
void AsyncUDPServer::receive() {
int32_t addr_len = sizeof(struct sockaddr);
char recv_data[BUFFER_SIZE];
struct sockaddr_in udp_client_addr_;
int32_t bytes_read;
std::string ip;
unsigned short port;
std::string data;
for (;;) {
bytes_read = recvfrom(this->udp_socket_id_, recv_data, BUFFER_SIZE, 0, (struct sockaddr *)&udp_client_addr_, (socklen_t*)&addr_len);
if (bytes_read == -1) {
std::cerr << "ERROR: AsyncUDPServer::receive: Failed to recvfrom: " << strerror(errno) << std::endl;
return;
}
ip = std::string(inet_ntoa(udp_client_addr_.sin_addr));
port = ntohs(udp_client_addr_.sin_port);
data = std::string(recv_data, bytes_read);
this->buffer->enqueue_and_notify(BufferItemType(ip, port, data));
}
}
void AsyncUDPServer::handle() {
// Copy and unlock immediately
for (;;) {
auto front = this->buffer->wait_for_dequeue();
this->receiver->receive(std::get<0>(front), std::get<1>(front), std::get<2>(front));
}
}
AsyncUDPServer::~AsyncUDPServer() {
close(udp_socket_id_);
}
|
3f0601ed888ce41dd73e3e8d04321792f10912ab
|
f31f0530997a179473d3ae45ebf96e4b1c6de5bd
|
/Digital_Filter.h
|
0a84d5fb37617d70761e77739f282251f8800282
|
[] |
no_license
|
jinason29/Digital-Signal-Processing-Program
|
d6231e2235755945cf0871a72911ad8b8d9dae3a
|
ee21786afcf322fbc5abbd85e13a61563bf23042
|
refs/heads/master
| 2022-11-21T10:51:59.914012
| 2020-07-30T07:09:33
| 2020-07-30T07:09:33
| 283,686,215
| 1
| 0
| null | null | null | null |
UHC
|
C++
| false
| false
| 978
|
h
|
Digital_Filter.h
|
#pragma once
#include "Draw_XY.h"
#include "Fourier_Transform.h"
#include <math.h>
class Digital_Filter
{
public:
Digital_Filter(void);
~Digital_Filter(void);
void Digital_Filter_LowPass();
void Digital_Filter_Butterworth();
void Digital_Filter_Chebyshev();
void Digital_Filter_FilterValue(CDC* pDC);
public:
CString N; //필터 차수를 화면에 나타낼 변수
CString Cf; //차단주파수를 화면에 나타낼 변수
Fourier_Transform fourier;
Fourier_Transform inverse_fourier;
int Data_No;
int m_Filter_Order; //필터 차수
int m_Filter_CutOff; //차단주파수
//필터
double LowPass_Filter[Total_No]; //저역통과
double Butterworth_Filter[Total_No]; //버터워스
double Chebyshev_Filter[Total_No]; //체비셰브
//필터를 시간축 상 함수로 나타낼 변수
double LowPass_TimeDomain[Total_No];
double Butterworth_TimeDomain[Total_No];
double Chebyshev_TimeDomain[Total_No];
};
|
0e0ea7ce3c2220e1cc9940ca4d582537c44bc2c4
|
33ac633b566c21f00a6073fba2f896020cd7f62c
|
/Pal/PalAPI.h
|
ec730685c69e49d2e81eaa0b9909b333beec057b
|
[] |
no_license
|
orichisonic/GMServer_20091221
|
ef4d454d4b78d01b49b8752eed2170c3419af22a
|
19847f86a45a2706ddf645a2ca9e98f80affb198
|
refs/heads/master
| 2020-03-13T04:33:08.253747
| 2018-04-25T07:29:55
| 2018-04-25T07:29:55
| 130,965,261
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 9,384
|
h
|
PalAPI.h
|
// PalAPI.h: interface for the CPalAPI class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PALAPI_H__3B270351_F11B_4F40_8BC3_B464590B786B__INCLUDED_)
#define AFX_PALAPI_H__3B270351_F11B_4F40_8BC3_B464590B786B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "CharacterInfo.h"
#include "BanishPlayer.h"
#include "CharacterBag.h"
#include "CharacterFriendList.h"
#include "CharacterQuest.h"
#include "DelCharacterItem.h"
#include "DismissGuild.h"
#include "GuildBaseInfo.h"
#include "GuildMemberList.h"
#include "ModifyAccountBankPw.h"
#include "ModifyAccountPw.h"
#include "ModifyCharacterDropPw.h"
#include "ModifyCharacterMoney.h"
#include "ModifyCharacterQuest.h"
#include "ModifyGuildLv.h"
#include "ModifyGuildMemberPL.h"
#include "ModifyGuildName.h"
#include "ModifyGuildNotice.h"
#include "ModifySafeLock.h"
#include "ModifySecLvlPwd.h"
#include "SendGiftMail.h"
#include "CharacterAdvanceInfo.h"
#include "CharacterSkill.h"
#include "CharacterMob.h"
#include "CharacterPuzzleMap.h"
#include "CharacterBlackList.h"
#include "DelCharacterMob.h"
#include "ModifyPuzzleMap.h"
#include "AccountInfo.h"
#include "MoveCharacterToSafe.h"
#include "ReloadFunctionSwitch.h"
#include "OperPal.h"
// add by ltx
#include "SendCustomItemMail.h"
#include "..\\GameIOCP\\GameInfo.h"
//#include "PalManagerModule.h"
//maple add
struct BanPlayerPACKET
{
char szAccount[128];
char szRoleName[128];
BanPlayerPACKET()
{
ZeroMemory(szAccount,128);
ZeroMemory(szRoleName,128);
}
};
class CPalAPI : public CGameInfo
{
public:
CPalAPI();
virtual ~CPalAPI();
private:
//用于保存在远程数据库执行操作的sql语句
char operRemoteSql[2048];
//记录日志信息
char strLog[2048];
//根据服务器名称获取需要的IP
char logdbip[20];
private:
//操作数据库
COperPal operPal;
public:
///////////功能接口////////////////
//用户信息查询
bool UserInfo(char * ServerName, char * ServerIP,char * UserName, char * UserNick,int iIndex,int iPageSize);
//根据帐号踢人
bool Pal_KickPlayer(int userByID,char * ServerName, char * ServerIP,char * UserName);
//根据帐号封停
bool Pal_ClosePlayer(int userByID,char * ServerName, char * ServerIP ,char * UserName,char * UserNick, char* Reason);
//根据帐号解封
bool Pal_OpenPlayer(int userByID,char * ServerName, char * ServerIP ,char * UserName,char * UserNick, char* Reason);
//查询封停列表
bool CloseList(char * ServerName, char * ServerIP,int iIndex, int iPageSize);
//查询单个账号
bool CloseSingle(char * ServerName, char * ServerIP,char * UserName,int iIndex, int iPageSize);
//查询公告
bool BroadTask_Query(int iIndex,int iPageSize);
//更新公告
bool BroadTask_Update(int userByID,int taskid,char * boardMessage,char * begintime,char * endtime,int interval,int status);
//插入公告
bool BroadTask_Insert(int userByID,char * ServerIP,char * GSServerIP,char * boardMessage,char * begintime,char * endtime,int interval);
//查询玩家背包
void Pal_CharacterBag(char * ServerName, char * ServerIP, char * RoleName, int ibagtype,int iIndex,int iPageSize);
//取得角色好友列表
void Pal_CharacterFriendList(char * ServerName, char * ServerIP, char * RoleName,int iIndex,int iPageSize);
//取得角色任务资讯
void Pal_CharacterQuest(char * ServerName, char * ServerIP,char * RoleName,int iType,int iIndex,int iPageSize);
//取得公会基本资讯
void Pal_GuileBaseInfo(char * ServerName, char * ServerIP,char * GuildName,int iIndex, int iPageSize);
//取得公会成员列表
void Pal_GuildMemberList(char * ServerName, char * ServerIP,char * GuildName,int iIndex, int iPageSize);
//寄送奖品邮件
void Pal_SendGiftMail(int UserByID,
char * ServerName,
char * ServerIP,
char * RoleName,
char * Subject,
char * Content,
int iMoney,
int Gift0,
int Gift1,
int Gift2,
int Gift3,
int Gift4,
char * reason);
//解散公会
void Pal_DismissGuild(int userByID,char * ServerName, char * ServerIP,char * GuildName,char * Reason);
//修改公会名称
void Pal_ModifyGuildName(int userByID,char * ServerName, char * ServerIP,char * GuildName,char * NewName,char * Reason);
//修改公会成员职阶
void Pal_ModifyGuildMemberPL(int userByID,char * ServerName, char * ServerIP,char * GuildName,char * RoleName, int iLevel,char * Reason);
//修改角色任务
void Pal_ModifyCharacterQuest(int userByID,char * ServerName, char * ServerIP,char* szRoleName,int iQuestID,int iQuestStatus);
//修改角色金钱
void Pal_ModifyCharacterMoney(int userByID,char * ServerName, char * ServerIP, char * szRoleName,int iType,int iCount);
//修改角色删除密码
void Pal_ModifyCharacterDropPw(int userByID,char * ServerName, char * ServerIP, char * szRoleName,char * szDropRolePw);
//还原角色删除密码
void Pal_RecallCharacterDropPw(int userByID,char * ServerName, char * ServerIP, char * szRoleName);
//修改帐号银行密码
void Pal_ModifyAccountBankPw(int userByID,char * ServerName, char * ServerIP, char * szAccount,char * szBankPw);
//还原帐号银行密码
void Pal_RecallAccountBankPw(int userByID,char * ServerName, char * ServerIP, char * szAccount);
//修改帐号密码
void Pal_ModifyAccountPw(int userByID,char * ServerName, char * ServerIP, char * szAccount,char * szAccountPw);
//还原帐号密码
void Pal_RecallAccountPw(int userByID,char * ServerName, char * ServerIP, char * szAccount);
//修改二级密码
void Pal_ModifySecondPw(int userByID,char * ServerName,char * ServerIP,char * szAccount,char * szSePw);
//还原二级密码
void Pal_RecallSecondPw(int userByID,char * ServerName,char * ServerIP,char * szAccount);
//锁定安全锁
void Pal_UseSafeLock(int userByID,char * ServerName,char * ServerIP,char * szAccount);
//解锁密码锁
void Pal_FreeSafeLock(int userByID,char * ServerName,char * ServerIP,char * szAccount);
// 删除角色物品响应
void Pal_DelCharacterItem(int UserByID,char * ServerName,char * ServerIP,char * RoleName,int iType,int iPosition,char * ItemName);
//修改公会等级
void Pal_ModifyGuildLv(int userByID,char * ServerName,char * ServerIP, char * GuildName,int iLevel,char * Reason);
//修改公会公告
void Pal_ModifyGuildNotice(int userByID,char * ServerName, char * ServerIP, char * GuildName,char * szNotice,char * Reason);
//道具类别查询
void Pal_ItemType_Query();
//道具名称查询
void Pal_ItemName_Query(int iItemBigType);
//发送仓库密码
void PAL_SendBankPwd_Query(int userByID,char * ServerName, char * ServerIP,char * szAccount,char * mailBox);
//发送角色删除密码
void PAL_SendDeletePwd_Query(int userByID,char * ServerName, char * ServerIP, char * szRoleName,char * mailBox);
//获取用户地址
bool Pal_Get_EmailAddress(char * szAccount);
//取得角色进阶资讯
bool Pal_CharacterAdvanceInfo(char * ServerName, char * ServerIP,char * RoleName,int iIndex,int iPageSize);
//取得角色技能资讯
bool Pal_CharacterSkill(char * ServerName, char * ServerIP,char * RoleName,int iIndex,int iPageSize);
//取得角色伏魔资讯
bool Pal_CharacterMob(char * ServerName, char * ServerIP,char * RoleName,int iIndex,int iPageSize);
//取得角色图鉴资讯
bool Pal_CharacterPuzzleMap(char * ServerName, char * ServerIP,char * RoleName,int iIndex,int iPageSize);
//取得角色黑名单列表
bool Pal_CharacterBlackList(char * ServerName, char * ServerIP, char * RoleName,int iIndex,int iPageSize);
//删除角色伏魔
bool Pal_DelCharacterMob(int userByID,char * ServerName, char * ServerIP,char * RoleName,int iMobID);
//修改角色图鉴
bool Pal_ModifyPuzzleMap(int userByID,char * ServerName,char * ServerIP,char * RoleName,char *strPuzzleMap,
int iMapID1,int iMapID2,int iMapID3,int iMapID4,int iMapID5,int iMapID6,int iMapID7,int iMapID8,int iMapID9);
//取得帐号资讯
bool Pal_AccountInfo(char * ServerName, char * ServerIP, char * szAccountName, int iIndex, int iPageSize);
//移动角色至安全点
bool Pal_MoveCharacterToSafe(int userByID,char * ServerName, char * ServerIP, char * RoleName, int iZoneID);
//查询地图
bool PAL_SearchMap_Query();
//重新载入功能开关
bool Pal_ReloadFunctionSwitch();
void Pal_BanishPlayer(char * pal_serverip,char * pal_gmserveripname,char * pal_userNick);
//maple add
//批量封停玩家帐号
bool Pal_BanMultiPlayer(int userByID,char * ServerName, char * ServerIP ,char * UserNameList,char * RoleNameList, char* Reason);
//add by ltx
//寄送客制物品邮件
void Pal_SendCustomItemMail(int UserByID, char * szGMServerName,char * szGMServerIP,char * szRoleName,char * szSubject,
char * szContent,int iMoney, int itemType, int iCustomItemID, char *szCustomItemIDName,bool bBindSetup, char *szInherit, char *szReason);
//Modified by tengjie 2010-07-08
// void Pal_ModifyAccountPwAll(int userByID, char * szAccount, char * szAccountPw);
//
// void Pal_RecallAccountPwAll(int userByID, char * szAccount);
void Pal_ModifyAccountPwAll(int userByID, char * szAccount, char * szAccountPw, char *ServerName);
void Pal_RecallAccountPwAll(int userByID, char * szAccount, char *ServerName);
};
#endif // !defined(AFX_PALAPI_H__3B270351_F11B_4F40_8BC3_B464590B786B__INCLUDED_)
|
5cf4c0bbe3d123f75ce36fba4cdbb182eca1b9fe
|
44f2290d42de0a5e7711d3b834d13a1cc9c06c61
|
/pluginsorsa/CamPlugin.cpp
|
db9c93bfcb9dfd0144ecc58e86719ed218aa9726
|
[] |
no_license
|
mkko/masters-template-lout
|
8fbdd50a598ec8824dcdb9f57075b3963466c7c1
|
42c66b911bbb59b075fafb1958bf1dc017ad1c19
|
refs/heads/master
| 2021-01-21T14:23:09.565060
| 2016-06-14T18:37:51
| 2016-06-27T08:05:18
| 59,787,797
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,493
|
cpp
|
CamPlugin.cpp
|
//**********************************************************************************************************
//
// File: CamPlugin.cpp
//
//**********************************************************************************************************
class CCamPlugin : public MCamPlugin
{
public:
CCamPlugin()
: iModel( 0 )
{
}
virtual ~CCamPlugin()
{
iAppUi->RemoveView( iPreview->Id() ); // Delete views from memory
iAppUi->RemoveView( iInspect->Id() );
}
void ConstructL( MCamModelPlugin& aModel, // Initialize plugin
CAknViewAppUi& aAppUi )
{
iAppUi = &aAppUi;
iModel = &aModel;
iPreview = new(ELeave) CViewPreview; // Initialize preview view
iPreview->SetModel( iModel );
iPreview->ConstructL();
iAppUi->AddViewL( iPreview );
iInspect = new(ELeave) CCamPluginViewInspect; // Initialize inspect view
iInspect->SetModel( iModel );
iInspect->ConstructL();
iAppUi->AddViewL( iInspect );
iPreview->SetInspectView( iInspect ); // Store inspect view pointer into preview view
// for view switching.
}
TCamPluginAction ExecuteL() // Plugin execution
{
if( iModel->HasBitmapHigh() )
{
User::Leave( KErrGeneral ); // Fail if no VGA-image available.
}
else
{
iPreview->ActivateL(); // Activate preview view
}
CActiveScheduler::Start(); // Start executing plugin.
return iModel->Action(); // Return to main program.
}
private:
CAknViewAppUi* iAppUi; // For view handling
MCamModelPlugin* iModel; // Model class
CViewPreview* iPreview; // Our own preview view
CCamPluginViewInspect* iInspect; // Inspect view form view package
};
// DLL entry points follow:
GLDEF_C TInt E32Dll( TDllReason /*aReason*/ ) // The E32Dll() entry point function
{ // for all DLLs
return KErrNone;
}
EXPORT_C CCamPluginInfo* QueryL() // Ordinal 1
{
CResourceHelp* resHelp = CResourceHelp::NewLC( KResourceFile );
HBufC* name = resHelp->ReadResourceStringLC( R_PLUGIN_NAME );
HBufC* description = resHelp->ReadResourceStringLC( R_PLUGIN_DESCRIPTION );
CCamPluginInfo* info = new(ELeave) CCamPluginInfo; // New info object
CleanupStack::PushL( info );
info->ConstructL( *name, // Fill info object
*description,
KCamPluginAPIVersion,
TVersion( 1, 0, 1 ),
1,
KCamPluginPreview, // Capability flags
KPluginOrder, // Plugin order constant
KInstallSis );
CleanupStack::Pop(); // info
CleanupStack::PopAndDestroy( 3 ); // description, name, resHelp
return info;
}
EXPORT_C MCamPlugin* CreateL() // Ordinal 2
{
return new(ELeave) CCamPlugin;
}
|
74953e04f4f3ef9493ec1e2fc3b575eb91efbfc9
|
4fdb6c4e6204e1fb9e42ca2c35a19f09c4956c1f
|
/Loteria_Cliente/main.cpp
|
6e97ae7e7c5f0ac7dd5e146965b6259a63d46b11
|
[
"MIT"
] |
permissive
|
AlejandroRM-DEV/Juego-Loteria-Mexicana
|
c50f2b56eefaf8dce0a24c075e8311061486ea41
|
50f5803b69492386a8eb6262d839e723f05e11f5
|
refs/heads/master
| 2021-06-01T03:47:51.577649
| 2016-07-17T23:50:47
| 2016-07-17T23:50:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 21,060
|
cpp
|
main.cpp
|
#include <iostream>
#include <vector>
#include <iomanip>
#include <cstring>
#include <cstdint>
#include <SDL2/SDL_ttf.h>
#include "Boton.h"
#include "Tablero.h"
#include "Credencial.h"
#define VENTANA_ALTO 680
#define VENTANA_ANCHO 800
#define SIZE_OF_STRUCT_TABLERO 48
#define TOTAL_CARTAS 16
#define TAMANO_NOMBRE 10
#define TAMANO_BUFFER 128
using namespace std;
enum Comandos : unsigned char { NOMBRE_REG, NOMBRE_OK, NOMBRE_OCUPADO, NUEVA_PARTIDA, LANZAMIENTO, LOTERIA, GANADOR};
struct Marcador {
char nombre1[TAMANO_NOMBRE + 1];
int16_t ganados1;
char nombre2[TAMANO_NOMBRE + 1];
int16_t ganados2;
char nombre3[TAMANO_NOMBRE + 1];
int16_t ganados3;
char nombre4[TAMANO_NOMBRE + 1];
int16_t ganados4;
};
static Imagen imgFondo1( -1, "img/presentacion.jpg" );
static Imagen imgFondo2( -1, "img/todas1.png" );
static Imagen imgFondo3( -1, "img/todas2.png" );
static Imagen imgtxtTitulo( -1, "img/txt/titulo.png" );
static Imagen imgtxtLoteria( -1, "img/txt/loteria.png" );
static Imagen imgtxtEsperando( -1, "img/txt/esperando_jugadores.png" );
static Imagen imgtxtNombre( -1, "img/txt/nombre_jugador.png" );
static Imagen imgtxtLanzada( -1, "img/txt/lanzada.png" );
static Imagen imgtxtServidor( -1, "img/txt/servidor.png" );
bool sdl_quit = false;
string formatoJugador( string nombre, uint16_t ganados );
vector<Imagen*> generarCartas( );
vector<SDL_Texture*> crearFondosPantalla( SDL_Renderer *renderer );
bool pantallaInicio( Credencial* credencial, SDL_Renderer *renderer );
bool pantallaSalaPrevia( SDL_Renderer *renderer, Credencial* credencial, Tablero &tablero );
void pantallaJuego( SDL_Renderer *renderer, Credencial* credencial );
void fondoPantalla( vector<SDL_Texture*>& texturas, SDL_Renderer *renderer );
void crearMarcador( char* bytesJugadores, string jugadorLocal, SDL_Renderer *renderer );
void texturaEnCuadro( SDL_Texture *texto, SDL_Renderer *renderer, int x, int y, int ancho, int alto );
SDL_Color colorMarcador( const char* nombre, const char* nombrePropio );
SDL_Texture* texturaTexto( const string &texto, SDL_Color color, int tamano, SDL_Renderer *renderer );
int main( int argc, char **argv ) {
Credencial* credencial;
SDL_Init( SDL_INIT_VIDEO );
IMG_Init( IMG_INIT_PNG );
IMG_Init( IMG_INIT_JPG );
TTF_Init();
SDL_Window *window = SDL_CreateWindow( "Loteria Mexicana", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
VENTANA_ANCHO, VENTANA_ALTO, 0 );
SDL_Renderer *renderer = SDL_CreateRenderer( window, -1, 0 );
SDL_Surface *icon = IMG_Load( "img/icono.png" );
SDL_SetWindowIcon( window, icon );
do {
credencial = new Credencial();
if( pantallaInicio( credencial, renderer ) ) {
pantallaJuego( renderer, credencial );
}
delete credencial;
} while( !sdl_quit );
SDL_DestroyRenderer( renderer );
SDL_DestroyWindow( window );
TTF_Quit();
IMG_Quit();
SDL_Quit();
return 0;
}
vector<Imagen*> generarCartas( ) {
vector<Imagen*> cartas( 54 );
for( int i = 0; i < 54; i++ ) {
stringstream ss;
ss << "img/cartas/" << ( i + 1 ) << ".jpg";
cartas[i] = new Imagen( ( i + 1 ), ss.str() );
}
return cartas;
}
void texturaEnCuadro( SDL_Texture *texto, SDL_Renderer *renderer, int x, int y, int ancho, int alto ) {
SDL_Rect cuadro = {x, y, ancho, alto};
SDL_RenderCopy( renderer, texto, nullptr, &cuadro );
}
SDL_Texture* texturaTexto( const string &texto, SDL_Color color, int tamano, SDL_Renderer *renderer ) {
TTF_Font *fuente = TTF_OpenFont( "arial.ttf", tamano );
SDL_Surface *superficie = TTF_RenderText_Blended( fuente, texto.c_str(), color );
SDL_Texture *textura = SDL_CreateTextureFromSurface( renderer, superficie );
SDL_FreeSurface( superficie );
TTF_CloseFont( fuente );
return textura;
}
void fondoPantalla( vector<SDL_Texture*>& texturas, SDL_Renderer *renderer ) {
static int x = 0;
x = ( ( ++x ) < 2760 ) ? x : 0;
texturaEnCuadro( texturas[0], renderer, x, 73, 800, 535 );
texturaEnCuadro( texturas[1], renderer, x - 980, 90, 980, 500 );
texturaEnCuadro( texturas[2], renderer, x - 1960, 90, 980, 500 );
texturaEnCuadro( texturas[0], renderer, x - 2760, 73, 800, 535 );
texturaEnCuadro( texturas[3], renderer, 0, 10, 800, 96 );
}
vector<SDL_Texture*> crearFondosPantalla( SDL_Renderer *renderer ) {
vector<SDL_Texture*> texturas( 4 );
texturas[0] = SDL_CreateTextureFromSurface( renderer, imgFondo1.imagenSurface() );
texturas[1] = SDL_CreateTextureFromSurface( renderer, imgFondo2.imagenSurface() );
texturas[2] = SDL_CreateTextureFromSurface( renderer, imgFondo3.imagenSurface() );
texturas[3] = SDL_CreateTextureFromSurface( renderer, imgtxtTitulo.imagenSurface() );
return texturas;
}
string formatoJugador( string nombre, uint16_t ganados ) {
stringstream ss;
ss << nombre << setw( 8 ) << setfill( '_' ) << ganados;
return ss.str();
}
SDL_Color colorMarcador( const char* nombre, const char* nombrePropio ) {
return ( strcmp( nombre, nombrePropio ) == 0 ) ?
SDL_Color { 0, 0, 255, SDL_ALPHA_OPAQUE }:
SDL_Color { 0, 0, 0, SDL_ALPHA_OPAQUE };
}
void crearMarcador( char* bytesJugadores, string jugadorLocal, SDL_Renderer *renderer ) {
struct Marcador marcador;
vector<SDL_Texture*> texturasJugadores;
SDL_Color color;
memset( &marcador, 0, sizeof ( Marcador ) );
memcpy( &marcador.nombre1, &bytesJugadores[0], TAMANO_NOMBRE );
memcpy( &marcador.ganados1, &bytesJugadores[10], 2 );
memcpy( &marcador.nombre2, &bytesJugadores[12], TAMANO_NOMBRE );
memcpy( &marcador.ganados2, &bytesJugadores[22], 2 );
memcpy( &marcador.nombre3, &bytesJugadores[24], TAMANO_NOMBRE );
memcpy( &marcador.ganados3, &bytesJugadores[34], 2 );
memcpy( &marcador.nombre4, &bytesJugadores[36], TAMANO_NOMBRE );
memcpy( &marcador.ganados4, &bytesJugadores[46], 2 );
marcador.ganados1 = ntohs( marcador.ganados1 );
marcador.ganados2 = ntohs( marcador.ganados2 );
marcador.ganados3 = ntohs( marcador.ganados3 );
marcador.ganados4 = ntohs( marcador.ganados4 );
color = colorMarcador( marcador.nombre1, jugadorLocal.c_str() );
texturasJugadores.push_back(
texturaTexto( formatoJugador( marcador.nombre1, marcador.ganados1 ).c_str(), color, 32, renderer )
);
color = colorMarcador( marcador.nombre2, jugadorLocal.c_str() );
texturasJugadores.push_back(
texturaTexto( formatoJugador( marcador.nombre2, marcador.ganados2 ).c_str(), color, 32, renderer )
);
color = colorMarcador( marcador.nombre3, jugadorLocal.c_str() );
texturasJugadores.push_back(
texturaTexto( formatoJugador( marcador.nombre3, marcador.ganados3 ).c_str(), color, 32, renderer )
);
color = colorMarcador( marcador.nombre4, jugadorLocal.c_str() );
texturasJugadores.push_back(
texturaTexto( formatoJugador( marcador.nombre4, marcador.ganados4 ).c_str(), color, 32, renderer )
);
texturaEnCuadro( texturasJugadores.at( 0 ), renderer, 508, 520, 240, 24 );
texturaEnCuadro( texturasJugadores.at( 1 ), renderer, 508, 550, 240, 24 );
texturaEnCuadro( texturasJugadores.at( 2 ), renderer, 508, 580, 240, 24 );
texturaEnCuadro( texturasJugadores.at( 3 ), renderer, 508, 610, 240, 24 );
for( SDL_Texture* textura : texturasJugadores ) {
SDL_DestroyTexture( textura );
}
}
bool pantallaInicio( Credencial* credencial, SDL_Renderer *renderer ) {
SDL_Texture *texturaServidor, *texturaTextoIngresado, *textoJugador, *texturaError;
SDL_Rect cuadro = { 0, 300, 800, 100 };
SDL_Event event;
Comandos comando;
struct addrinfo hints;
char buffer[TAMANO_BUFFER];
int totalBytes, msjErrorLen;
bool error, terminado, conectado, retorno;
vector<SDL_Texture*> texturasFondos = crearFondosPantalla( renderer );
string textoIngresado;
texturaServidor = SDL_CreateTextureFromSurface( renderer, imgtxtServidor.imagenSurface() );
textoJugador = SDL_CreateTextureFromSurface( renderer, imgtxtNombre.imagenSurface() );
error = terminado = conectado = false;
textoIngresado = "127.0.0.1";
memset( &hints, 0, sizeof ( addrinfo ) );
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
/*
Si no se puede crear el socket cerramos la aplicacion, no podriamos continuar
*/
if( !credencial->dameSocket()->socket( AF_INET, SOCK_STREAM, 0 ) ) {
//cout << credencial->dameSocket()->getLastErrorMessage() << endl;
terminado = true;
retorno = false;
}
SDL_StartTextInput();
SDL_SetRenderDrawColor( renderer, 255, 255, 255, SDL_ALPHA_OPAQUE );
while ( !terminado ) {
while ( SDL_PollEvent( &event ) ) {
switch ( event.type ) {
case SDL_QUIT:
sdl_quit = terminado = true;
retorno = false;
case SDL_KEYDOWN:
if( event.key.keysym.sym == SDLK_BACKSPACE ) {
if( !textoIngresado.empty() ) {
textoIngresado.pop_back();
}
} else if( event.key.keysym.sym == SDLK_RETURN ) {
if( !conectado ) {
if( textoIngresado.empty() ) {
error = true;
msjErrorLen = 32;
texturaError = texturaTexto( "No se ingreso el nombre del host", SDL_Color { 0, 0, 0, 255 }, 24, renderer );
} else {
if( credencial->dameSocket()->connect( textoIngresado.c_str(), "17999", &hints )
&& credencial->dameSocket()->setNonBlock() ) {
conectado = true;
error = false;
textoIngresado = "Jugador 00";
} else {
error = true;
msjErrorLen = 22;
texturaError = texturaTexto( "Servidor no disponible", SDL_Color { 0, 0, 0, 255 }, 24, renderer );
}
}
} else {
if( textoIngresado.empty() ) {
error = true;
msjErrorLen = 32;
texturaError = texturaTexto( "Debe elegir un nombre de jugador", SDL_Color { 0, 0, 0, 255 }, 24, renderer );
} else if( textoIngresado.size() > TAMANO_NOMBRE ) {
error = true;
msjErrorLen = 46;
texturaError = texturaTexto( "Maximo 10 caracteres para el nombre de jugador", SDL_Color { 0, 0, 0, 255 }, 24,
renderer );
} else {
comando = NOMBRE_REG;
memset( buffer, 0, sizeof( buffer ) );
memcpy( &buffer, reinterpret_cast<const char*>( &comando ), 1 );
memcpy( &buffer[1], textoIngresado.c_str(), 10 );
credencial->dameSocket()->send( buffer, 11, 0 );
}
}
}
break;
case SDL_TEXTINPUT:
case SDL_TEXTEDITING:
textoIngresado.append( event.edit.text );
break;
}
texturaTextoIngresado = texturaTexto( textoIngresado.c_str(), SDL_Color { 0, 0, 0, 255 }, 48, renderer );
}
SDL_RenderClear( renderer );
fondoPantalla( texturasFondos, renderer );
SDL_RenderFillRect( renderer, &cuadro );
if( !conectado ) {
texturaEnCuadro( texturaServidor, renderer, 0, 310, 800, 50 );
} else {
texturaEnCuadro( textoJugador, renderer, 0, 310, 800, 50 );
/* Solo leemos el numero de bytes que esperamos (1), leer mas puede leer cosas
que serian procesadas en otro lado (struct Marcador)
*/
totalBytes = credencial->dameSocket()->recv( buffer, sizeof( Comandos ), 0 );
if ( totalBytes > 0 ) {
buffer[totalBytes] = 0;
memcpy( &comando, &buffer[0], 1 );
if( comando == NOMBRE_OK ) {
terminado = true;
retorno = true;
credencial->fijaNombre( textoIngresado );
} else if( comando == NOMBRE_OCUPADO ) {
error = true;
msjErrorLen = 40;
texturaError = texturaTexto( "El nombre del jugador no esta disponible", SDL_Color { 0, 0, 0, 255 }, 24, renderer );
}
} else if ( totalBytes < 0 ) {
if ( !credencial->dameSocket()->nonBlockNoError() ) {
//cout << credencial->dameSocket()->getLastErrorMessage() << endl;
terminado = true;
retorno = false;
}
} else {
//cout << "Conexion cerrada" << endl;
terminado = true;
retorno = false;
}
}
if( error ) {
texturaEnCuadro( texturaError, renderer, 0, 650, msjErrorLen * 10, 24 );
}
texturaEnCuadro( texturaTextoIngresado, renderer, ( 400 - textoIngresado.size() * 7 ), 360,
textoIngresado.size() * 14, 40 );
SDL_RenderPresent( renderer );
SDL_Delay( 25 );
}
SDL_StopTextInput();
SDL_DestroyTexture( texturaTextoIngresado );
SDL_DestroyTexture( texturaServidor );
SDL_DestroyTexture( textoJugador );
for( SDL_Texture* textura : texturasFondos ) {
SDL_DestroyTexture( textura );
}
return retorno;
}
/**
Pantalla de espera de jugadores antes del inicio de cada partida.
Cuando se completan 4 jugadores el servidor los da a conocer y se inicia la partida.
- La pantalla se muestra cuando es juego nuevo.
- Algun jugador abandono la partida.
**/
bool pantallaSalaPrevia( SDL_Renderer *renderer, Credencial *credencial, Tablero &tablero ) {
SDL_Texture* texturaEsperando = SDL_CreateTextureFromSurface( renderer, imgtxtEsperando.imagenSurface() );
SDL_Rect cuadro = { 0, 300, 800, 100 };
SDL_Event event;
Comandos comando;
char bytesJugadores[SIZE_OF_STRUCT_TABLERO], bytesCartas[TOTAL_CARTAS], buffer[TAMANO_BUFFER];
bool listo, retorno;
int totalBytes;
vector<SDL_Texture*> texturasFondos = crearFondosPantalla( renderer );
listo = false;
retorno = true;
SDL_SetRenderDrawColor( renderer, 255, 255, 255, SDL_ALPHA_OPAQUE );
while( !listo ) {
while ( SDL_PollEvent( &event ) ) {
switch ( event.type ) {
case SDL_QUIT:
retorno = false;
sdl_quit = listo = true;
break;
}
}
totalBytes = credencial->dameSocket()->recv( buffer, SIZE_OF_STRUCT_TABLERO + TOTAL_CARTAS + 1, 0 );
if ( totalBytes > 0 ) {
buffer[totalBytes] = 0;
memcpy( &comando, &buffer[0], 1 );
if( comando == NUEVA_PARTIDA ) {
memcpy( &bytesJugadores, &buffer[1], SIZE_OF_STRUCT_TABLERO );
memcpy( &bytesCartas, &buffer[49], TOTAL_CARTAS );
retorno = listo = true;
}
} else if ( totalBytes < 0 ) {
if ( !credencial->dameSocket()->nonBlockNoError() ) {
// cout << credencial->dameSocket()->getLastErrorMessage() << endl;
retorno = false;
listo = true;
}
} else {
//cout << "Conexion cerrada" << endl;
retorno = false;
listo = true;
}
SDL_RenderClear( renderer );
fondoPantalla( texturasFondos, renderer );
SDL_RenderFillRect( renderer, &cuadro );
texturaEnCuadro( texturaEsperando, renderer, 0, 300, 800, 100 );
SDL_RenderPresent( renderer );
SDL_Delay( 25 );
}
SDL_RenderClear( renderer );
crearMarcador( bytesJugadores, credencial->dameNombre(), renderer );
tablero.reiniciar( bytesCartas );
for( SDL_Texture* textura : texturasFondos ) {
SDL_DestroyTexture( textura );
}
SDL_DestroyTexture( texturaEsperando );
return retorno;
}
void pantallaJuego( SDL_Renderer * renderer, Credencial * credencial ) {
SDL_Texture *texturaTxtLanzada, *texturaCartaLanzada, *texturaGanador, *texturaLoteria;
SDL_Rect rectCartaLanzada = { 515, 70, 228, 350 };
SDL_Event event;
char buffer[TAMANO_BUFFER], ganador[TAMANO_NOMBRE + 1];
bool terminado, salir, habilitaBoton;
unsigned char carta;
int totalBytes;
Comandos comando;
vector<Imagen*> cartas;
Boton btnLoteria( 528, 440, 200, 50, "img/botonLoteria.png", renderer );
Tablero tablero( renderer );
SDL_SetRenderDrawColor( renderer, 255, 255, 255, SDL_ALPHA_OPAQUE );
SDL_RenderClear( renderer );
cartas = generarCartas();
texturaLoteria = SDL_CreateTextureFromSurface( renderer, imgtxtLoteria.imagenSurface() );
texturaTxtLanzada = SDL_CreateTextureFromSurface( renderer, imgtxtLanzada.imagenSurface() );
salir = false;
do {
if( !pantallaSalaPrevia( renderer, credencial, tablero ) ) {
break;
}
btnLoteria.render( renderer );
SDL_SetRenderDrawColor( renderer, 224, 224, 224, SDL_ALPHA_OPAQUE );
texturaEnCuadro( texturaTxtLanzada, renderer, 528, 20, 200, 40 );
SDL_RenderFillRect( renderer, &rectCartaLanzada );
terminado = habilitaBoton = false;
do {
SDL_RenderPresent( renderer );
while ( SDL_PollEvent( &event ) ) {
switch ( event.type ) {
case SDL_QUIT:
sdl_quit = salir = true;
terminado = true;
break;
case SDL_MOUSEBUTTONDOWN:
if( tablero.verficaClic( event.motion.x, event.motion.y ) ) {
if( tablero.restantes() == 0 ) {
habilitaBoton = true;
}
} else if( habilitaBoton && btnLoteria.validaClic( event.motion.x, event.motion.y ) ) {
comando = LOTERIA;
memcpy( &buffer, reinterpret_cast<const char*>( &comando ), 1 );
credencial->dameSocket()->send( buffer, 1, 0 );
}
break;
}
}
totalBytes = credencial->dameSocket()->recv( buffer, TAMANO_BUFFER, 0 );
if ( totalBytes > 0 ) {
buffer[totalBytes] = 0;
memcpy( &comando, &buffer[0], 1 );
if( comando == LANZAMIENTO ) {
memcpy( &carta, &buffer[1], 1 );
texturaCartaLanzada = SDL_CreateTextureFromSurface( renderer, cartas[carta - 1]->imagenSurface() );
tablero.agregarCartaLanzada( carta );
SDL_RenderCopy( renderer, texturaCartaLanzada, nullptr, &rectCartaLanzada );
SDL_DestroyTexture( texturaCartaLanzada );
} else if( comando == GANADOR ) {
terminado = true;
memset( ganador, 0, sizeof(ganador));
memcpy( &ganador, &buffer[1], TAMANO_NOMBRE );
}
} else if ( totalBytes < 0 ) {
if ( !credencial->dameSocket()->nonBlockNoError() ) {
//cout << credencial->dameSocket()->getLastErrorMessage() << endl;
terminado = salir = true;
}
} else {
//cout << "Conexion cerrada" << endl;
terminado = salir = true;
}
if( terminado && !salir ) {
SDL_SetRenderDrawColor( renderer, 255, 255, 255, SDL_ALPHA_OPAQUE );
SDL_Rect cuadro = { 0, 0, 800, 680 };
SDL_RenderFillRect( renderer, &cuadro );
texturaEnCuadro( texturaLoteria, renderer, 0, 200, 800, 180 );
texturaGanador = texturaTexto( ganador, SDL_Color { 0, 0, 0, 255 }, 110, renderer );
texturaEnCuadro( texturaGanador, renderer, 180, 360, 440, 110 );
SDL_DestroyTexture( texturaGanador );
SDL_RenderPresent( renderer );
SDL_Delay( 5000 );
terminado = true;
}
} while ( !terminado );
SDL_RenderClear( renderer );
} while ( !salir );
SDL_DestroyTexture( texturaTxtLanzada );
SDL_DestroyTexture( texturaLoteria );
for( Imagen* img : cartas ) {
delete img;
}
}
|
9a7e94ded6acd549a01c8e61180e4f7e765e5738
|
25d5bb29212feac6267f05188f6fcd53c2a49414
|
/CD Lab/Code Generators/assemblyPrefix.cpp
|
cef34a55f6c531a82858b239fab56baac87a867e
|
[] |
no_license
|
AnirudhKashyap511/CSE-Labs
|
3d960fc352c6fc76b0375abcc41389197974c9d5
|
c90d625e539312ecf228b44cefb1dd0e1fdd9f70
|
refs/heads/master
| 2022-11-22T23:30:18.684420
| 2022-11-09T03:06:26
| 2022-11-09T03:06:26
| 201,807,973
| 0
| 0
| null | 2019-08-11T19:43:14
| 2019-08-11T19:43:14
| null |
UTF-8
|
C++
| false
| false
| 1,421
|
cpp
|
assemblyPrefix.cpp
|
#include <iostream>
#include <ctype.h>
#include <stack>
#include <string.h>
#include <stdio.h>
using namespace std;
int main() {
int i=0;
char prefix[] = "-+1*234";
int n= strlen(prefix);
char postfix[n];
for(i=0;i<n;i++) {
postfix[i] = prefix[n-i-1];
}
printf("postfix: '%s'\n", postfix);
stack<int> s;
int first, second, temp;
i=0;
char ch = postfix[i];
while(postfix[i]!='\0') {
ch = postfix[i];
if(isdigit(ch)) {
s.push(ch-48);
cout<<"\nmov r"<<s.size()-1<<","<<ch;
}
else {
switch(ch) {
case '+' : {
second = s.top();
s.pop();
first = s.top();
s.pop();
cout<<"\nadd r"<<s.size()<<",r"<<s.size()+1;
temp = first+second;
s.push(temp);
break;
}
case '-' : {
second = s.top();
s.pop();
first = s.top();
s.pop();
cout<<"\nsub r"<<s.size()<<",r"<<s.size()+1;
temp = second-first;
s.push(temp);
break;
}
case '*' : {
second = s.top();
s.pop();
first = s.top();
s.pop();
cout<<"\nmul r"<<s.size()<<",r"<<s.size()+1;
temp = first*second;
s.push(temp);
break;
}
case '/' : {
second = s.top();
s.pop();
first = s.top();
s.pop();
cout<<"\ndiv r"<<s.size()<<",r"<<s.size()+1;
temp = second/first;
s.push(temp);
break;
}
}
}
i++;
}
while(s.size()>0) {
cout<<"\n"<<s.top()<<"\n";
s.pop();
}
}
|
6693feba22eb58b3bfff20545cd3fa5f8e7554e2
|
0ec1a1fee551ae3ef5aeb78b2f4b69fba5e55071
|
/src/Engine.hxx
|
4784932610959833b58980efb7b09ae0c564dff2
|
[] |
no_license
|
syvlo/ProjIMA
|
8a20c0f9a072aa67cd110d0040fde7da2c0137f7
|
aaf8252ff7dcc598518f5ee0521e7e174954d56d
|
refs/heads/master
| 2020-05-30T18:47:37.757789
| 2015-07-16T11:31:52
| 2015-07-16T11:31:52
| 16,434,962
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,250
|
hxx
|
Engine.hxx
|
#ifndef ENGINE_HXX_
# define ENGINE_HXX_
# include "Engine.hh"
# include "TVL0DecompositionMinimizer.hh"
# include "TVL0DecompositionMinimizerOneBVSeveralS.hh"
# include "ComputeByParts.hh"
# include "ComputeByPartsLinear.hh"
template <typename Minimizer>
Engine<Minimizer>::Engine(const std::vector<unsigned>& alpha)
: alpha_(alpha)
{
this->init();
}
template <typename Minimizer>
Engine<Minimizer>::~Engine()
{
this->destroy();
}
template <typename Minimizer>
void
Engine<Minimizer>::Compute(const std::vector<cv::Mat>& Inputs,
std::vector<cv::Mat>& OutputsBV,
std::vector<cv::Mat>& OutputsS,
std::vector<cv::Mat>& OutputsC,
const Args& args)
{
if (args.getOneBVSeveralS())
{
TVL0DecompositionMinimizerOneBVSeveralS<Minimizer> TVL0 (alpha_,
args.getBetaBV(),
args.getBetaS());
if (args.getNonOptimalMode())
{
if (args.getShiftWindow() != args.getFillingWindowSize())
{
ComputeByPartsLinear<TVL0DecompositionMinimizerOneBVSeveralS<Minimizer > > computer(args.getComputeWindowSize(), args.getFillingWindowSize(), args.getShiftWindow(), TVL0);
computer.compute(Inputs, 30);
OutputsBV = computer.getOutputsBV();
OutputsS = computer.getOutputsS();
OutputsC = computer.getOutputsC();
}
else
{
ComputeByParts<TVL0DecompositionMinimizerOneBVSeveralS<Minimizer > > computer(args.getComputeWindowSize(), args.getFillingWindowSize(), TVL0);
computer.compute(Inputs, args.getOneBVSeveralS(), false);
OutputsBV = computer.getOutputsBV();
OutputsS = computer.getOutputsS();
OutputsC = computer.getOutputsC();
}
}
else
{
TVL0.compute(Inputs);
OutputsBV = TVL0.getOutputsBV();
OutputsS = TVL0.getOutputsS();
OutputsC = TVL0.getOutputsComplete();
}
}
else
{
TVL0DecompositionMinimizer<Minimizer> TVL0 (alpha_,
args.getBetaBV(),
args.getBetaS());
if (args.getNonOptimalMode())
{
if (args.getShiftWindow() != args.getFillingWindowSize())
{
ComputeByPartsLinear<TVL0DecompositionMinimizer<Minimizer > > computer(args.getComputeWindowSize(), args.getFillingWindowSize(), args.getShiftWindow(), TVL0);
computer.compute(Inputs, 30);
OutputsBV = computer.getOutputsBV();
OutputsS = computer.getOutputsS();
OutputsC = computer.getOutputsC();
}
else
{
ComputeByParts<TVL0DecompositionMinimizer<Minimizer > > computer(args.getComputeWindowSize(), args.getFillingWindowSize(), TVL0);
computer.compute(Inputs, args.getOneBVSeveralS(), true);
OutputsBV = computer.getOutputsBV();
OutputsS = computer.getOutputsS();
OutputsC = computer.getOutputsC();
}
}
else
{
TVL0.compute(Inputs);
OutputsBV = TVL0.getOutputsBV();
OutputsS = TVL0.getOutputsS();
OutputsC = TVL0.getOutputsComplete();
}
}
}
template <typename Minimizer>
void
Engine<Minimizer>::init()
{
}
template <>
void
Engine<RiceDataTerm<unsigned, unsigned> >::init()
{
RiceDataTerm<unsigned, unsigned>::init();
}
template <typename Minimizer>
void
Engine<Minimizer>::destroy()
{
}
template <>
void
Engine<RiceDataTerm<unsigned, unsigned> >::destroy()
{
RiceDataTerm<unsigned, unsigned>::destroy();
}
#endif /* !ENGINE_HXX_ */
|
cd56694da7e243395a536b342d8b855deeeb0614
|
6c0a5c01fed96b34731dca52762597e9ef94cae3
|
/encrypt-lib/src/main/cpp/helper/EncryptHelper.cpp
|
4f6b5e1cf5e254f79351509bbf9da4e137252912
|
[] |
no_license
|
Adelbert1988/open_ssl_demo
|
8d851ec41ee240a36665fdfe8b95484623245082
|
bbd6d4bdcdf48a6dbd4f67beacf7ec97f3638b59
|
refs/heads/master
| 2020-03-15T04:42:24.244044
| 2018-09-12T08:27:40
| 2018-09-12T08:27:40
| 131,971,848
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,527
|
cpp
|
EncryptHelper.cpp
|
//
// Created by u51 on 2018/4/25.
//
#include "EncryptHelper.h"
using std::string;
jstring EncryptHelper::encryptByMD5(JNIEnv *env, jstring content)
{
const char *unicodeChar = env->GetStringUTFChars(content, NULL);
size_t unicodeCharLength = env->GetStringLength(content);
unsigned char md[MD5_DIGEST_LENGTH];
int i;
char buf[33] = {'\0'};
MD5((unsigned char*)unicodeChar, unicodeCharLength, (unsigned char*)&md);
for (i = 0; i < 16; i++) {
sprintf(&buf[i*2], "%02x", md[i]);
}
env->ReleaseStringUTFChars(content, unicodeChar);
return env->NewStringUTF(buf);
}
std::string EncryptHelper::encryptByAES(const std::string &aesSecret, const std::string &content)
{
const unsigned char *iv = (const unsigned char *) "0123456789012345";
jsize src_Len = content.size();
int outlen = 0, cipherText_len = 0;
unsigned char *out = (unsigned char *) malloc((src_Len / 16 + 1) * 16);
//清空内存空间
memset(out, 0, (src_Len / 16 + 1) * 16);
EVP_CIPHER_CTX ctx;
EVP_CIPHER_CTX_init(&ctx);
//指定加密算法,初始化加密key/iv
EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, (const unsigned char *) aesSecret.c_str(), iv);
//对数据进行加密运算
EVP_EncryptUpdate(&ctx, out, &outlen, (const unsigned char *) content.c_str(), src_Len);
cipherText_len = outlen;
//结束加密运算
EVP_EncryptFinal_ex(&ctx, out + outlen, &outlen);
cipherText_len += outlen;
EVP_CIPHER_CTX_cleanup(&ctx);
static std::string result((char *) out, cipherText_len);
free(out);
return result;
}
std::string EncryptHelper::decryptByAES(const std::string &aesSecret, const std::string &cipherContent)
{
const unsigned char *iv = (const unsigned char *) "0123456789012345";
jsize src_Len = cipherContent.size();
int outlen = 0, plaintext_len = 0;
unsigned char *out = (unsigned char *) malloc(src_Len);
memset(out, 0, src_Len);
EVP_CIPHER_CTX ctx;
EVP_CIPHER_CTX_init(&ctx);
//指定解密算法,初始化解密key/iv
EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, (const unsigned char *) aesSecret.c_str(), iv);
//对数据进行解密运算
EVP_DecryptUpdate(&ctx, out, &outlen, (const unsigned char *) cipherContent.c_str(), src_Len);
plaintext_len = outlen;
//结束解密运算
EVP_DecryptFinal_ex(&ctx, out + outlen, &outlen);
plaintext_len += outlen;
EVP_CIPHER_CTX_cleanup(&ctx);
static std::string result((char *) out, plaintext_len);
free(out);
return result;
}
std::string EncryptHelper::encryptByRSA(const std::string &publicKey, const std::string &content) {
BIO *bio = NULL;
RSA *rsa_public_key = NULL;
//从字符串读取RSA公钥串
if ((bio = BIO_new_mem_buf((void *) publicKey.c_str(), -1)) == NULL) {
LOGI("BIO_new_mem_buf failed!");
return "";
}
//读取公钥
rsa_public_key = PEM_read_bio_RSA_PUBKEY(bio, NULL, NULL, NULL);
//异常处理
if (rsa_public_key == NULL) {
//资源释放
BIO_free_all(bio);
//清除管理CRYPTO_EX_DATA的全局hash表中的数据,避免内存泄漏
CRYPTO_cleanup_all_ex_data();
return "";
}
//rsa模的位数
int rsa_size = RSA_size(rsa_public_key);
//RSA_PKCS1_PADDING 最大加密长度 为 128 -11
//RSA_NO_PADDING 最大加密长度为 128
//rsa_size = rsa_size - RSA_PKCS1_PADDING_SIZE;
//动态分配内存,用于存储加密后的密文
unsigned char *to = (unsigned char *) malloc(rsa_size + 1);
//填充0
memset(to, 0, rsa_size + 1);
//明文长度
int flen = content.length();
//加密,返回值为加密后的密文长度,-1表示失败
int status = RSA_public_encrypt(flen
, (const unsigned char *) content.c_str()
, to
, rsa_public_key, RSA_PKCS1_PADDING);
//异常处理
if (status < 0) {
//资源释放
free(to);
BIO_free_all(bio);
RSA_free(rsa_public_key);
//清除管理CRYPTO_EX_DATA的全局hash表中的数据,避免内存泄漏
CRYPTO_cleanup_all_ex_data();
return "";
}
//赋值密文
static std::string result((char *) to, status);
free(to);
BIO_free_all(bio);
RSA_free(rsa_public_key);
CRYPTO_cleanup_all_ex_data();
return result;
}
std::string EncryptHelper::decryptByRSA(const std::string &privateKey, const std::string &cipherContent) {
BIO *bio = NULL;
RSA *rsa_private_key = NULL;
//从字符串读取RSA公钥串
if ((bio = BIO_new_mem_buf((void *) privateKey.c_str(), -1)) == NULL) {
LOGI("BIO_new_mem_buf failed!");
return "";
}
//读取私钥
rsa_private_key = PEM_read_bio_RSAPrivateKey(bio, NULL, NULL, NULL);
//异常处理
if (rsa_private_key == NULL) {
//资源释放
BIO_free_all(bio);
//清除管理CRYPTO_EX_DATA的全局hash表中的数据,避免内存泄漏
CRYPTO_cleanup_all_ex_data();
return "";
}
//rsa模的位数
int rsa_size = RSA_size(rsa_private_key);
//动态分配内存,用于存储解密后的明文
unsigned char *to = (unsigned char *) malloc(rsa_size + 1);
//填充0
memset(to, 0, rsa_size + 1);
//密文长度
int flen = cipherContent.length();
// RSA_NO_PADDING
// RSA_PKCS1_PADDING
//解密,返回值为解密后的名文长度,-1表示失败
int status = RSA_private_decrypt(flen, (const unsigned char *) cipherContent.c_str(), to, rsa_private_key,
RSA_PKCS1_PADDING);
//异常处理率
if (status < 0) {
//释放资源
free(to);
BIO_free_all(bio);
RSA_free(rsa_private_key);
//清除管理CRYPTO_EX_DATA的全局hash表中的数据,避免内存泄漏
CRYPTO_cleanup_all_ex_data();
return "";
}
//赋值明文,是否需要指定to的长度?
static std::string result((char *) to);
//释放资源
free(to);
BIO_free_all(bio);
RSA_free(rsa_private_key);
//清除管理CRYPTO_EX_DATA的全局hash表中的数据,避免内存泄漏
CRYPTO_cleanup_all_ex_data();
return result;
}
std::string EncryptHelper::encodeBase64(const std::string &decoded_bytes) {
BIO *bio, *b64;
BUF_MEM *bufferPtr;
b64 = BIO_new(BIO_f_base64());
//不换行
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
bio = BIO_new(BIO_s_mem());
bio = BIO_push(b64, bio);
//encode
BIO_write(bio, decoded_bytes.c_str(), (int) decoded_bytes.length());
BIO_flush(bio);
BIO_get_mem_ptr(bio, &bufferPtr);
//这里的第二个参数很重要,必须赋值
std::string result(bufferPtr->data, bufferPtr->length);
BIO_free_all(bio);
return result;
}
std::string EncryptHelper::decodeBase64(const std::string &encoded_bytes) {
BIO *bioMem, *b64;
bioMem = BIO_new_mem_buf((void *) encoded_bytes.c_str(), -1);
b64 = BIO_new(BIO_f_base64());
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
bioMem = BIO_push(b64, bioMem);
//获得解码长度
size_t buffer_length = BIO_get_mem_data(bioMem, NULL);
char *decode = (char *) malloc(buffer_length + 1);
//填充0
memset(decode, 0, buffer_length + 1);
BIO_read(bioMem, (void *) decode, (int) buffer_length);
static std::string decoded_bytes(decode);
BIO_free_all(bioMem);
return decoded_bytes;
}
|
9c767163e155f22a69319331bbbecbf654bc8cde
|
6d56b059ac8753a75d162d697eddc29b3faa4a3a
|
/UnrealTank/Source/UnrealTank/Public/TankAiContoller.h
|
d3771818a3b0fb53580ffe93125ec1909f2ba5b8
|
[] |
no_license
|
Losspost/Unreal-Tank-Course
|
d6790df8ef2d64a53cee37e4adb4b01521b471f0
|
aa11ece66788d01f12b4c1202e9279006a4740ae
|
refs/heads/master
| 2020-03-29T22:48:55.806533
| 2018-10-02T11:11:56
| 2018-10-02T11:11:56
| 150,441,724
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 509
|
h
|
TankAiContoller.h
|
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "AIController.h"
#include "TankAiContoller.generated.h"
//Forward Declaration
class ATank;
/**
*
*/
UCLASS()
class UNREALTANK_API ATankAiContoller : public AAIController
{
GENERATED_BODY()
private:
virtual void BeginPlay() override;
ATank* GetControlledAi() const;
ATank* GetPlayerTank() const;
void AimTowardsPlayer();
void Tick(float DeltaTime) override;
};
|
f4ae4eb275c8642666800e66cb2949c3e823163e
|
ec4afa1366f586f6621c2b6e42fff36dc404e022
|
/Computer_Graphics/3.transformation.cpp
|
7712d1f4bdd2cff6f664faf80fc633e60134390e
|
[] |
no_license
|
sparth62/Lab_Programs
|
3bf10773b251298adf926bd6509f954d14c0e736
|
459df83fe7394316b7b2c6e48d76014189eb6c27
|
refs/heads/master
| 2020-03-22T12:59:44.923373
| 2019-09-09T05:37:20
| 2019-09-09T05:37:20
| 140,071,439
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,207
|
cpp
|
3.transformation.cpp
|
#include<conio.h>
#include<graphics.h>
#include<stdio.h>
#include<time.h>
#include<math.h>
void translation(double x1,double y1,double x2,double y2)
{
double tx,ty;
int gd = DETECT, gm;
printf("Enter tx:");
scanf("%lf",&tx);
printf("Enter ty:");
scanf("%lf",&ty);
printf("Your line will shown on window in white color....");
printf("\nYour new line will shown on window in green color....");
Sleep(5000);
initgraph(&gd, &gm, "C:\\TURBOC3\\BGI");
line(x1,y1,x2,y2);
setcolor(10);
line(x1+tx,y1+ty,x2+tx,y2+ty);
getch();
}
void scaling(double x1,double y1,double x2,double y2)
{
double sx,sy;
int gd = DETECT, gm;
printf("Enter sx:");
scanf("%lf",&sx);
printf("Enter sy:");
scanf("%lf",&sy);
printf("Your line will shown on window in white color....");
printf("\nYour new line will shown on window in green color....");
Sleep(5000);
initgraph(&gd, &gm, "C:\\TURBOC3\\BGI");
line(x1,y1,x2,y2);
setcolor(10);
line(x1*sx,y1*sy,x2*sx,y2*sy);
getch();
}
void rotation(double x1,double y1,double x2,double y2)
{
double angle;
int gd = DETECT, gm;
printf("Enter rotation angle:");
scanf("%lf",&angle);
printf("Your line will shown on window in white color....");
printf("\nYour new line will shown on window in green color....");
Sleep(5000);
initgraph(&gd, &gm, "C:\\TURBOC3\\BGI");
line(x1,y1,x2,y2);
setcolor(10);
//x1=x1*cos(angle)-y1*sin(angle);
//y1=x1*sin(angle)+y1*cos(angle);
x2=x2*cos(angle)-y2*sin(angle);
y2=x2*sin(angle)+y2*cos(angle);
line(x1,y1,x2,y2);
getch();
}
int main()
{
double x1,x2,y1,y2;
int ch;
printf("Enter x-cordinate of first point:");
scanf("%lf",&x1);
printf("Enter y-cordinate of first point:");
scanf("%lf",&y1);
printf("Enter x-cordinate of second point:");
scanf("%lf",&x2);
printf("Enter y-cordinate of second point:");
scanf("%lf",&y2);
printf("MENU");
printf("\n--------------\n");
printf("1.Translation\n2.Rotation\n3.Scaling");
printf("\n--------------\n");
printf("Enter your choice:");
scanf("%d",&ch);
switch(ch)
{
case 1: translation(x1,y1,x2,y2);
break;
case 2: rotation(x1,y1,x2,y2);
break;
case 3: scaling(x1,y1,x2,y2);
break;
}
}
|
d382adfb793cde760d8822b2ea58ca27ac870be9
|
2b302e9ac4cb1bd1dda34bb8366b5d17b6f46955
|
/arduino code/homeautomatnble.ino
|
0676b42ca73367446c353ce942c8999985c919e1
|
[] |
no_license
|
harleenkaurchadha/Home-Automation-Using-Bluetooth
|
845870f5ac05f6f59830b21da0f931ce2c037214
|
2667e0728f5e10f6f2b530e41505d0035417cbb9
|
refs/heads/master
| 2020-07-03T05:13:08.152640
| 2016-12-16T14:21:05
| 2016-12-16T14:21:05
| 74,195,844
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,016
|
ino
|
homeautomatnble.ino
|
String voice;
#define relayLight 2 //pin connected to input1 of relay
#define relayFan 3 //pin connected to input1 of relay
void setup()
{
Serial.begin(9600);
pinMode(relayLight,OUTPUT);
pinMode(relayFan,OUTPUT);
digitalWrite(relayLight,HIGH); //initially turn off the light
digitalWrite(relayFan,HIGH); //initially turn off the fan
}
void loop() {
while(Serial.available())
{
delay(10);
char c = Serial.read();
if(c=='#')
{ break;
}
voice +=c;
}
if(voice.length()>0)
{
Serial.println(voice);
if(voice=="*light on")
{
lighton();
}
else if(voice=="*light off")
{
lightoff();
}
else if(voice=="*fan on")
{
fanon();
}
else if(voice=="*fan stop")
{
fanoff();
}
voice="";
}
}
void lighton()
{
digitalWrite(relayLight,LOW);
}
void lightoff()
{
digitalWrite(relayLight,HIGH);
}
void fanon()
{ digitalWrite(relayFan,LOW);
}
void fanoff()
{
digitalWrite(relayFan,HIGH);
}
|
b3df9d4297337d4b59648fda52555cd207fa865d
|
13204a429a75d37b4645bce4dd947731400700ec
|
/ABMS_Propeller_Clock_v3_3/ABMS_Propeller_Clock_v3_3.ino
|
6c2c932710728c343cd0f1948eecf150928fdf5d
|
[] |
no_license
|
ISHAN-SACHINTHA/Arduino-projects
|
5c3a04e534215e386d406d9b9eb49c6d3d438672
|
2c2753c1ac88623398950e79d01016233d70177c
|
refs/heads/main
| 2023-02-03T15:05:51.071894
| 2020-12-15T04:06:46
| 2020-12-15T04:06:46
| 321,547,787
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,247
|
ino
|
ABMS_Propeller_Clock_v3_3.ino
|
/*
#####################################################################################
# File: ABMS_Propeller_Clock_v3_3.ino
# Processor: Arduino UNO, MEGA ou Teensy++ 2.0
# Language: Wiring / C /Processing /Fritzing / Arduino IDE
#
# Objectives: To demonstrating the Persistence Of Vision (POV) effect by creating
# a LED gadget showing rotative messages
#
# Behavior: By sinchronized rotating the LEDs will show a message
# using POV (shows a message and digital clock
#
# Download: https://github.com/Arduinobymyself/Propeller_Message_Display
#
# Author: Marcelo Moraes
# Date: 02/01/17
# place: Brazil, Sorocaba City
#
#####################################################################################
This project contains public domain code.
The modification is allowed without notice.
*/
// defining the ASCII alphabet characters from the font.h library
#include "font.h"
//defining the time library to get hours, minutes, seconds and date
#include <Time.h>
// define the Arduino LED pins
const int LEDpins[] = {13,12,11,10,9,8,7,6,5,4}; //only 8 pins,
//pins 2 and 11 is for the inner and outter ring
// Total LED's in a row
int rows= 8;
const int charHeight = 8;
const int charWidth = 5;
int povDelay = 10; //persistence of vision need 1/10 of second
int charDelay = 170; //delay for letters
int State = 0;
int lastState = 0;
int i;
// sensor setup
int sensorPin = 3; // define the Arduino sensor pin
// the sensor is a Reed Switch with pull down resistor
// connected to the +5Vdc
//***************************************************
//put your message here
char textString[] = "ABMS Clock";
//***************************************************
String tmp_str;
void setup(){
//setting time and date initial values
setTime(01,30,00,02,02,2017);
//reed switch sensor pin connected at pin 12 and is an input
pinMode(sensorPin,INPUT);
// all other pins are outputs (2,3,4,5,6,7,8,9,10,11)
// the stick has 10 LEDs (8 for letters and 2 for the inner and outter ring)
for (i = 0; i <= 11; i++){
pinMode(LEDpins[i], OUTPUT);
}
}
void loop(){
tmp_str=Clock();
tmp_str=tmp_str+" ";
digitalWrite(4,HIGH);
digitalWrite(13,HIGH);
State = digitalRead(sensorPin); //get the sensor state
if(State != lastState){//if sensor state changed
if(State == HIGH){//if sensor state is high
delayMicroseconds(povDelay); //POV delay 1/10 of second
//printting the clock
for (int k=0; k<tmp_str.length(); k++){
printInvertedLetter(tmp_str.charAt(k));
}
//delayMicroseconds(povDelay); //POV delay 1/10 of second
//printting the text
for(int k=sizeof(textString)-1; k>-1; k--){
printNormalLetter(textString[k]);
}
}
lastState = State;
}
}
//function that calculates the time to show in the display
//and mkes the number < zero adjustment
String Clock(){
String result;
String str1;
String str2;
String str3;
if (hour() < 10)
str1 = "0"+String(hour());
else
str1 = String(hour());
if (minute() < 10)
str2 = "0"+String(minute());
else
str2 = String(minute());
if (second() < 10)
str3 = "0"+String(second());
else
str3 = String(second());
result = str1+":"+str2+":"+str3;
return result;
}
//normal and forwards printted letters
void printNormalLetter(char ch){
// make sure the character is within the alphabet bounds (defined by the font.h file)
// if it's not, make it a blank character
if (ch < 32 || ch > 126){
ch = 32;
}
// subtract the space character (converts the ASCII number to the font index number)
ch -= 32;
// step through each byte of the character array
for (int i=charWidth-1; i>-1; i--) {
byte b = font[ch][i];
// ventilator draai tegen de klok in
for (int j=0; j<charHeight; j++) {
digitalWrite(LEDpins[j+1], bitRead(b,j));
}
delayMicroseconds(charDelay);
}
//clear the LEDs
for (i = 0; i < rows; i++){
digitalWrite(LEDpins[i+1] , LOW);
}
// space between letters
delayMicroseconds(charDelay);
}
//inverted (flipped) and backwards printed letters
void printInvertedLetter(char ch){
// make sure the character is within the alphabet bounds (defined by the font.h file)
// if it's not, make it a blank character
if (ch < 32 || ch > 126){
ch = 32;
}
// subtract the space character (converts the ASCII number to the font index number)
ch -= 32;
// step through each byte of the character array
for (int i=0; i<charWidth; i++) {
byte b = font[ch][i];
// ventilator draai tegen de klok in
for (int j=0; j<charHeight; j++) {
digitalWrite(LEDpins[j+1], bitRead(b, 7-j));
}
delayMicroseconds(charDelay);
}
//clear the LEDs
for (i = 0; i < rows; i++){
digitalWrite(LEDpins[i+1] , LOW);
}
// space between letters
delayMicroseconds(charDelay);
}
|
bad82763b52e2b81fb5cf514d3a76a3eb9160d17
|
55ee5259b9b167f05c53a862d266ccc42d64eb6a
|
/trunk/SonarGaussian/GraphMatcher/VertexMatcher/VMHeuristicByAngVariation1.cpp
|
56a92c9f8c60156f880262f57e61f83494b5c358
|
[] |
no_license
|
matheusbg8/SonarGraph
|
0829a4477271a34ead6c2aaaed5ac810dcada515
|
88beb18a6650194b352b195fc2a22cf256ec9cc8
|
refs/heads/master
| 2021-01-19T11:14:58.651049
| 2017-02-16T23:18:05
| 2017-02-16T23:18:05
| 82,235,034
| 10
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,964
|
cpp
|
VMHeuristicByAngVariation1.cpp
|
#include "VMHeuristicByAngVariation1.h"
VMHeuristicByAngVariation1::VMHeuristicByAngVariation1()
{
}
bool VMHeuristicByAngVariation1::load(ConfigLoader &config)
{
}
float VMHeuristicByAngVariation1::vertexMatch(Gaussian &gu, Gaussian &gv,
vector<GraphLink *> &eu, vector<GraphLink *> &ev,
unsigned *matchEdges)
{
//void GraphMatcher::findPairOfVertexByDistance(vector<GraphLink *> &u, vector<GraphLink *> &v, float *edgeAngError, float *edgeDistError, float *angCorrectionMean,unsigned *edgeMatch, unsigned *edgeCut)
/*
Problema desta solucao:
As vezes a aresta que melhor encaixa é menor
do que uma aresta que tambem encaixa.
E se tiver duas aresta de tamanho igual mas
angulos diferentes ? E só uma delas encaixa e a outra
não está presente no proximo grafo.
*/
// Sort edges by weight increasing order (distances vertex to vertex)
// sort(u.begin(),u.end(), compDist);
// sort(v.begin(),v.end(), compDist);
// int i , j;
// float distError, angError, ACangCorrectionMean=0.f;
// *edgeDistError=0.f;
// *edgeAngError=0.f;
// *edgeCut = *edgeMatch =0;
// // Compute edges match by wight (vertex distances)
// j = 0;
// i = 0;
// while(i < u.size() && j < v.size())
// {
// distError = fabs(u[i]->p - v[j]->p);
// if(distError > distThreshold)
// { // cut no match edge
// // cut the edge with lowest weight
// if(v[i]->p < u[j]->p)
// {
// (*edgeDistError)+= v[i]->p;
// (*edgeCut)++;
// v.erase(v.begin()+j);
// }else
// {
// (*edgeCut)++;
// u.erase(u.begin()+i);
// }
// }else
// {
// (*edgeDistError) += distError;
// ACangCorrectionMean+= u[i]->ang - v[j]->ang;
// i++;
// j++;
// }
// }
// while(i < u.size())
// {
// (*edgeCut)++;
// u.erase(u.begin()+i);
// }
// while(j < v.size())
// {
// (*edgeCut)++;
// v.erase(v.begin()+j);
// }
// *angCorrectionMean = ACangCorrectionMean/u.size();
// if(u.size() <= 1 || v.size() <= 1)
// {
// // No match found
// return;
// }
// // Compute vertex match by invAng (Edges distances)
// GraphLink::computeInvAng(v);// Change the edges order, it's important
// GraphLink::computeInvAng(u);// Change the edges order
// for(i = 0; i < v.size(); i++)
// {
// angError = fabs(v[i]->invAngle - u[i]->invAngle);
// distError = fabs(v[i]->p - u[i]->p);
// if(angError <= angThreshold &&
// distError <= distThreshold )
// { // Match found
// (*edgeMatch)++;
// *edgeAngError += angError;
// }else
// {
// (*edgeCut)+= v.size();
// (*edgeMatch) =0;
// return;
// }
// }
// *edgeAngError/= *edgeMatch;
}
float VMHeuristicByAngVariation1::vertexMatch(Gaussian &gu, Gaussian &gv,
vector<GraphLink *> &u, vector<GraphLink *> &v,
vector<MatchInfoWeighted> &matchEdges)
{
}
|
08c06e665f350877ee442ef1ac8fee4204cc7191
|
12c5cbb7f1a99917ec510d28893b92dc7ff55961
|
/CaptureThread.cpp
|
10b02fa112e82f6de8e5a15331b23b0389a35ec8
|
[] |
no_license
|
StickyNeutrino/CameraPullDownThingy
|
37e6b1220c00ca1c1203f07b44ad8acc6f7a1d9e
|
2e4ed81b4dba747db83b4ae768a877840f0456a9
|
refs/heads/master
| 2021-05-12T17:34:30.906528
| 2018-03-08T01:24:37
| 2018-03-08T01:24:37
| 117,048,284
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,252
|
cpp
|
CaptureThread.cpp
|
//
// CaptureThread.cpp
//
//
// Tasked with Capturing Images regularly
// and pulling them down from the camera
//
#include "CaptureThread.hpp"
using namespace std;
extern vector<char> newestImage;
extern mutex imageVectorMutex;
const string ipAddr = "http://192.168.0.10/";
void CaptureThread(){
std::cout << File_WIFI_Data << std::endl;
struct curl_slist *headers = NULL;
//nessesary so the camera will talk to us
headers = curl_slist_append(headers, "User-Agent: OlympusCameraKit");
//Set up CURL
CURL *curl; //create state for CURL called "curl"
curl = curl_easy_init();
//End setup
initCamera(curl, headers);
//Currently will only take 1000 photos before it stops
for(int i = 0; i < 1000; i++){
checkConnection(curl, headers);
getPicture(curl, headers);
/* sleep defined in <unistd.h> */
sleep(2);
}
//turns off the camera but not really nessesary
get("exec_pwoff.cgi", curl, headers);
curl_easy_cleanup(curl); //ALWAYS HAVE THIS - frees CURL resources
}
bool checkConnection(CURL *curl, struct curl_slist *headers){
if (!curl) {
return false;
}
string link = ipAddr + "get_connectmode.cgi";
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 2L);
curl_easy_setopt(curl, CURLOPT_URL, link.c_str());
cout << endl << link << endl;
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
CURLcode res = curl_easy_perform(curl);
if (res == CURLE_COULDNT_CONNECT || res == CURLE_OPERATION_TIMEDOUT) {
/* dont really know what to do */
return false;
}
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 0L);
return true;
}
void get(string command, CURL *curl, struct curl_slist *headers) {
//make URL
string link = ipAddr + command;
if (curl) {
curl_easy_setopt(curl, CURLOPT_URL, link.c_str());
cout << endl << link << endl;
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) { //Check for errors
cout << "curl_easy_perform() failed: " << stderr << endl;
curl_easy_strerror(res);
}
}
}
void post(string command, string body, struct curl_slist *headers) {
/* make URL */
//This sleep is maybe nessary but defitly can be less then 2
sleep(2);
string link = ipAddr + command;
CURL *curl; //create state for CURL called "curl"
curl = curl_easy_init();
if (curl) {
cout << endl << link << endl;
struct curl_slist *NewHeaders;
curl_easy_setopt(curl, CURLOPT_URL, link.c_str());
NewHeaders = curl_slist_append(headers, "Content-type:");
NewHeaders = curl_slist_append(NewHeaders, "Accept:");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, body.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) { /* Check for errors */
cout << "curl_easy_perform() failed: " << stderr << endl;
curl_easy_strerror(res);
}
}
}
void initCamera(CURL *curl, struct curl_slist *headers){
get("get_connectmode.cgi", curl, headers);
get("switch_cameramode.cgi?mode=rec", curl, headers);
get("get_connectmode.cgi", curl, headers);
get("get_state.cgi", curl, headers);
get("exec_takemisc.cgi?com=startliveview&port=5555", curl, headers);
/* put camera in record mode */
//get("get_camprop.cgi?com=get&propname=TAKE_DRIVE",curl, headers);
//post("set_camprop.cgi?com=set&propname=TAKE_DRIVE",SHOOTMODE_DATA, curl, headers);
/* tell camera not to save photos to SD card */
get("get_camprop.cgi?com=get&propname=DESTINATION_FILE", curl, headers);
post("set_camprop.cgi?com=set&propname=DESTINATION_FILE",File_WIFI_Data, headers);
get("get_camprop.cgi?com=get&propname=DESTINATION_FILE", curl, headers);
}
void getPicture(CURL *curl, struct curl_slist *headers){
//take a picture
get("exec_takemotion.cgi?com=newstarttake", curl, headers);
//recover the picture
//basically a get request that reads the responce into the vector
string link = ipAddr + "exec_storeimage.cgi";
if (curl) {
//sleep is not nesseary but without it
//we need to listen for an event from the camera
sleep(1);
curl_easy_setopt(curl, CURLOPT_URL, link.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
//Tells curl what funtion to pass all data (the image) into
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, imageWriteCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &newestImage);
/* lock the mutex so other thread allways gets full image */
imageVectorMutex.lock();
/* clear last image */
newestImage.clear();
/* preform the request */
CURLcode res = curl_easy_perform(curl);
imageVectorMutex.unlock();
std::cout <<"GOT" << endl;
if (res != CURLE_OK) { //Check for errors
cout << "curl_easy_perform() failed: " << stderr << endl;
curl_easy_strerror(res);
}
}
}
size_t imageWriteCallback(char *ptr, size_t size, size_t nmemb, void *userdata){
/* kinda ugly but just gets the vector from void pointer */
std::vector<char> * imageVector = ((std::vector<char> *) userdata);
size_t incomingSize = size * nmemb;
if(!incomingSize){
/* if we don't get anything */
return 0;
}
int i = 0;
for(; i * sizeof(char) < incomingSize; i++){
/* push all data into vector */
imageVector->push_back(ptr[i]);
}
return i * sizeof(char);
}
|
e074fda3d4a0faf348652fefd63cc7eb6cec51fe
|
0af8c55a93a493ddf47c8a00943d54ca9ee25550
|
/frameworks/runtime-src/proj.ios_mac/XBattleInfo.cpp
|
c8bbd76058fb9b58c6899de7fb33901026e7544e
|
[] |
no_license
|
iFlyingfish/X
|
382c6532bec7bad2493b3c825bc42cb6c1abb5e8
|
d49b484369a721c7e2a86d39ce764853dd40fe35
|
refs/heads/master
| 2021-01-22T14:03:08.825991
| 2015-07-01T07:21:44
| 2015-07-01T07:21:44
| 28,803,529
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 171
|
cpp
|
XBattleInfo.cpp
|
//
// XBattleInfo.cpp
// X
//
// Created by leo on 15/1/19.
//
//
#include "XBattleInfo.h"
XBattleInfo::XBattleInfo(int HP)
:mHP(HP),
mState(battleStateIdle)
{
}
|
6812212b280fcfbcbcc35efd50e0c26bb1419618
|
412b4c2a33d8ca5554fd607e07cee620cea9b463
|
/rmath/matrix/rsparsesymmetricmatrix.cpp
|
9dae87b7de95bb3bfa54d3210fabb8f7b32a274b
|
[] |
no_license
|
pfrancq/r
|
65df093d7cd31f4e5c521eadd61a54cb8da58925
|
bd78f3b2da3b357ca5d21e6055f809c83b488cd5
|
refs/heads/main
| 2023-08-17T09:01:37.815379
| 2021-10-04T06:15:01
| 2021-10-04T06:15:01
| 404,758,905
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,964
|
cpp
|
rsparsesymmetricmatrix.cpp
|
/*
R Project Library
RSparseSymmetricMatrix.cpp
Sparse Matrix - Implementation.
Copyright 2005-2015 by Pascal Francq (pascal@francq.info).
Copyright 2003-2005 by Valery Vandaele.
Copyright 2003-2008 by the Université Libre de Bruxelles (ULB).
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2.0 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library, as a file COPYING.LIB; if not, write
to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
*/
//---------------------------------------------------------------------------
// include files for R Project
#include <rsparsesymmetricmatrix.h>
using namespace R;
using namespace std;
//-----------------------------------------------------------------------------
//
// RSparseSymmetricMatrix
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
RSparseSymmetricMatrix::RSparseSymmetricMatrix(size_t size,bool alllines,size_t init)
: RSparseMatrix(size,size,alllines,init)
{
if(AllLines)
{
for(size_t i=0;i<NbLines;i++)
InsertPtrAt(new RSparseVector(NbCols,i),i,true);
}
}
//-----------------------------------------------------------------------------
RSparseSymmetricMatrix::RSparseSymmetricMatrix(const RSparseSymmetricMatrix& src)
: RSparseMatrix(src)
{
}
//-----------------------------------------------------------------------------
int RSparseSymmetricMatrix::Compare(const RSparseSymmetricMatrix&) const
{
return(-1);
}
//-----------------------------------------------------------------------------
RSparseSymmetricMatrix& RSparseSymmetricMatrix::operator=(const RSparseSymmetricMatrix& matrix)
{
RSparseMatrix::operator=(matrix);
return(*this);
}
//------------------------------------------------------------------------------
double RSparseSymmetricMatrix::operator()(size_t i,size_t j) const
{
if((i>=NbLines)||(j>=NbCols))
throw std::range_error(RString("RSparseSymmetricMatrix::operator() const : index "+RString::Number(i)+","+RString::Number(j)+" outside range ("+RString::Number(NbLines)+","+RString::Number(NbCols)+")").ToString());
if(j>i)
{
size_t tmp(i);
i=j;
j=tmp;
}
const RSparseVector* Line;
if(AllLines)
{
if(i<GetNb())
Line=static_cast<const RSparseVector*>(Tab[i]);
else
return(0);
}
else
Line=GetPtr(i);
if(!Line)
return(0);
RValue* Value(Line->GetPtr(j));
if(!Value)
return(0);
return(Value->Value);
}
//------------------------------------------------------------------------------
double& RSparseSymmetricMatrix::operator()(size_t i,size_t j)
{
if((i>=NbLines)||(j>=NbCols))
throw std::range_error(RString("RSparseSymmetricMatrix::operator() : index "+RString::Number(i)+","+RString::Number(j)+" outside range ("+RString::Number(NbLines)+","+RString::Number(NbCols)+")").ToString());
if(j>i)
{
size_t tmp(i);
i=j;
j=tmp;
}
RSparseVector* Line;
if(AllLines)
{
if(i<GetNb())
Line=static_cast<RSparseVector*>(Tab[i]);
else
{
for(size_t add=GetNb();add<=i;add++)
InsertPtrAt(Line=new RSparseVector(NbCols,add),add,true);
}
}
else
{
Line=GetPtr(i);
if(!Line)
InsertPtr(Line=new RSparseVector(NbCols,i));
}
RValue* Value(Line->GetInsertPtr(j));
return(Value->Value);
}
//-----------------------------------------------------------------------------
RSparseSymmetricMatrix::~RSparseSymmetricMatrix(void)
{
}
|
cf0ae8b5ff11bc76714d7c51d9bc41b450c8bfd4
|
e9749d4e271546fbcdd261edd538d99eb3f7fff8
|
/QT/24_11_2015/keyfilter.h
|
143d074138d74505419b1f8e341d3ff52c7ff35e
|
[] |
no_license
|
Xambey/something
|
90e4c4823cf553f9c8acc190313fec991b22b44d
|
0dc0ecd163e1fc662caea16f7363e166b6687adf
|
refs/heads/master
| 2021-01-10T14:40:09.253969
| 2016-05-09T08:57:50
| 2016-05-09T08:57:50
| 52,145,859
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,429
|
h
|
keyfilter.h
|
#ifndef _KeyFilter_h_
#define _KeyFilter_h_
#include <QtGui>
// ======================================================================
class KeyFilter : public QObject {
protected:
bool eventFilter(QObject* pobj, QEvent* pe)
{
if (pe->type() == QEvent::KeyPress) {
if (((QKeyEvent*)pe)->key() == Qt::Key_Z) {
QKeyEvent* pe = new QKeyEvent(QEvent::KeyPress,
Qt::Key_Escape,
Qt::NoModifier,
"П"
);
QApplication::sendEvent(pobj, pe);
return true;
}
if (((QKeyEvent*)pe)->key() == Qt::Key_G) {
QKeyEvent* pe = new QKeyEvent(QEvent::KeyPress,
Qt::Key_Escape,
Qt::NoModifier,
"И"
);
QApplication::sendEvent(pobj, pe);
return true;
}
if (((QKeyEvent*)pe)->key() == Qt::Key_M) {
QKeyEvent* pe = new QKeyEvent(QEvent::KeyPress,
Qt::Key_Escape,
Qt::NoModifier,
"Н"
);
QApplication::sendEvent(pobj, pe);
return true;
}
}
else
return false;
}
public:
KeyFilter(QObject* pobj = 0)
: QObject(pobj)
{
}
};
#endif //_KeyFilter_h_
|
35349e532d0d573c292b803d9b1f68a20cba72c0
|
799a21e89a17fffee2508d40072d68e065c903e4
|
/vm2519364/Assignment 6/Savitch_8thEd_Ch6_Prb6/main.cpp
|
969c357b404d75931ae0857e4552cd52319fcc14
|
[] |
no_license
|
Hillash/CSC5_Spring_2014_42450
|
5b8204b124338587a06210cf4cf05163463ac557
|
7a513d1a2f355da9a62cf86bf7ea5120699004fa
|
refs/heads/master
| 2020-12-28T23:04:32.682727
| 2014-10-01T06:19:38
| 2014-10-01T06:19:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 962
|
cpp
|
main.cpp
|
/*
* File: main.cpp
* Author: Victor Medel
* Created on May 18, 2014, 5:55 PM
* Edit file (Replace double spaces with single spaces)
*/
//System Libraries
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
//Global Constants
//Function Prototypes
void rmvBlnk(ifstream& , ofstream&);
//Execution Starts Here
int main(int argc, char** argv) {
//Declare Variables
ifstream infile;
ofstream outfile;
infile.open("input.dat");
if(infile.fail()){
cout<<"Input file failed to open.\n";
exit(1);
}
outfile.open("output.dat");
if(outfile.fail()){
cout<<"Output file failed to open.\n";
exit(1);
}
rmvBlnk(infile, outfile);
infile.close();
outfile.close();
//Exit Stage Right
return 0;
}
void rmvBlnk(ifstream& infile, ofstream& outfile){
string next;
while (infile>>next){
outfile<<next<<" ";
}
}
|
5051437a1a000f4af3d22be3db4158b9ab9241d4
|
62d6e09be253895ef4f574265e4b86a3fe3936d3
|
/Getopt/Getopts.cpp
|
cdd0c8c5d552f1635ed1135f6a7cb314d64f3960
|
[] |
no_license
|
JackWyj/Getopts
|
d8fa752680467dcf053c8af827f2ec48cd375df5
|
02e7b30a0d593cf127afdfd5a152aa0210496868
|
refs/heads/master
| 2016-09-08T02:03:18.458048
| 2015-06-23T13:34:13
| 2015-06-23T13:34:13
| 37,046,440
| 3
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 11,876
|
cpp
|
Getopts.cpp
|
#include "stdafx.h"
#include "Getopts.h"
Getopts::Getopts(void)
{
const int num = 1;
const int num_long = 6;
parse_level = 0;
char ex_char[num] = {':'};
char ex_char_long[num_long] = {'i', 'd', 'f', 's', '=', ';'};
/*tmpch = '#';*/
pre_chtype = NONE;
for(int i = 0; i < num; i++){
set_ex_char_short.insert(ex_char[i]);
}
for(int i = 0; i < num_long ; i++){
set_ex_char_long.insert(ex_char_long[i]);
}
show_error = true;
is_error = false;
}
Getopts::~Getopts(void)
{
}
std::string Getopts::getbuf(){
return inbuf;
}
void Getopts::setbuf(const std::string& buf){
inbuf = buf;
}
ch_type Getopts::is_char_legal(char c){
//如果是数字或者字母
if(isalpha(c) || isdigit(c)){
if(set_short_used.find(c) == set_short_used.end() ){
set_short_used.insert(c);
return CHAR;
}else
return NONE;
}
//如果是其他字符,如 “:”
if(set_ex_char_short.find(c) != set_ex_char_short.end()){
return EX;
}else
return NONE;
}
ch_type Getopts::is_char_legal_long(char c){
if(isalpha(c) || isdigit(c)){
return CHAR;
}
else if(c == ';')
return SEQ;
else if(c == '=')
return EQ;
else
return NONE;
}
bool Getopts::set_short_param(std::string str, bool store, ...){
if(str.size() == 0) return error_handle();
std::vector<char> v_keys;
parse_level = 1;
char c, tmpch = '#';
int len = str.size();
for(int i = 0; i < len; i++){
c = str[i];
ch_type chtype;
chtype = is_char_legal(c);
if(NONE == chtype){
std::string s = "未能识别的字符<" + string(&c, 1) + ">\n";
error_msg(s.c_str());
return error_handle();
}
if(chtype == EX){
if(pre_chtype != CHAR){
std::string s = "未能识别的字符<" + string(&c, 1) + ">\n";
error_msg(s.c_str());
return error_handle();
}
if(pre_chtype == CHAR){
map_short_func[tmpch] = ShortFunction(tmpch, true);
v_keys.push_back(tmpch);
}
}else if(chtype == CHAR){
if(pre_chtype == CHAR){
map_short_func[tmpch] = ShortFunction(tmpch, false);
v_keys.push_back(tmpch);
}
}
tmpch = c;
pre_chtype = chtype;
}
if(pre_chtype == CHAR){
map_short_func[tmpch] = ShortFunction(tmpch, false);
v_keys.push_back(tmpch);
}
return true;
}
bool Getopts::set_long_param(std::string str, bool store, ...){
if(str.size() == 0) return error_handle();
if(store)
va_start(vargs, store), vstore_long = true;
parse_level = 2;
char c, pre_ch = '#';
std::string key = "";
int len = str.size();
ch_type pre_chtype = NONE;
bool begin = false;
std::string carryty;
for(int i = 0; i < len; i++){
c = str[i];
ch_type chtype;
chtype = is_char_legal_long(c);
if(NONE == chtype){
std::string errmsg = "未能识别的字符<" + string(&c, 1) + ">\n";
error_msg(errmsg.c_str());
return error_handle();
}
if(SEQ == chtype){
if(pre_chtype != CHAR){
error_msg( "分号之前的字符不是字母类型的");
return error_handle();
}
if(! key.empty()){
if(begin){
param_type paramty = long_carry_type(carryty);
if(paramty == NO) {
error_msg( "参数类型错误\n");
vec_keys.clear();
return error_handle();
}else{
if(map_long_func.find(key) != map_long_func.end()){
std::string s = "参数 <" + key + "> 重复出现\n";
error_msg(s.c_str());
vec_keys.clear();
return error_handle();
}
else
map_long_func[key] = LongFunction(key, true, paramty);
}
}else {
map_long_func[key] = LongFunction(key, false);
}
vec_keys.push_back(key);
}
carryty = "";
key = "";
begin = false;
}else if(EQ == chtype){
if(pre_chtype != CHAR){
error_msg( "等号前面不是字母\n");
return error_handle();
}
}else if(CHAR == chtype){
if(begin){
carryty += c;
}else{
if(pre_chtype == EQ){
begin = true;
carryty += c;
}else
key += c;
}
}
pre_chtype = chtype;
pre_ch = c;
}
if(vstore_long){
size_t len = vec_keys.size();
std::string key;
try{
for(size_t i = 0; i < len; i++){
key = vec_keys[i];
if(map_long_func[key].haveParam()){
param_type pt = map_long_func[key].carry_param_type();
switch(pt){
case INT: {
int *ii = va_arg(vargs, int*);
v_ptr.push_back(ii); break;}
case DOUBLE: {
double *d = va_arg(vargs, double*);
v_ptr.push_back(d); break;}
case FLOAT:{
float *f = va_arg(vargs, float*);
v_ptr.push_back(f); break;}
case STRING: {
std::string *s = va_arg(vargs, std::string*);
v_ptr.push_back(s); break;}
case VINT: {
std::vector<int> *vi = va_arg(vargs, std::vector<int>*);
v_ptr.push_back(vi); break;}
case VFLOAT: {
std::vector<float> *vf = va_arg(vargs, std::vector<float>*);
v_ptr.push_back(vf); break;}
case VDOUBLE: {
std::vector<double> *vd = va_arg(vargs, std::vector<double>*);
v_ptr.push_back(vd); break;}
case VSTRING:{
std::vector<std::string> *vs = va_arg(vargs, std::vector<std::string>*);
v_ptr.push_back(vs); break;}
default: error_msg("未能识别的类型\n"); return error_handle();
}
}else{
bool* b = va_arg(vargs, bool*);
v_ptr.push_back(b);
}
}
}catch(exception &e){
std::string err = "错误: " + string(e.what()) ;
error_msg(err.c_str());
return error_handle();
}
}
return true;
}
in_ch Getopts::getch(){
static int i = -1;
i++;
if(i == inbuf.size())
return in_ch(true);
else
return in_ch(inbuf[i], false);
}
bool Getopts::parse_short(){
in_ch inc = getch();
static char pre_ch = '#', cur_ch, pre_key ;
static bool begin;
static std::string label;
if(!inc.end )
cur_ch = inc.c;
else {
if(begin && label.size() != 0)
map_ch_carry[pre_key].push_back(label);
return true;
}
if(pre_ch == '-' && ( isalpha(cur_ch) || isdigit(cur_ch) )){
if(set_short_used.find(cur_ch) != set_short_used.end() ){
pre_key = cur_ch;
if(true == map_short_func[cur_ch].haveParam()){
begin = true;
std::vector<std::string> vec;
if(map_ch_carry.find(cur_ch) == map_ch_carry.end())
map_ch_carry[cur_ch] = vec;
}else{
begin = false;
do {
set_short_param_on.insert(cur_ch);
inc = getch();
if(inc.end == true){
return error_handle();
}
cur_ch = inc.c;
}while(set_short_used.find(cur_ch) != set_short_used.end() &&
!map_short_func[cur_ch].haveParam());
}
}
}
else if(begin && cur_ch == '\"'){
label = "";
do {
inc = getch();
if(inc.end == true){
error_msg("缺少右双引号\n");
return error_handle();
}
if(inc.c != '\"')
label += inc.c;
}while(inc.c != '\"');
}else if(begin){
in_ch inch;
bool space = false;
while(cur_ch == ' '){
space = true;
inch = getch();
if(inch.end) return error_handle();
cur_ch = inch.c;
}
if(space && label.size() != 0){
map_ch_carry[pre_key].push_back(label);
label = "";
begin = false;
}else
label += cur_ch;
}
pre_ch = cur_ch;
if(parse_short())
return true;
else
return error_handle();
}
void Getopts::parse_param(const std::string & in){
if(is_error) return;
inbuf = in;
if(parse_level == 1)
parse_short();
else if(parse_level == 2){
parse_long();
store_carry_param_long();
}
help();
}
void Getopts::help(){
}
inline param_type Getopts::long_carry_type(const std::string & c){
if(c == "i") return INT;
if(c == "f") return FLOAT;
if(c == "d") return DOUBLE;
if(c == "s") return STRING;
if(c == "vi") return VINT;
if(c == "vf") return VFLOAT;
if(c == "vd") return VDOUBLE;
if(c == "vs") return VSTRING;
else return NO;
}
bool Getopts::parse_long(){
in_ch inc = getch();
static char pre_ch = '#', cur_ch;
static std::string pre_key ;
static bool begin;
static std::string label, mk;
if(!inc.end){
cur_ch = inc.c;
}else{
if(begin && label.size() != 0)
map_long_carry[pre_key].push_back(label);
return true;
}
if(pre_ch == '-'){
mk = "";
while(cur_ch != '=' && cur_ch != ' '
&& (isalpha(cur_ch) || isdigit(cur_ch))){
mk += cur_ch;
inc = getch();
if(inc.end) return error_handle();
cur_ch = inc.c;
};
key_chosen kc = pick_key(mk);
if(!kc.error){
pre_key = kc.key;
begin = false;
label = "";
if(map_long_func[kc.key].haveParam()){
begin = true;
if(map_long_carry.find(kc.key) == map_long_carry.end()){
std::vector<std::string> vec;
map_long_carry[kc.key] = vec;
}
}else
set_long_param_on.insert(kc.key);
}
}else if(begin && cur_ch == '\"'){
label = "";
do {
inc = getch();
if(inc.end == true){
cout << "缺少右双引号\n";
return error_handle();
}
if(inc.c != '\"')
label += inc.c;
}while(inc.c != '\"');
}else if(begin){
in_ch inch;
bool space = false;
while(cur_ch == ' '){
space = true;
inch = getch();
if(inch.end) return error_handle();
cur_ch = inch.c;
}
if(space && label.size() != 0){
map_long_carry[pre_key].push_back(label);
label = "";
begin = false;
}else
label += cur_ch;
}
pre_ch = cur_ch;
return parse_long();
}
key_chosen Getopts::pick_key(const std::string sk){
if(sk.empty()){
return key_chosen(true);
}
std::map<std::string, LongFunction>::iterator iter;
bool choose = false;
std::string key, ss;
key_chosen kc;
for(iter = map_long_func.begin(); iter != map_long_func.end(); iter++){
key = iter->first;
if(key.size() < sk.size()) continue;
ss = key.substr(0, sk.size());
if(sk == ss){
if(choose) return key_chosen(true);
choose = true, kc.key = key, kc.error = false;
}
}
return kc;
}
void Getopts::store_carry_param_long(){
if(!vstore_long || is_error) return;
std::string key;
try{
for(size_t i = 0; i < vec_keys.size(); i++){
key = vec_keys[i];
if(map_long_func[key].haveParam()){
if(map_long_carry[key].size() < 1){
std::string emsg = "键值<" + key + ">没有携带参数\n";
error_msg(emsg.c_str());
return;
}
param_type pt = map_long_func[key].carry_param_type();
switch(pt){
case INT: {
int* ii = (int*)v_ptr[i];
*ii= atoi(map_long_carry[key].front().c_str());
break;
};
case DOUBLE:; {
double* d = (double*)v_ptr[i];;
*d = atof(map_long_carry[key].front().c_str());
break;
}
case FLOAT:;{
float* f = (float*)v_ptr[i];
std::string str = map_long_carry[key].front();
double d = atof(str.c_str());
float ff = (float)d;
*f = ff;
break;
}
case STRING:;{
std::string *s = (std::string*)v_ptr[i];
*s = map_long_carry[key].front();
break;
}
case VINT:;{
std::vector<int> *vi = (std::vector<int>*)v_ptr[i];
int len = map_long_carry[key].size();
for(int i = 0; i < len; i++){
vi->push_back(atoi(map_long_carry[key][i].c_str()));
}
break;
}
case VDOUBLE:;{
std::vector<double> *vi = (std::vector<double>*)v_ptr[i];
int len = map_long_carry[key].size();
for(int i = 0; i < len; i++){
vi->push_back(atof(map_long_carry[key][i].c_str()));
}
break;
}
case VSTRING:;{
std::vector<std::string> *vs = (std::vector<std::string>*)v_ptr[i];
*vs = map_long_carry[key];
break;
}
default: error_msg("未能识别的类型\n"); break;
};
}else{
bool *b =(bool*) v_ptr[i];
*b = true;
}
}
}catch(exception &e){
std::string err = "错误:" + string(e.what());
error_msg(err.c_str()); return;
}
va_end(vargs);
}
void Getopts::error_msg(const char* s){
if(!show_error) return;
printf("error: %s", s);
}
void Getopts::set_error_mode(bool b){
show_error = b;
}
bool Getopts::error_handle(){
is_error = true;
return false;
}
void Getopts::set_error_status(bool b){
is_error = true;
}
|
2b163b053fdb5126f108c0bee88099ad8bca1fe7
|
b3808f8de44705cf2d0aff6fe97138328f5dfc47
|
/2019/Thang10_2019/31_10_2019/assign.cpp
|
21d2e796c382a01b17fbfec6a3b12d4a7b8e68bf
|
[] |
no_license
|
nhathuyle2002/HIGH-SCHOOL-CODE
|
bd96a4490aa777c2049fe9c21e4be8ee8171619f
|
7ab4539b719cb684c2d0933ec5833ecacf6e4fcb
|
refs/heads/master
| 2023-08-25T10:15:53.950368
| 2021-10-24T10:51:21
| 2021-10-24T10:51:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,412
|
cpp
|
assign.cpp
|
#include <bits/stdc++.h>
#define forn(i,a,b) for(int i=(a); i<=(b); ++i)
#define ford(i,a,b) for(int i=(a); i>=(b); --i)
#define repn(i,a,b) for(int i=(a); i<(b); ++i)
using namespace std;
//////
struct edge
{
int x, y, w;
};
const
int maxn=1e5+100, oo=1e9;
int n, m, res;
vector<edge> e;
vector<int> pos_e[maxn];
int matchx[maxn], matchy[maxn], fx[maxn], fy[maxn];
int top, source[maxn];
bool d[maxn];
//////
void fastscan(int &number)
{
number=0;
char c=getchar();
for(; c>47 && c<58; c=getchar())
number=number*10+c-48;
}
void enter()
{
fastscan(n); fastscan(m);
forn(i, 1, m)
{
int u, v, c;
fastscan(u); fastscan(v); fastscan(c);
pos_e[u].push_back(e.size());
e.push_back({u, v, c});
}
forn(u, 1, n) fx[u]=oo, fy[u]=oo;
for(edge p : e) fx[p.x]=min(fx[p.x], p.w);
for(edge p : e) fy[p.y]=min(fy[p.y], p.w-fx[p.x]);
}
//////
int getw(edge &p) { return p.w-fx[p.x]-fy[p.y]; }
bool FindPath(int u)
{
int v;
for(int pos : pos_e[u])
if (d[v=e[pos].y] && getw(e[pos])==0)
{
d[v]=false;
if (matchy[v]==0 || FindPath(matchy[v]))
{
matchx[u]=v;
matchy[v]=u;
return true;
}
}
return false;
}
void SubX_AddY()
{
int delta=oo;
repn(i, 0, e.size())
if ((matchx[e[i].x]==0 || !d[matchx[e[i].x]]) && d[e[i].y]) delta=min(delta, getw(e[i]));
forn(u, 1, n) if (matchx[u]==0 || !d[matchx[u]]) fx[u]+=delta;
forn(v, 1, n) if (!d[v]) fy[v]-=delta;
}
void process()
{
for(edge p : e)
if (getw(p)==0 && matchx[p.x]==0 && matchy[p.y]==0)
{
matchx[p.x]=p.y;
matchy[p.y]=p.x;
}
top=0;
forn(u, 1, n)
if (matchx[u]==0) source[++top]=u;
do
{
int oldtop=top;
forn(u, 1, n) d[u]=true;
ford(i, oldtop, 1)
if (FindPath(source[i])) swap(source[i], source[top]), --top;
if (oldtop==top) SubX_AddY();
}
while (top>0);
res=0;
forn(u, 1, n)
for(int pos : pos_e[u])
if (getw(e[pos])==0 && e[pos].y==matchx[u]) {res+=e[pos].w; break;};
cout << res << '\n';
forn(v, 1, n) cout << matchy[v] << ' ';
}
//////
int main()
{
freopen("assign.inp", "r", stdin);
freopen("assign.out", "w", stdout);
enter();
process();
}
|
c48e910aa81a3085434684e7736e5288c25cc9e9
|
8420523466c9f6ab0edf6ff556c09c5a49edc1cb
|
/src/common/net/cmdhandler.cpp
|
e44d1c9af5aca6d7a1d095b256c7806f3bcd1e0f
|
[] |
no_license
|
huigou/planeshift
|
fb31a43ff1fad0e1b69d9683d0e1e8a0945d8fd3
|
78afce50bccf755ec4ded0c6bc91ae3c80bc5eba
|
refs/heads/master
| 2020-05-25T15:47:26.462741
| 2016-06-15T20:34:37
| 2016-06-15T20:34:37
| 64,410,081
| 2
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,294
|
cpp
|
cmdhandler.cpp
|
/*
* cmdhandler.cpp - Author: Keith Fulton
*
* Copyright (C) 2001 Atomic Blue (info@planeshift.it, http://www.atomicblue.org)
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation (version 2 of the License)
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include <psconfig.h>
#include <csutil/util.h>
#include "util/pserror.h"
#include "util/psstring.h"
#include "net/clientmsghandler.h"
#include "cmdhandler.h"
CmdHandler::CmdHandler(iObjectRegistry *newobjreg)
{
objreg = newobjreg;
}
CmdHandler::~CmdHandler()
{
}
bool CmdHandler::Subscribe(const char *cmd, iCmdSubscriber *subscriber)
{
for ( size_t x = 0; x < subscribers.GetSize(); x++ )
{
if (subscribers[x]->cmd == cmd && subscribers[x]->subscriber == subscriber)
{
// Already subscribed => Do nothing
return true; // No error so return true.
}
}
// Create a new subscribtion
CmdSubscription* p = new CmdSubscription;
p->subscriber = subscriber;
p->cmd = cmd;
subscribers.Push(p);
return true;
}
bool CmdHandler::Unsubscribe(const char *cmd, iCmdSubscriber *subscriber)
{
for ( size_t x = 0; x < subscribers.GetSize(); x++ )
{
if (subscribers[x]->cmd == cmd && subscribers[x]->subscriber == subscriber)
{
subscribers.DeleteIndex(x);
return true;
}
}
return false;
}
bool CmdHandler::UnsubscribeAll(iCmdSubscriber *subscriber)
{
bool unsubscribed_commands(false);
for (size_t x = subscribers.GetSize() - 1; x != (size_t)-1; x--)
{
if (subscribers[x]->subscriber == subscriber)
{
subscribers.DeleteIndex(x);
unsubscribed_commands = true;
}
}
return unsubscribed_commands;
}
const char *CmdHandler::Publish(const csString & cmd)
{
if (subscribers.GetSize() == 0)
return "No command handlers installed!";
csString fullLine = cmd;
csString command;
// Get first word of line if there is a space, or get entire line if one word
{
size_t spacePosition = cmd.FindFirst(' ');
if(spacePosition != SIZET_NOT_FOUND)
{
command = fullLine.Slice(0, spacePosition);
}
else
{
command = fullLine;
}
}
// Ensure the command is lower case
{
csString commandLower = command;
if(commandLower.Downcase() != command)
{
// Splice the rest of the command in after the downcase command
// so that we don't replace the command in the text
// e.g. /Say /Say is preserved as /say /Say
fullLine = commandLower + fullLine.Slice(commandLower.Length());
command = commandLower;
}
}
bool found = false;
const char *err = NULL;
for( size_t x = 0; x < subscribers.GetSize(); x++ )
{
if(subscribers[x]->cmd == command)
{
found = true;
if (command == "/logout")
{
return subscribers[x]->subscriber->HandleCommand(fullLine); // the return value is BS, but it does stop the execution. :)
}
const char* ret = subscribers[x]->subscriber->HandleCommand(fullLine);
if(ret)
err = ret;
}
}
// Only last error returned will be shown.
// This should be ok since most commands will only have one subscriber.
return found ? err : "Sorry. Unknown command (use /show help).";
}
void CmdHandler::Execute(const char *script, bool breakSemiColon)
{
if (!script || !strlen(script) )
return;
/**
* script is assumed to be null terminated
* with each command on a new line OR separated by semicolon.
*/
psString copy(script),linefeed("\n"),semicolon(";"),line;
size_t start=0;
size_t end=0;
while ( end < copy.Length() )
{
end = copy.FindSubString(linefeed,(int) start);
if (end == SIZET_NOT_FOUND)
{
if ( breakSemiColon )
{
end = copy.FindSubString(semicolon,(int)start);
if (end == SIZET_NOT_FOUND)
end = copy.Length();
}
else
{
end = copy.Length();
}
}
copy.GetSubString(line,start,end);
line.LTrim();
Publish(line); // This executes each line
start = end+1;
}
}
void CmdHandler::GetSubscribedCommands(csRedBlackTree<psString>& tree)
{
//we empty the list first
tree.DeleteAll();
for ( size_t x = 0; x < subscribers.GetSize(); x++ )
{
tree.Insert(subscribers[x]->cmd);
}
}
|
9c77d0667c3b3d41f67784f5f65be66a088f27d4
|
a0893ceadbf3257263e6f6b4ee8091111e97c64b
|
/LidarPlugin/IO/GPS-IMU/ArduPilotDataFlashLogReader/vtkArduPilotDataFlashLogReader.h
|
63832e7ff0f8a378e59938bda2f22e5380705962
|
[
"Apache-2.0"
] |
permissive
|
QPanScience/GIS_PCL_VIS-LidarView
|
7e9f04e9da6b13ac636061e3efccfd4686b627e5
|
9b9b2976e9ac5dcd891a604dabbb79bd6fc6a57a
|
refs/heads/master
| 2022-04-07T11:08:09.029362
| 2020-02-14T17:07:32
| 2020-02-14T17:07:32
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,627
|
h
|
vtkArduPilotDataFlashLogReader.h
|
//=========================================================================
//
// Copyright 2019 Kitware, 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 VTKARDUPILOTDATAFLASHLOGREADER_H
#define VTKARDUPILOTDATAFLASHLOGREADER_H
#include <vtkPolyDataAlgorithm.h>
#include <vtkTemporalTransforms.h>
// official documentation: http://ardupilot.org/copter/docs/common-downloading-and-analyzing-data-logs-in-mission-planner.html
// Log structure: https://github.com/ArduPilot/ardupilot/blob/master/libraries/DataFlash/LogStructure.h#L1166
// GPS/RTK Data: http://ardupilot.org/copter/docs/common-gps-blending.html
/**
* @brief Parse some DataFlash messages produced by ArduPilot.
* Currently we only parse parts of the GPS message.
*/
class VTK_EXPORT vtkArduPilotDataFlashLogReader : public vtkPolyDataAlgorithm
{
public:
static vtkArduPilotDataFlashLogReader *New();
vtkTypeMacro(vtkArduPilotDataFlashLogReader, vtkPolyDataAlgorithm);
vtkGetStringMacro(FileName)
vtkSetStringMacro(FileName)
vtkGetMacro(TimeOffset, double)
vtkSetMacro(TimeOffset, double)
vtkGetMacro(SignedUTMZone, int)
vtkGetVector3Macro(Offset, double)
protected:
vtkArduPilotDataFlashLogReader();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override;
vtkSmartPointer<vtkTemporalTransforms> GPSTrajectory;
char* FileName = nullptr;
double TimeOffset = 0.0; // in seconds, used as input to allow timeshifting
int SignedUTMZone; // UTM zone used. +N means "UTM zone N North" (South if -N)
// Offset is the (easting, northing, altitude) that is used as an offset for
// the whole trajectory, in order to work with reasonably big coordinates.
// Add the Offset to all the points of the trajectory to get UTM coordinates.
double Offset[3] = { 0.0, 0.0, 0.0 }; // in meters
private:
vtkArduPilotDataFlashLogReader(const vtkArduPilotDataFlashLogReader&) = delete;
void operator = (const vtkArduPilotDataFlashLogReader&) = delete;
};
#endif // VTKARDUPILOTDATAFLASHLOGREADER_H
|
d5ccb73082d0716c920dd75a507dc25acb792b5d
|
1cdca18fe22dcc6508dfd07deb64de4abdec3f0a
|
/src/model/pair/date.h
|
64558e2b4b3fe26f45a994880a90e9cf3d50bb91
|
[] |
no_license
|
Nikololoshka/StankinScheduleEditor2
|
1bdd405ec3deaabc29257e3932c569d8dc7cf23d
|
a9f582c6e5f1592617e20bb879e0de099d69a698
|
refs/heads/master
| 2023-08-18T15:24:19.477971
| 2021-09-28T17:01:54
| 2021-09-28T17:01:54
| 280,695,069
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,680
|
h
|
date.h
|
#ifndef DATE_H
#define DATE_H
#include "stdafx.h"
#include "dateItem.h"
/**
* @brief Дата пары.
*/
class Date {
public:
Date();
Date(const Date& date);
Date(Date&& date);
Date& operator=(const Date& date);
const std::unique_ptr<DateItem>& operator[](int index) const;
bool operator==(const Date& date) const;
/**
* @brief Возвращает json объекты даты пары.
*/
QJsonArray toJson() const;
/**
* @brief Возвращает копию даты из дат пары.
* @param index индекс даты.
*/
std::unique_ptr<DateItem> copy(int index) const;
/**
* @brief Добавляет новую дату в даты пары.
* @param item новая дата.
* @throw InvalidAddDateException если дата пересекается с текущими датами пары.
* @throw std::invalid_argument если день недели даты не совпадает с датами пары.
*/
void addDate(const std::unique_ptr<DateItem>& item);
/**
* @brief Удаляет дату из дат пары.
* @param item удаляемая дата.
*/
void removeDate(const std::unique_ptr<DateItem>& item);
/**
* @brief Возвращает количество элементов дат в дате пары.
*/
int size() const;
/**
* @brief Определяет, есть или нет дат в дате пары.
* Возвращает true если нет, иначе false.
*/
bool isEmpty() const;
/**
* @brief Заменяет одну дату на другую в датах пары.
* @param oldDate заменяемая дата.
* @param newDate новоя дата.
* @throws исключения эквивалентны Date::addDate
*/
void changeDate(const std::unique_ptr<DateItem>& oldDate,
const std::unique_ptr<DateItem>& newDate);
/**
* @brief Проверяет, можно ли заменить одну дату на другую.
* @param oldDate заменяемая дата (допускается nullptr).
* @param newDate новая дата.
* @throws исключения эквивалентны Date::addDate
*/
void possibleChange(const std::unique_ptr<DateItem>& oldDate,
const std::unique_ptr<DateItem>& newDate) const;
/**
* @brief Проверяет, пересекается ли дата с датами пары.
*/
bool contains(const std::unique_ptr<DateItem>& item) const;
/**
* @brief Проверяет, пересекаются ли даты пары между собой.
*/
bool contains(const Date& date) const;
/**
* @brief Проверяет находиться ли дата в заданном промежутке дат.
* @param startDate начало промежутка.
* @param endDate конец промежутка.
*/
bool intersect(const QDate &startDate, const QDate &endDate) const;
/**
* @brief Определяет, идет ли по порядку одни даты раньще другой.
*/
bool before(const Date& date) const;
/**
* @brief Возвращает день недели даты пары.
*/
DayOfWeek dayOfWeek() const;
/**
* @brief Возвращает строковое представление даты пары.
*/
QString toString() const;
private:
//! вектор дат
std::vector<std::unique_ptr<DateItem>> dates_;
};
#endif // DATE_H
|
ef665a33b122db90238ab6d29d0909debb64e69d
|
035c5da8a2cba6e6a033deb0fdc0bdda4b4d2329
|
/Arduino/calc_rota.ino
|
551971a64b72ed0da93d7764e17bbd0a751156ae
|
[] |
no_license
|
davidmorosini/SafeRoute
|
b4c9a93a4baeed861541113f3f23262257b21256
|
2ba2fafba6dd0fdd8d127825127a0f047b332d23
|
refs/heads/master
| 2020-06-18T22:24:44.715862
| 2019-07-11T22:54:02
| 2019-07-11T22:54:02
| 196,473,539
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,527
|
ino
|
calc_rota.ino
|
/**
Autores: David Morosini de Assumpção, Amanda Oliosi
Trabalho de Interfaces e Peridéricos 2018/2
*/
#define MEMBER 1
#define NONMEMBER 0
#define MAXNODES 7
//vamos considerar 1 led, como 1 par de leds
#define NUM_LEDS 5
#define NUM_SENSORES 5
#define NUM_SENSORES_REAIS 1
#define ON 1.0
#define OFF 0.0
typedef struct graph{
int adj;
float peso;
}graph;
typedef struct no{
int valor;
struct no * prox, * ant;
}no;
typedef struct tower{
int qtd;
no * start, * end;
}tower;
typedef struct PAR_LED{
//representa cada par de leds, com suas portas e valores
int porta_r, porta_g;
float valor_r, valor_g;
}led;
/*
ESQUEMÁTICO DA DISPOSIÇÃO DOS SENSORES E A COMUNICAÇÃO ENTRE OS CAMINHOS
Por exemplo, o sensor 1 forma um caminho com 0, 4, 5
1-----0-----2
| | |
| | |
|-----5-----|
| | |
| | |
4-----6-----3
NOTE QUE O SENSOR 0 e 6, NÃO CONSTAN NO PROJETO FÍSICO, ELES SÃO VIRTUAIS
E EXPRESSA O INÍCIO E FINAL DA ROTA (SAÍDA), RESPECTIVAMENTE. NÃO SE PREOCUPE COM ELE
EM RELAÇÃO A ELETRÔNICA.
*/
//Matriz de adjacencia dos leds (REPRESENTA ESSES CAMINHOS DESCRITOS ACIMA)
int matriz_adj[][7] = {{0, 1, 1, 0, 0, 0, 0},
{1, 0, 0, 0, 1, 1, 0},
{1, 0, 0, 1, 0, 1, 0},
{0, 0, 1, 0, 0, 1, 1},
{0, 1, 0, 0, 0, 1, 1},
{0, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 1, 1, 0, 0}};
//BUFFER PARA ARMAZENAR OS VALORES DOS SENSORES
float buffer_sensores[7] = {0.0,0.0,0.0,0.0,0.0,0.0,0.0};
led leds[NUM_LEDS];
//só temos um sensor de fato..
//note que estes dois itens (start_route e end_route) são os sensores virtuais mencionados,
//a estratégia para escolher estes, pode ser alterada de acordo com as características do layout
int end_route = 0, start_route = 6;
float limiar_fumaca = 1.0;
int limiar_sensores = 1;
// Definicoes dos pinos ligados ao sensor
int pin_d0 = 13;
int pin_a0 = A0;
int nivel_sensor = 80;
//MÉTODOS INTERNOS
/*Método utilizado para calcular a rota, inicio e fim da rota são as entradas (9 e 0)*/
tower * calcula_rota(int start, int end);
tower * init_tower();
void add_node(tower * t, int valor);
//MÉTODOS DE AÇÃO NO ARDUINO
//Marca todos os leds como vermelho e após, marca os verdes de acordo com o caminho
void reseta_leds(tower * t);
//Busca as informações do sensor (no nosso caso, pega uma informação e "cria as outras 7")
void coleta_dados_sensor();
//Apaga todos os leds
void apaga_leds();
//Aualiza leds
void atualiza_leds();
/*#################################################################################*/
void setup() {
Serial.begin(9600);
// Define os pinos de leitura do sensor como entrada
pinMode(pin_d0, INPUT);
pinMode(pin_a0, INPUT);
leds[0].porta_r = 5;
leds[0].porta_g = 4;
leds[1].porta_r = 11;
leds[1].porta_g = 10;
leds[2].porta_r = 9;
leds[2].porta_g = 8;
leds[3].porta_r = 3;
leds[3].porta_g = 2;
leds[4].porta_r = 7;
leds[4].porta_g = 6;
int i;
for(i = 0; i < NUM_LEDS; i++){
pinMode(led[i].porta_g, OUTPUT);
pinMode(led[i].porta_r, OUTPUT);
}
}
void loop() {
//Coletar dados dos sensores
coleta_dados_sensor();
//verificar se existe uma quantidade alarmante de sensores com fumaça
int i, qtd_sensores = 0;
for(i = 1; i <= NUM_SENSORES; i++){
if(buffer_sensores[i] >= limiar_fumaca){
qtd_sensores++;
}
}
//caso tenhamos uma quantidade expressiva de sensores
//detectando fumaça, vamos calcular a rota
if(qtd_sensores >= limiar_sensores){
int start = 6;
//seleciona o menor dos 3 sensores de baixo
tower * t = calcula_rota(start, end_route);
//reseta_leds vai setar como HIGH somente os leds verdes que formam o caminho e os demais vermelhos
reseta_leds(t);
free(t);
}else{
//apaga todos os leds
apaga_leds();
}
//da o comando para o arduino atualizar os LEDs de fato
atualiza_leds();
//delay da aplicação
delay(2000);
}
/*################## ARDUINO #####################*/
void atualiza_leds(){
int i;
for(i = 0; i < 5; i++){
digitalWrite(leds[i].porta_r, leds[i].valor_r);
digitalWrite(leds[i].porta_g, leds[i].valor_g);
}
}
void apaga_leds(){
int i;
for(i = 0; i < NUM_LEDS; i++){
leds[i].valor_r = LOW;
leds[i].valor_g = LOW;
}
}
void reseta_leds(tower * t){
int i;
for(i = 0; i < NUM_LEDS; i++){
(leds[i]).valor_r = HIGH;
(leds[i]).valor_g = LOW;
}
//O último elemento da torre é o led virtual 9 e o primeiro é o 0,
//Logo temos que percorrer entre o segundo elemento e o penúltimo
//a posição do led, é sempre o da torre menos um
no * n = (t -> start) -> prox;
for(i = 1; i < (t -> qtd); i++){
int aux = (n -> valor) - 1;
leds[aux].valor_g = HIGH;
leds[aux].valor_r = LOW;
n = n -> prox;
}
}
void coleta_dados_sensor(){
//[AQUI] Coletar os dados do sensor
//float aux = (float(analogRead(porta_sensor))*5/(1023))/0.01;
int valor_digital = digitalRead(pin_d0);
// Le os dados do pino analogico A0 do sensor
int valor_analogico = analogRead(pin_a0);
// Mostra os dados no serial monitor
float aux = (float)valor_analogico;
buffer_sensores[1] = aux;
//[AQUI] Criar dados virtuais para os outros 7 sensores
int i;
for(i = 2; i <= NUM_SENSORES; i++){
float r = random(aux*0.1, aux * 1.9);
buffer_sensores[i] = r;
}
//[AQUI] Salvar os dados no buffer_sensores,
//lembrando que a posição 0 deste buffer
//é dedicada ao "leds/sensor virtuais"
//logo não deve ser modificada
//logo, apenas colocar os valores entre a posição 2 e 8 do vetor, visto que a 1 é a do sensor real
}
/*################## ARDUINO #####################*/
tower * init_tower(){
tower * t = (tower *)malloc(sizeof(tower));
t -> qtd = 0;
t -> start = NULL;
t -> end = NULL;
return t;
}
void add_node(tower * t, int valor){
if(t != NULL){
no * n = (no *)malloc(sizeof(no));
n -> valor = valor;
n -> prox = NULL;
n -> ant = NULL;
if(t -> qtd == 0){
t -> start = n;
}else{
n -> ant = t -> end;
(t -> end) -> prox = n;
}
t -> end = n;
(t -> qtd)++;
}
}
tower * calcula_rota(int start, int end){
tower * t = init_tower();
graph GRAPH[MAXNODES][MAXNODES];
float pesos[MAXNODES][MAXNODES];
int i, j, k, current;
float dist[MAXNODES];
int perm[MAXNODES], path[MAXNODES];
float smalldist, newdist, dc;
//monta matriz de pesos
for(i = 0; i < MAXNODES; i++){
for(j = 0; j < MAXNODES; j++){
if(matriz_adj[i][j] == 1){
//a soma dos buffer_sensores medidos pelos sensores é o peso do caminho
pesos[i][j] = buffer_sensores[i] + buffer_sensores[j];
}else{
pesos[i][j] = 0.0;
}
//após inicializada, vamos iniciar o grafo
float peso = INFINITY;
int ad = matriz_adj[i][j];
if(ad == 1){
peso = pesos[i][j];
}
GRAPH[i][j].adj = ad;
GRAPH[i][j].peso = peso;
}
}
for(i = 0; i < MAXNODES; i++){
perm[i] = NONMEMBER;
dist[i] = INFINITY;
}
perm[start] = MEMBER;
dist[start] = 0.0;
//originando a busca
current = start;
k = current;
while(current != end){
smalldist = INFINITY;
dc = dist[current];
for(i = 0; i < MAXNODES; i++){
if(perm[i] == NONMEMBER){
newdist = dc + GRAPH[current][i].peso;
if(newdist < dist[i]){
dist[i] = newdist;
path[i] = current;
}
if(dist[i] < smalldist){
smalldist = dist[i];
k = i;
}
}
}
current = k;
perm[current] = MEMBER;
}
int route[MAXNODES];
int caminho = end;
add_node(t, caminho);
route[0] = end;
int cont = 1;
while(caminho != start){
route[cont] = path[caminho];
cont++;
caminho = path[caminho];
add_node(t, caminho);
}
return t;
}
|
1d257c63b1cef43a6ad369e81062ef0f75996344
|
e477239a7eba11a3a1db92bd30fe0703bbf9e685
|
/linearkalman.cpp
|
a7426e6dde259132742743bb092f286eb43cc518
|
[] |
no_license
|
vinaysubramanyam/Kalman-Filter
|
fbe23c15b32157e37af9d1102970c699828cb9fb
|
85e3ca1bfb8c613b3ae84f0e4905696a1b2b5ca6
|
refs/heads/master
| 2021-04-26T23:20:40.603425
| 2018-03-11T21:03:20
| 2018-03-11T21:03:20
| 123,975,623
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,147
|
cpp
|
linearkalman.cpp
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <iostream>
#include <cstring>
#include <fstream>
#include <string>
#include <cstdint>
#include <sstream>
#include <vector>
#include <iterator>
using namespace std;
inline double closed_interval_rand(double x0, double x1)
{
return x0 + (x1 - x0) * rand() / ((double) RAND_MAX);
}
int main(){
int StateDim=2;
int ObsDim=1;
int N=100;
float Var_PNoise=0.1;
float Mu_PNoise=0;
float Std_PNoise=pow(Var_PNoise,0.5);
float Var_ONoise=2;
float Mu_ONoise=0;
float Std_ONoise=pow(Var_ONoise,0.5);
vector<vector<float>> A;
A.assign(2,vector<float>(2,0));
vector<vector<float>> A1;
vector<vector<float>> A2;
vector<vector<float>> PNoise;
vector<vector<float>> B1;
vector<vector<float>> B2;
vector<vector<float>> ONoise;
vector<vector<float>> X;
vector<vector<float>> C;
vector<vector<float>> y;
X.assign(StateDim,vector<float>(N,0));
C.assign(ObsDim,vector<float>(StateDim,0));
y.assign(ObsDim,vector<float>(N,0));
C[0][0]=1;
A[0][0]=1.9223;
A[0][1]=-0.9604;
A[1][0]=1.0000;
A[1][1]=0;
//X[0][0]=1;
A1.assign(StateDim,vector<float>(N,1));
A2.assign(StateDim,vector<float>(N,1));
PNoise.assign(StateDim,vector<float>(N,0));
B1.assign(ObsDim,vector<float>(N,1));
B2.assign(ObsDim,vector<float>(N,1));
ONoise.assign(ObsDim,vector<float>(N,0));
/* PNoise */
for (int i = 0; i < A1.size(); i++)
{
for (int j = 0; j < A1[i].size(); j++)
{
float r=closed_interval_rand(0,1);
A1[i][j]=r*Std_PNoise;
}
}
for (int i = 0; i < A2.size(); i++)
{
for (int j = 0; j < A2[i].size(); j++)
{
A2[i][j]*=Mu_PNoise;
}
}
for (int i = 0; i < PNoise.size(); i++)
{
for (int j = 0; j < PNoise[i].size(); j++)
{
PNoise[i][j]=A1[i][j]+A2[i][j];
}
}
/* ONoise */
for (int i = 0; i < B1.size(); i++)
{
for (int j = 0; j < B1[i].size(); j++)
{
float r=closed_interval_rand(0,1);
B1[i][j]=r*Std_ONoise;
}
}
for (int i = 0; i < B2.size(); i++)
{
for (int j = 0; j < B2[i].size(); j++)
{
B2[i][j]*=Mu_PNoise;
}
}
for (int i = 0; i < ONoise.size(); i++)
{
for (int j = 0; j < ONoise[i].size(); j++)
{
ONoise[i][j]=B1[i][j]+B2[i][j];
//printf("%6.3f\n",ONoise[i][j]);
}
}
vector<vector<float>> PNoise_transpose(PNoise[0].size(),vector<float>(PNoise.size()));
for (int i=0;i<PNoise.size();i++){
for (int j=0;j<PNoise[0].size();j++){
PNoise_transpose[j][i]=PNoise[i][j];
}
}
// Covariance calculation
vector<vector<float>> PNoise_mul(PNoise_transpose.size(),vector<float>(PNoise_transpose[0].size(),0));
float PNoise_transpose_col1sum=0;
float PNoise_transpose_col2sum=0;
// 100*2 matrix
for (int i=0;i<PNoise_transpose.size();i++){
for (int j=0;j<PNoise_transpose[0].size();j++){
PNoise_transpose_col1sum+=PNoise_transpose[i][0];
PNoise_transpose_col2sum+=PNoise_transpose[i][1];
}
}
PNoise_transpose_col1sum/=N;
PNoise_transpose_col2sum/=N;
//printf("%f\n%f",PNoise_transpose_col1sum,PNoise_transpose_col2sum);
for (int i=0;i<PNoise_transpose.size();i++){
for (int j=0;j<PNoise_transpose[0].size();j++){
PNoise_mul[i][0]=PNoise_transpose_col1sum;
PNoise_mul[i][1]=PNoise_transpose_col2sum;
}
}
//Difference
vector<vector<float>> PNoise_mul_aa(PNoise_transpose.size(),vector<float>(PNoise_transpose[0].size(),0));
for (int i=0;i<PNoise_transpose.size();i++){
for (int j=0;j<PNoise_transpose[0].size();j++){
PNoise_mul_aa[i][j]=PNoise_transpose[i][j]-PNoise_mul[i][j];
//printf("%f\n",PNoise_mul_aa[i][j]);
}
}
vector<vector<float>> PNoise_mul_aa_trans(PNoise_mul_aa[0].size(),vector<float>(PNoise_mul_aa.size(),0));
for (int i=0;i<PNoise_mul_aa.size();i++){
for (int j=0;j<PNoise_mul_aa[0].size();j++){
PNoise_mul_aa_trans[j][i]=PNoise_mul_aa[i][j];
}
}
vector<vector<float>> Q(PNoise_mul_aa_trans.size(),vector<float>(PNoise_mul_aa_trans.size(),0));
// A*A` calculation
for (int i=0;i<PNoise_mul_aa_trans.size();i++){
for (int j=0;j<PNoise_mul_aa_trans.size();j++){
Q[i][j]=0;
for (int k=0;k<PNoise_mul_aa.size();k++){
Q[i][j]+=PNoise_mul_aa_trans[i][k]*PNoise_mul_aa[k][j];
//printf("%f\n",Q[i][j]);
}
}
}
/* Important */
for (int i=0;i<Q.size();i++){
for (int j=0;j<Q[0].size();j++){
Q[i][j]/=N;
//printf("%f\n",Q[i][j]);
}
}
////////////////////////////////////////////
// ONoise covariance
float ONoise_colsum=0;
vector<vector<float>> ONoise_transpose(ONoise[0].size(),vector<float>(ONoise.size()));
for (int i=0;i<ONoise.size();i++){
for (int j=0;j<ONoise[0].size();j++){
ONoise_colsum+=ONoise[i][j];
ONoise_transpose[j][i]=ONoise[i][j];
}
}
ONoise_colsum/=N;
vector<vector<float>> ONoise_a(ONoise_transpose.size(),vector<float>(ONoise_transpose[0].size()));
for (int i=0;i<ONoise_a.size();i++){
for (int j=0;j<ONoise_a[0].size();j++){
ONoise_a[i][j]=ONoise_transpose[i][j]-ONoise_colsum;
}
}
/* Important */
float R=0;
vector<vector<float>> ONoise_cov(ONoise_transpose[0].size(),vector<float>(ONoise_transpose[0].size()));
for (int i=0;i<ONoise_cov.size();i++){
for (int j=0;j<ONoise_cov[0].size();j++){
ONoise_cov[i][j]=(ONoise_a[i][j]*ONoise_a[i][j])/N;
R=ONoise_cov[i][j]; // ONoise Covariance
}
}
/* Initial values for model */
X[0][0]=1;
X[1][0]=0;
/* Initial state */
y[0][0]=C[0][0]*X[0][0]+C[0][1]*X[1][0]+ONoise[0][0];
/* Simulating states and real observations */
for (int state=1;state<N;state++){
X[0][state]=A[0][0]*X[0][state-1]+A[0][1]*X[1][state-1]+PNoise[0][state];
X[1][state]=A[1][0]*X[0][state-1]+A[1][1]*X[1][state-1]+PNoise[1][state];
y[0][state]=C[0][0]*X[0][state]+C[0][1]*X[1][state]+ONoise[0][state];
}
// for (int i=0;i<y.size();i++){
// for (int j=0;j<y[0].size();j++){
// printf("%f\t",y[i][j] );
// }
// }
vector<vector<float>> Px(StateDim,vector<float>(StateDim,0));
Px[0][0]=1;
Px[0][1]=0;
Px[1][0]=0;
Px[1][1]=1;
vector<vector<float>> Px_(StateDim,vector<float>(StateDim,0));
vector<vector<float>> xh(StateDim,vector<float>(N,0));
for (int i=0;i<xh.size();i++){
for (int j=0;j<xh[0].size();j++){
xh[i][j]=0.01*closed_interval_rand(1,-1);
//printf("%f\t",xh[i][j]);
}
}
vector<vector<float>> xh_(StateDim,vector<float>(N,0));
vector<vector<float>> yh_(ObsDim,vector<float>(N,0));
vector<vector<float>> inov(ObsDim,vector<float>(N,0));
vector<vector<float>> K(StateDim,vector<float>(ObsDim,0));
// R=2.2891;
// Q[0][0]=0.10542;
// Q[0][1]=0.0090144;
// Q[1][0]=0.0090144;
// Q[1][1]=0.1123068;
for (int i=0;i<N;i++){
/* priori estimate */
xh_[0][i]=A[0][0]*xh[0][i]+A[0][1]*xh[1][i];
xh_[1][i]=A[1][0]*xh[0][i]+A[1][1]*xh[1][i];
/* priori estimate of state covariance matrix */
Px_[0][0]=((1.9223)*(((1.9223)*(Px[0][0]))+((-0.9604)*(Px[1][0]))))+((-0.9604)*(((1.9223)*(Px[0][1]))+((-0.9604)*(Px[1][1])))) + Q[0][0];
Px_[0][1]=(1*(((1.9223)*(Px[0][0]))+((-0.9604)*(Px[1][0]))))+((0)*(((1.9223)*(Px[0][1]))+((-0.9604)*(Px[1][1])))) + Q[0][1];
Px_[1][0]=((1.9223)*(((1)*(Px[0][0]))+((0)*Px[1][0])))+((-0.9604)*(((1)*Px[0][1])+((0)*Px[1][1]))) + Q[1][0];
Px_[1][1]=(1*(((1)*(Px[0][0]))+((0)*Px[1][0])))+((0)*(((1)*(Px[0][1]))+((0)*Px[1][1]))) + Q[1][1];
/* Kalman filter coefficient */
K[0][0]=Px_[0][0]*(1/((Px_[0][0])+R));
K[1][0]=Px_[1][0]*(1/((Px_[0][0])+R));
/* Estimated observation */
yh_[0][i]=xh_[0][i]+R;
/* Innovation error */
inov[0][i]=y[0][i]-yh_[0][i];
//printf("%f\t",inov[0][i]);
/* Updated estimate of current state */
xh[0][i+1]=xh_[0][i]+K[0][0]*inov[0][i];
xh[1][i+1]=xh_[1][i]+K[1][0]*inov[0][i];
/* Updated state covariance matrix */
Px[0][0]=Px_[0][0]-K[0][0]*Px_[0][0];
Px[0][1]=Px_[0][1]-K[0][0]*Px_[0][1];
Px[1][0]=Px_[1][0]-K[1][0]*Px_[0][0];
Px[1][1]=Px_[1][1]-K[1][0]*Px_[0][1];
//printf("y:%f\n",y[0][i]);
//printf("yh:%f\n",yh_[0][i]);
printf("xh:%f\t%f\n",xh[0][i],xh[1][i]);
cout << "#######" << endl;
printf("xh_:%f\t%f\n",xh_[0][i],xh_[1][i]);
}
return 0;
}
|
ef7b8efaf1fba75ebd9e0423579af372ed824d4e
|
e025562fa4e28cc9f25aa54287ec1e9daabe37d4
|
/__lib32/kylib/KYTable.h
|
cf2369e111ea615e03bb91af99f39b5f52b32d31
|
[] |
no_license
|
tenn-cn/TennBaseCPP
|
8a526210cd310422b5b333b76ec9faaac5c03e50
|
a61d4d77cd5fe1619001579c11cf663e4b67bd2e
|
refs/heads/master
| 2020-05-29T14:41:24.262361
| 2016-07-27T06:25:51
| 2016-07-27T06:25:51
| 64,282,269
| 0
| 1
| null | null | null | null |
GB18030
|
C++
| false
| false
| 26,852
|
h
|
KYTable.h
|
// =======================================
// Unit : 表文件类 (KYTable.h)
// Version: 3.0.0.0 (build 2011.03.09)
// Author : Kyee Ye
// Email : kyee_ye(at)126.com
// Copyright (C) Kyee workroom
// =======================================
#ifndef _KYTable_H_
#define _KYTable_H_
#include "KYFiles.h"
#include "KYFields.h"
// KYLib 2.0 开始使用 KYLib 命名空间
namespace KYLib
{
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* TKYTable - 表文件类 */
class TKYTable
{
public:
// 查找记录的选项(位操作)
enum TLocateOption {loCaseInsensitive = 0x01, // 不区分大小写
loPartialKey = 0x02}; // 部分匹配
// 数据集的状态
enum TState {kdsInactive, // 未打开状态
kdsOpening, // 正在打开表
kdsCreating, // 正在创建表
kdsBrowse, // 浏览记录
kdsEdit, // 编辑当前记录
kdsInsert}; // 插入新记录
// 版本信息
#pragma pack(push, 1)
typedef struct
{
Byte Major; // 主版本
Byte Minor; // 小版本
Byte Release; // 发布版本
Byte Build; // 发布小版本
} TVersion, *PVersion;
#pragma pack(pop)
protected:
// 表 TableOptions 功能选项
enum TTableOption {toMoveOnlyNext = 0x0001, // 移动指针只能 Next
toCannotDelete = 0x0002, // 记录不允许删除
toFieldCanNull = 0x0004, // 字段允许为空
toNoFieldDefs = 0x0008}; // 无字段定义集
// 扩展头信息的写模式
enum TInfoExMode {iwmUpdate,
iwmInsert,
iwmDelete,
iwmRecall};
// 记录头信息种类
enum TRecHeadKind {rhkVer1,
rhkFixed,
rhkByte,
rhkByte0,
rhkWord,
rhkWord0,
rhkInt,
rhkInt0};
// 表结构 = <HeadInfo> + <HeadInfoEx> + <OwnerInfo> + <FieldInfo> + <Record>
// 记录结构 = [RecordHead] + <RecordValue>
#pragma pack(push, 1)
// 表头基本信息
typedef struct
{
long Size;
TVersion Version;
long FieldSize;
long FieldCount;
long RecordHead;
long RecordSize;
long HeadOrigin;
long OwnerOrigin;
long FieldOrigin;
long RecordOrigin;
// ^^^^^^ Add on 2006.02.18 by Kyee ^^^^^^
// Add: Table version 2.0.0.0 及以后版本
Longword TableOptions;
Byte NullMapOffset;
} THeadInfo, *PHeadInfo;
// 记录头信息(包含 rhkVer1, rhkInt 种类)
typedef struct
{
long PriorSize;
long FullSize;
bool Deleted;
} TRecordHead, *PRecordHead;
#pragma pack(pop)
public:
TKYTable();
virtual ~TKYTable();
// ----- 表特征属性
// 表的创建日期时间
TDateTime CreateDate() const { return FHeadInfoEx->Fields(1)->AsDateTime(); }
// 表的最后修改日期时间
TDateTime ModifyDate() const { return FHeadInfoEx->Fields(2)->AsDateTime(); }
// 自定义名字, 最大长度 32, 默认值为: ""
KYString OwnerName() const { return FOwnerInfo->Fields(2)->AsString(); }
// 自定义数据尺寸, 数据放在表的 <HeadInfoEx> 和 <FieldInfo> 之间, 默认值为: 0
long OwnerSize() const { return FOwnerInfo->Fields(3)->AsInteger(); }
// 自定义版本信息, 默认值为: {0, 0, 0, 0}
TVersion OwnerVersion() const;
// 表的版本信息, 默认值为: {2, 1, 0, 0}
TVersion TableVersion() const { return FHeadInfo.Version; }
// 表记录之间上下文是否只有向下链接, 默认值为: false
bool MoveOnlyNext() const { return IsOption(FHeadInfo.TableOptions, toMoveOnlyNext); }
// 表记录是否不允许删除, 默认值为: false
bool CannotDelete() const { return IsOption(FHeadInfo.TableOptions, toCannotDelete); }
// 表记录的字段值是否允许空存放, 默认值为: false
// 若此属性为 true, 则当某字段未赋值而保存时不占记录空间, 而只占一个空的标志(1 bit)
bool FieldCanNull() const { return IsOption(FHeadInfo.TableOptions, toFieldCanNull); }
// 表文件是否不存放字段定义信息, 默认值为: false
// 若此属性为 true, 则在打开表之前必须要预先定义 FieldDefs 属性, 存放记录的字段集信息
bool NoFieldDefs() const { return IsOption(FHeadInfo.TableOptions, toNoFieldDefs); }
// ----- 表属性
// 表的数据库名, 即表文件所在的路径或上层路径, 默认值为: ""
KYString DatabaseName() const { return FDatabaseName; }
// 表名, 即表的文件名或带全路径的文件名, 默认值为: ""
// 若设置了 DatabaseName, 则表文件名为: DatabaseName() + TableName()
KYString TableName() const { return FTableName; }
// 表是否独占打开, 默认值为: false
bool Exclusive() const { return FExclusive; }
// 表是否只读打开, 默认值为: false
bool ReadOnly() const { return FReadOnly; }
// 判断表文件是否存在
bool Existed() const { return FileExists(GetFileName(FDatabaseName, FTableName)); }
// 保存新增记录时是否填充到已删除记录的空间, 默认值为: false
// 若设置此属性为 true, 则新建记录时需要查找已删除记录的位置, 性能可能会变得很低
bool FillDeleted() const { return FFillDeleted; }
// 是否可浏览已删除的记录, 默认值为: false
// 若设置此属性为 true, 则移动记录指针时不会跳过已删除记录, 也就是说, 移动记
// 录指针时不判断是否已删除记录, 由 Deleted() 属性表示记录是否已删除
bool ShowDeleted() const { return FShowDeleted; }
// ----- 字段属性
// 表记录的字段个数
long FieldCount() const { return FHeadInfo.FieldCount; }
// 表记录的字段定义集信息
TKYFieldDefs* FieldDefs() const { return FFieldDefs; }
// 根据字段号取表记录的字段值, 字段号取值范围: [0..FieldCount()-1]
TKYField* Fields(long AFieldNo) const
{ return Active() ? FFields->Fields(AFieldNo) : NULL; }
// 根据字段名取记录的字段可变数据值
TKYVarType::TVarData* FieldValues(const KYString& AFieldName) const;
// ----- 记录属性
// 表是否已打开, 默认值为: false
bool Active() const { return (FState >= kdsBrowse); }
// 表打开, 创建, 浏览, 编辑或插入记录时的错误信息, 默认值为: ""
KYString Error() const { return FError; }
// 表当前状态, 默认值为: kdsInactive
TState State() const { return FState; }
// 判断记录指针是否在开始位置, 默认值为: true
bool Bof() const { return FBOF; }
// 判断记录指针是否在末尾, 默认值为: true
// 若此属性为 true 则表示无法再向下移动记录指针, 或表未打开
bool Eof() const { return FEOF; }
// 判断 Locate 方法是否查找到记录, 默认值为: false
bool Found() const { return FFound; }
// 记录标识号, 为表记录的物理编号, 在表文件中唯一, 标识号范围: [1..HaveRecCount()]
long RecID() const { return FRecID; }
// 记录号, 为表记录的逻辑编号, 与 ShowDeleted() 属性有关, 范围: [1..ShowRecCount()]
// 若 ShowDeleted() 属性为 true, 则有 RecNo() == RecID(), 否则就不一定相同
long RecNo() const { return FRecNo; }
// 当前记录是否已删除
bool Deleted() const { return Active() && FRecordHead.Deleted; }
// 表文件中存在的记录数, 包括已删除记录
long HaveRecCount() const { return FHeadInfoEx->Fields(6)->AsInteger(); }
// 表文件可浏览的记录数,
// 若 ShowDeleted() 属性为 true, 则有 ShowDeleted() == HaveRecCount(),
// 否则 ShowRecCount() == RecordCount()
long ShowRecCount() const;
// 当前记录的数据尺寸
long RecCurrSize() const { return Active() ? FFields->RecordSize() : 0; }
// 当前记录所在空间的最大允许记录尺寸
long RecFullSize() const;
// 未删除的记录数
long RecordCount() const { return FHeadInfoEx->Fields(5)->AsInteger(); }
// 记录的最大尺寸
long RecordSize() const { return FHeadInfo.RecordSize; }
// 设置自定义名字
bool SetOwnerName(const KYString& AName);
// 设置自定义数据尺寸, 必须在 CreateTable 之前设置, 否则无效
bool SetOwnerSize(long ASize);
// 设置自定义版本信息
bool SetOwnerVersion(const TVersion& AVersion);
// 设置表记录之间上下文是否只有向下链接, 必须在 CreateTable 之前设置, 否则无效
bool SetMoveOnlyNext(bool AEnabled);
// 设置表记录是否不允许删除, 必须在 CreateTable 之前设置, 否则无效
bool SetCannotDelete(bool AEnabled);
// 设置表记录的字段值是否允许空存放, 必须在 CreateTable 之前设置, 否则无效
bool SetFieldCanNull(bool AEnabled);
// 设置表文件是否不存放字段定义信息, 必须在 CreateTable 之前设置, 否则无效
bool SetNoFieldDefs(bool AEnabled);
// 设置表文件所在的路径或上层路径, 必须在 Open 之前设置, 否则无效
bool SetDatabaseName(const KYString& AName);
// 设置表的文件名或带全路径的文件名, 必须在 Open 之前设置, 否则无效
bool SetTableName(const KYString& AName);
// 设置表是否独占打开, 必须在 Open 之前设置, 否则无效
bool SetExclusive(bool AEnabled);
// 设置表是否只读打开, 必须在 Open 之前设置, 否则无效
bool SetReadOnly(bool AEnabled);
// 设置保存新增记录时是否填充到已删除记录的空间
bool SetFillDeleted(bool AEnabled);
// 设置是否可浏览已删除的记录, 必须在 Open 之前设置, 否则无效
bool SetShowDeleted(bool AEnabled);
// 设置字段值, 必须在 Active() 为 true 之后设置, 否则无效
bool SetFieldValues(const KYString& AFieldName,
const TKYVarType::TVarData* AValue);
// 设置打开/关闭表
bool SetActive(bool AValue);
// 设置记录标识号, 必须在 Active() 为 true 之后设置, 否则无效
// 若标识号指向的是已删除记录且 ShowDeleted() 属性为 false, 则记录号无效
bool SetRecID(long ARecID);
// 设置记录号, 必须在 Active() 为 true 之后设置, 否则无效
bool SetRecNo(long ARecNo);
// 创建表文件, 若创建失败可从 Error() 属性取错误信息
bool CreateTable(bool AIsVer1 = false);
// 删除表文件, 若失败可从 Error() 属性取错误信息
bool DeleteTable();
// 清空表的所有记录, 若失败可从 Error() 属性取错误信息
bool EmptyTable();
// 清空表的所有已删除记录, 若失败可从 Error() 属性取错误信息
bool PackTable();
// 表文件重命名, 若失败可从 Error() 属性取错误信息
bool RenameTable(const KYString& ANewName);
// 读取表文件的属性, 若失败可从 Error() 属性取错误信息
bool ReadTableAttrib();
// 打开表, 若失败可从 Error() 属性取错误信息
bool Open();
// 关闭表
void Close();
// 判断表是否为空, 即记录数是否为 0
bool IsEmpty();
// 刷新表
// 若 AFixedCursor 为 false 时, 则刷新后记录自动定位到第一条记录
// 否则 AFixedCursor 为 true 时, 不改变 RecID 和 RecNo 值, 但 RecNo 不一定准确
void Refresh(bool AFixedCursor = false);
// 更新当前记录
void UpdateRecord();
// 删除当前记录
bool Delete();
// 恢复当前已删除记录
bool RecallRecord();
// 追加记录
bool Append() { return Insert(); }
// 取消编辑可插入记录
bool Cancel();
// 编辑当前记录
bool Edit();
// 插入记录
bool Insert();
// 提交已编辑或插入的记录
bool Post();
// 移动记录指针
long MoveBy(long ADistance);
// 移到第一条记录
bool First();
// 移到最后一条记录
bool Last();
// 移到下一条记录
bool Next();
// 移到上一条记录
bool Prior();
// 根据字段名取字段值
TKYField* FindField(const KYString& AFieldName) const
{ return Active() ? FFields->FindField(AFieldName) : NULL; }
TKYField* FieldByName(const KYString& AFieldName) const
{ return Active() ? FFields->FindField(AFieldName) : NULL; }
// 根据条件查找记录, 并指向已找到的第一条记录, 若未找到则不改变记录指针
// 若要匹配多个字段值时, AFields 的字段名之间使用 ';' 分隔, 且字段值的顺序必
// 须与 AFields 字段名的顺序相同, 且数据类型也必须相同, 否则可能会产生异常
bool Locate(const KYString& AFields, Byte AOptions, ...);
// 条件查找记录的方法, 相当于 Locate 方法的分步操作
// 1. BeginKeys 初始化查找字段条件, 并置 FIsAdding 为 true
// 2. AddKey 添加需要查找的字段及字段值, 可以多次调用
// 3. FindKeys 执行条件查找, 若成功则指向已找到的第一条记录,
// 若未找到则不改变记录指针, 并清除添加的查找字段值
bool BeginKeys();
bool AddKey(const KYString& AFieldName, const TKYVarType& AValue);
bool FindKeys(Byte AOptions);
// 满足查找条件的第一条记录
bool FindFirst();
// 满足查找条件的最后一条记录
bool FindLast();
// 满足查找条件的下一条记录
bool FindNext();
// 满足查找条件的上一条记录
bool FindPrior();
// 读取自定义的数据并返回实际读取尺寸, 必须在 Active() 为 true 之后调用, 否则失败并返回 0
long GetOwnerData(void* AData, long AOffset, long ACount) const;
// 写自定义的数据并返回实际写入尺寸, 必须在 Active() 为 true 之后调用, 否则失败并返回 0
long SetOwnerData(const void* AData, long AOffset, long ACount);
protected:
void Lock() const { FLock->Enter(); }
void Unlock() const { FLock->Leave(); }
bool LockRead(Longword AOffset, Longword ACount) const;
bool UnlockRead(Longword AOffset, Longword ACount) const;
bool LockWrite(Longword AOffset, Longword ACount) const;
bool UnlockWrite(Longword AOffset, Longword ACount) const;
// 记录指针操作
bool RecOfFirst();
bool RecOfLast();
long RecOfGoto(long APos, bool AIsID);
long RecOfNext(long ADistance);
long RecOfPrior(long ADistance);
long RecOfNextID(long ADistance);
long RecOfPriorID(long ADistance);
long RecOfFixedID(long ADistance, bool AIsNext);
// 读/写记录头信息
bool ReadRecHead(TRecordHead& ARecHead, long AOffset,
bool AMoveOnlyNext,
bool ACannotDelete,
bool AHasLocked = false);
bool WriteRecHead(const TRecordHead& ARecHead, long AOffset,
bool AHasLocked = false);
// 读/写扩展头信息
bool ReadHeadInfoEx();
bool WriteHeadInfoEx(TInfoExMode AMode, long ALastRecSize = 0);
// 读/写自定义信息
bool ReadOwnerInfo();
bool WriteOwnerInfo();
// 记录编辑的内部函数
bool CheckBrowseMode(const char* AErrOp);
bool InternalCancel();
bool InternalEdit();
bool InternalInsert();
bool PostOfDeleteFlag(long AOffset);
bool PostOfRecallFlag(long AOffset);
bool PostOfFindDeleted(long& AOffset, long& ARecID,
long& ARecNo, long ARecSize,
bool AOverflow, TRecordHead& AHead);
bool PostOfUpdateRec(const char* ABuffer, long AOffset,
long AFullSize, long ARecSize);
bool PostOfInsertRec(const char* ABuffer, long ARecSize);
bool InternalPostEdit(const char* ABuffer, long ARecSize);
bool InternalPostInsert(const char* ABuffer, long ARecSize,
bool AOverflow);
bool InternalPost();
bool InternalDelete();
bool InternalRecallRecord();
bool InternalRefresh(bool AFixedCursor);
bool InternalUpdateRecord();
// 查找记录的函数
long AnalyzeFields(const KYString& AFields);
bool CompareRecord();
bool FindRecord(bool ARestart, bool AGoForward);
private:
void InitialInfo();
void ReleaseInfo();
void NullRecord();
bool ReadRecord(const TRecordHead& AHead, long AOffset, long ARecNo);
bool ReadDataOfFile(long AOffset, long ACount, bool ANeedSeek);
void DoValueDeletion(TKYField* AItem);
private:
TKYCritSect* FLock;
KYString FError;
// 头信息
THeadInfo FHeadInfo;
TKYFields* FHeadInfoEx;
TKYFields* FOwnerInfo;
TKYFields* FFields;
TKYFieldDefs* FFieldDefs;
// 记录头信息
TKYFields* FRecHeadFields;
KYString FRecHeadBuffer;
long FRecMinSize;
TRecordHead FRecordHead;
TRecHeadKind FRecHeadKind;
// 表打开方式
KYString FDatabaseName;
KYString FTableName;
bool FExclusive;
bool FReadOnly;
bool FFillDeleted;
bool FShowDeleted;
// 表文件及缓冲区
TFile* FFile;
long FCursor;
KYString FBuffer;
// 状态
TState FState;
bool FBOF;
bool FEOF;
long FRecID;
long FRecNo;
// 查找
bool FFound;
bool FIsAdding;
Byte FKeyOptions;
TKYList* FKeyFields;
TKYList* FKeyValues;
public:
// 选项值和设置选项
static bool IsOption(Longword AValue, Longword AOption)
{ return (AValue & AOption) == AOption; }
static void SetOption(Longword& AValue, Longword AOption, bool AEnabled)
{ AEnabled ? (AValue |= AOption) : (AValue &= ~AOption); }
// 是否相同字段值
static bool SameFieldValue(const TKYField& AField,
const TKYField& AValue, Byte AOptions);
// 合成版本值
static TVersion Version(Byte AMajor, Byte AMinor, Byte ARelease, Byte ABuild);
// Version <-> String
static KYString VerToString(const TVersion& AVersion);
static TVersion StringToVer(const KYString& AStr);
// 得到偏移量
static Byte GetNullMapOffset(TRecHeadKind AKind, bool ACannotDelete,
bool ACanNull);
// 得到记录头字段集
static void GetRecordHead(TKYFields* AHead, TRecHeadKind AKind,
bool ACannotDelete);
// 得到记录头尺寸
static long GetRecHeadSize(TRecHeadKind AKind, long AFieldCount,
bool ACannotDelete, bool ACanNull);
// 得到记录头种类
static TRecHeadKind GetRecHeadKind(const TVersion& AVersion, bool AFixed,
bool AMoveOnlyNext, long ARecordSize);
// 检查记录头尺寸是否合法
static bool CheckRecHeadSize(const THeadInfo& AHeadInfo, TRecHeadKind& AKind);
// 检查头信息是否合法
static bool CheckHeadInfo(const THeadInfo& AHeadInfo, long AFileSize);
// 检查扩展头信息是否合法
static bool CheckHeadInfoEx(const THeadInfo& AHeadInfo,
const TKYFields* AHeadInfoEx, long AFileSize);
// 检查自定义信息是否合法
static bool CheckOwnerInfo(const THeadInfo& AHeadInfo,
const TKYFields* AOwnerInfo);
// 读表头相关信息
static bool ReadTableHead(const TFile* AFile, TRecHeadKind& AKind,
THeadInfo& AHeadInfo,
TKYFields* AHeadInfoEx,
TKYFields* AOwnerInfo);
// 读字段定义集
static bool ReadFieldDefs(const TFile* AFile,
const THeadInfo& AHeadInfo,
TKYFieldDefs* AFieldDefs);
// 校正表头信息
static void VerifyTableHead(THeadInfo& AHeadInfo,
TKYFields* AHeadInfoEx,
TKYFields* AOwnerInfo,
TKYFieldDefs* AFieldDefs, bool AIsVer1);
// 写表头信息
static void WriteTableHead(const TFile* AFile,
const THeadInfo& AHeadInfo,
const TKYFields* AHeadInfoEx,
const TKYFields* AOwnerInfo,
const TKYFieldDefs* AFieldDefs);
// 移掉已经删除的记录
static void RemoveRecordOfDeleted(const TFile* AFile,
TRecHeadKind AKind,
const THeadInfo& AHeadInfo,
TKYFields* AHeadInfoEx);
protected:
// 缓冲区<->TVersion
static bool Buffer2Version(const void* ABuffer, TVersion& AVersion);
static long Version2Buffer(const TVersion& AVersion, void* ABuffer);
// 缓冲区<->THeadInfo
static bool Buffer2HeadInfo(const void* ABuffer, THeadInfo& AHeadInfo);
static long HeadInfo2Buffer(const THeadInfo& AHeadInfo, void* ABuffer);
private:
// 字段比较函数指针
typedef bool (*TSameValue)(const TKYField& AField,
const TKYField& AValue, Byte AOptions);
// 静态字段定义集对象
static TKYFieldDefs Defs_Version; // TVersion
static TKYFieldDefs Defs_HeadInfo; // THeadInfo
static TKYFieldDefs Defs_HeadInfoEx; // THeadInfoEx
static TKYFieldDefs Defs_OwnerInfo; // TOwnerInfo
static TKYFieldDefs Defs_FieldInfo; // TFieldInfo
static TKYFieldDefs Defs_RecordHead; // TRecordHead
static TKYFieldDefs Defs_RH_Fixed; // rhkFixed
static TKYFieldDefs Defs_RH_Byte; // rhkByte
static TKYFieldDefs Defs_RH_Word; // rhkWord
static TKYFieldDefs Defs_RH_Byte0; // rhkByte0
static TKYFieldDefs Defs_RH_Word0; // rhkWord0
static TKYFieldDefs Defs_RH_Int0; // rhkInt0
// 各种记录头
static TKYFieldDefs* HeadKind_Defs[8];
static const Byte HeadKind_Size[2][8];
// 各版本对应的结构尺寸
static const Word StructOfVer_Size[2][4];
// 字段名
static const KYString Field_Name; // "Name"
static const KYString Field_Type; // "Type"
static const KYString Field_Size; // "Size"
static const KYString Field_PriorSize; // "PriorSize"
static const KYString Field_FullSize; // "FullSize"
static const KYString Field_Deleted; // "Deleted"
// 各版本值
static const TVersion Version_Current; // 当前版本
static const TVersion Version_Ver1; // 版本 1.0
static const TVersion Version_NULL; // 空版本
// 打开格式
static const Longword OpenMode_ReadOnly[2];
static const Longword OpenMode_Exclusive[2];
// 比较相同值的函数指针数组
static const TSameValue SameValues[13];
// TKYTable 的静态成员初始化类
static class TInitialization
{
public:
TInitialization();
~TInitialization();
} Inner_Initialization;
friend class TInitialization;
};
}
#endif
|
8b7652db44720bb18a27e3b2ca7f40316b79da8e
|
bec1efd4c92544a9e304f7cb70bb7769fcf140fb
|
/arduino/lib/Braccio.cpp
|
a9d850acd1b70ec8e3fd5d47c2cce0f2a627cacd
|
[
"MIT"
] |
permissive
|
jonabalzer/braccio_moveit_config
|
d640ada30a3037038c68b6f4db5e5bab34d40f0f
|
86a930052b901953ef1226308857fe03c27bccac
|
refs/heads/master
| 2021-01-23T02:04:51.811124
| 2017-04-20T12:03:20
| 2017-04-20T12:03:20
| 85,960,055
| 5
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,771
|
cpp
|
Braccio.cpp
|
/*
Braccio.cpp - board library Version 2.0
Written by Andrea Martino and Angelo Ferrante
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "Braccio.h"
extern Servo base;
extern Servo shoulder;
extern Servo elbow;
extern Servo wrist_rot;
extern Servo wrist_ver;
extern Servo gripper;
extern int step_base = 0;
extern int step_shoulder = 45;
extern int step_elbow = 180;
extern int step_wrist_rot = 180;
extern int step_wrist_ver = 90;
extern int step_gripper = 10;
_Braccio Braccio;
//Initialize Braccio object
_Braccio::_Braccio() {
}
/**
* Braccio initialization and set intial position
* Modifing this function you can set up the initial position of all the
* servo motors of Braccio
* @param soft_start_level: default value is 0 (SOFT_START_DEFAULT)
* You should set begin(SOFT_START_DISABLED) if you are using the Arm Robot shield V1.6
* SOFT_START_DISABLED disable the Braccio movements
*/
unsigned int _Braccio::begin(int soft_start_level) {
//Calling Braccio.begin(SOFT_START_DISABLED) the Softstart is disabled and you can use the pin 12
if(soft_start_level!=SOFT_START_DISABLED){
pinMode(SOFT_START_CONTROL_PIN,OUTPUT);
digitalWrite(SOFT_START_CONTROL_PIN,LOW);
}
// initialization pin Servo motors
base.attach(11);
shoulder.attach(10);
elbow.attach(9);
wrist_rot.attach(6);
wrist_ver.attach(5);
gripper.attach(3);
//For each step motor this set up the initial degree
base.write(0);
shoulder.write(40);
elbow.write(180);
wrist_ver.write(170);
wrist_rot.write(0);
gripper.write(73);
//Previous step motor position
step_base = 0;
step_shoulder = 40;
step_elbow = 180;
step_wrist_ver = 170;
step_wrist_rot = 0;
step_gripper = 73;
if(soft_start_level!=SOFT_START_DISABLED)
_softStart(soft_start_level);
return 1;
}
/*
Software implementation of the PWM for the SOFT_START_CONTROL_PIN,HIGH
@param high_time: the time in the logic level high
@param low_time: the time in the logic level low
*/
void _Braccio::_softwarePWM(int high_time, int low_time){
digitalWrite(SOFT_START_CONTROL_PIN,HIGH);
delayMicroseconds(high_time);
digitalWrite(SOFT_START_CONTROL_PIN,LOW);
delayMicroseconds(low_time);
}
/*
* This function, used only with the Braccio Shield V4 and greater,
* turn ON the Braccio softly and save it from brokes.
* The SOFT_START_CONTROL_PIN is used as a software PWM
* @param soft_start_level: the minimum value is -70, default value is 0 (SOFT_START_DEFAULT)
*/
void _Braccio::_softStart(int soft_start_level){
long int tmp=millis();
while(millis()-tmp < LOW_LIMIT_TIMEOUT)
_softwarePWM(80+soft_start_level, 450 - soft_start_level); //the sum should be 530usec
while(millis()-tmp < HIGH_LIMIT_TIMEOUT)
_softwarePWM(75 + soft_start_level, 430 - soft_start_level); //the sum should be 505usec
digitalWrite(SOFT_START_CONTROL_PIN,HIGH);
}
/**
* This functions allow you to control all the servo motors
*
* @param stepDelay The delay between each servo movement
* @param vBase next base servo motor degree
* @param vShoulder next shoulder servo motor degree
* @param vElbow next elbow servo motor degree
* @param vWrist_ver next wrist rotation servo motor degree
* @param vWrist_rot next wrist vertical servo motor degree
* @param vgripper next gripper servo motor degree
*/
int _Braccio::ServoMovement(int stepDelay, int vBase, int vShoulder, int vElbow,int vWrist_ver, int vWrist_rot) {
// Check values, to avoid dangerous positions for the Braccio
if (stepDelay > 30) stepDelay = 30;
if (stepDelay < 10) stepDelay = 10;
if (vBase < 0) vBase=0;
if (vBase > 180) vBase=180;
if (vShoulder < 15) vShoulder=15;
if (vShoulder > 165) vShoulder=165;
if (vElbow < 0) vElbow=0;
if (vElbow > 180) vElbow=180;
if (vWrist_ver < 0) vWrist_ver=0;
if (vWrist_ver > 180) vWrist_ver=180;
if (vWrist_rot > 180) vWrist_rot=180;
if (vWrist_rot < 0) vWrist_rot=0;
int exit = 1;
//Until the all motors are in the desired position
while (exit)
{
//For each servo motor if next degree is not the same of the previuos than do the movement
if (vBase != step_base)
{
base.write(step_base);
//One step ahead
if (vBase > step_base) {
step_base++;
}
//One step beyond
if (vBase < step_base) {
step_base--;
}
}
if (vShoulder != step_shoulder)
{
shoulder.write(step_shoulder);
//One step ahead
if (vShoulder > step_shoulder) {
step_shoulder++;
}
//One step beyond
if (vShoulder < step_shoulder) {
step_shoulder--;
}
}
if (vElbow != step_elbow)
{
elbow.write(step_elbow);
//One step ahead
if (vElbow > step_elbow) {
step_elbow++;
}
//One step beyond
if (vElbow < step_elbow) {
step_elbow--;
}
}
if (vWrist_ver != step_wrist_rot)
{
wrist_rot.write(step_wrist_rot);
//One step ahead
if (vWrist_ver > step_wrist_rot) {
step_wrist_rot++;
}
//One step beyond
if (vWrist_ver < step_wrist_rot) {
step_wrist_rot--;
}
}
if (vWrist_rot != step_wrist_ver)
{
wrist_ver.write(step_wrist_ver);
//One step ahead
if (vWrist_rot > step_wrist_ver) {
step_wrist_ver++;
}
//One step beyond
if (vWrist_rot < step_wrist_ver) {
step_wrist_ver--;
}
}
//delay between each movement
delay(stepDelay);
//It checks if all the servo motors are in the desired position
if ((vBase == step_base) && (vShoulder == step_shoulder)
&& (vElbow == step_elbow) && (vWrist_ver == step_wrist_rot)
&& (vWrist_rot == step_wrist_ver)) {
step_base = vBase;
step_shoulder = vShoulder;
step_elbow = vElbow;
step_wrist_rot = vWrist_ver;
step_wrist_ver = vWrist_rot;
exit = 0;
} else {
exit = 1;
}
}
}
/**
* This functions allow you to control the gripper servo.
*
* @param vgripper next gripper servo motor degree
*/
int _Braccio::GripperMovement(int stepDelay, int vgripper) {
// Check values, to avoid dangerous positions for the Braccio
if (stepDelay > 30) stepDelay = 30;
if (stepDelay < 10) stepDelay = 10;
if (vgripper < 10) vgripper = 10;
if (vgripper > 73) vgripper = 73;
int exit = 1;
//Until the all motors are in the desired position
while (exit)
{
if (vgripper != step_gripper)
{
gripper.write(step_gripper);
if (vgripper > step_gripper) {
step_gripper++;
}
//One step beyond
if (vgripper < step_gripper) {
step_gripper--;
}
}
//delay between each movement
delay(stepDelay);
//It checks if all the servo motors are in the desired position
if (vgripper == step_gripper) {
step_gripper = vgripper;
exit = 0;
} else {
exit = 1;
}
}
}
|
281deb5d99bcb21b6467d019974616715763a7a7
|
c33ebb6bbfcbee2a8e92a3b6e9b2dcd4b7de02b4
|
/src/behaviour-tree/tasks/task-print-message.cpp
|
e569cd4e1ab8e90a93ee6459166c7f377a2c33a3
|
[
"MIT"
] |
permissive
|
xterminal86/nrogue
|
31c44bcb734b5f8516a726d9609f10d99a647336
|
4f2a3c65463fa0225dfe8834ae5bd237b811b594
|
refs/heads/master
| 2023-08-08T02:47:01.107493
| 2023-07-28T13:10:38
| 2023-07-28T13:10:38
| 150,626,056
| 9
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 463
|
cpp
|
task-print-message.cpp
|
#include "task-print-message.h"
#include "game-object.h"
#include "printer.h"
TaskPrintMessage::TaskPrintMessage(GameObject *objectToControl, const std::string& debugMessage)
: Node(objectToControl)
{
_message = debugMessage;
}
// =============================================================================
BTResult TaskPrintMessage::Run()
{
Printer::Instance().AddMessage(_message);
DebugLog("%s", _message.data());
return BTResult::Success;
}
|
6f75af8957c713b5b69f52e804f57de7cb7f2624
|
0095cab19570f2ad39ba795e4b5de2cca584cf6c
|
/week0/ch04/SelectSort.cpp
|
8585bae90d36d62d5475e48d33a4ce08ea314e3f
|
[] |
no_license
|
ZhangXiangyu23/test1030
|
01ed8ea3e19308e30f0d2fbaf265dd0b0c7bea14
|
0811efb9e55cf3f481da7536521c7de4dab7520a
|
refs/heads/master
| 2023-09-04T11:39:01.060181
| 2021-10-31T03:17:05
| 2021-10-31T03:17:05
| 422,877,590
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 502
|
cpp
|
SelectSort.cpp
|
#include <stdio.h>
int main()
{
printf("请依次输入10个地区的面试\n");
int a[10];
for(int i=0;i<10;i++)
{
scanf("%d",&a[i]);
}
printf("排序之前:\n");
for(int i=0;i<10;i++)
{
printf("%d\t",a[i]);
}
printf("\n");
//选择排序
for(int i=0;i<10;i++)
{
for(int j=i+1;j<10;j++)
{
if(a[j]<a[i])
{
int term=a[i];
a[i]=a[j];
a[j]=term;
}
}
}
printf("排序之后:\n");
for(int i=0;i<10;i++)
{
printf("%d\t",a[i]);
}
return 0;
}
|
c140afceba91ac36fbb3935eec39ed805d0813a0
|
463a90a1634eac1085e5424b1e8f13cc7fed7a05
|
/Practice/Algorithms/BreakingTheRecord/BreakingTheRecord/BreakingTheRecord.cpp
|
e3fb6093dc2d70da14bc52a9f2079f63769da2ec
|
[] |
no_license
|
westsiderz/HackerRank
|
33b2cdb163ac1f917f112cdda31a67fdc2f8c4e8
|
0b182f0e1818ba4b17c992377b3b6970052f149d
|
refs/heads/master
| 2020-06-27T00:21:53.217403
| 2020-01-20T16:56:47
| 2020-01-20T16:56:47
| 199,797,435
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 802
|
cpp
|
BreakingTheRecord.cpp
|
// BreakingTheRecord.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include "pch.h"
#include <iostream>
#include <vector>
using namespace std;
// Complete the breakingRecords function below.
vector<int> breakingRecords(vector<int> scores) {
// Keeps the current min and max result
int min = scores.at(0);
int max = scores.at(0);
// Keeps the count of min and max results
int minCount = 0;
int maxCount = 0;
for (auto score : scores)
{
if (score < min)
{
min = score;
++minCount;
}
else if (score > max)
{
max = score;
++maxCount;
}
}
return { maxCount, minCount };
}
int main()
{
vector<int> result = breakingRecords({ 10, 5, 20, 20, 4, 5, 2, 25, 1 });
std::cout << result.at(0) << " " << result.at(1) << "\n";
}
|
7b3d1cb302ef866c6c6997cb503664620d7b56ef
|
ed651e213c6b4b2188847a0e5084f18c9c0d448b
|
/CPP/src/PE_0056.cpp
|
69544025acd478c7678a973c1768f8992d2b9448
|
[] |
no_license
|
udaykkumar/PEular
|
577fccfa2f40295b34d3d0ac66187e93bb7c43bb
|
de92774a9ec7337cd3b31e8c15a04e1d0039203e
|
refs/heads/master
| 2022-03-29T18:01:33.885957
| 2020-01-21T03:06:34
| 2020-01-21T03:06:34
| 117,124,653
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,030
|
cpp
|
PE_0056.cpp
|
#include <PE_0056.hpp>
#include <boost/multiprecision/cpp_int.hpp>
using boost::multiprecision::cpp_int;
namespace project_euler
{
size_t digit_sum(cpp_int n)
{
size_t sum = 0;
while( n )
{
sum += static_cast<size_t>(n%10);
n /= 10;
}
return sum;
}
size_t PE_0056_Naive_Solution()
{
size_t max_digit_sum = 0;
for( cpp_int n = 1; n <= 100 ; n ++ )
{
cpp_int idx = 1;
for( cpp_int jdx = 1; jdx <= 100; jdx ++ )
{
idx *= n;
size_t power_sum = digit_sum(idx);
if( power_sum > max_digit_sum )
{
max_digit_sum = power_sum;
}
}
}
return max_digit_sum;
}
size_t PE_0056_Naive_Solution_With_Tweeks()
{
size_t max_digit_sum = 0;
for( cpp_int n = 1; n <= 100 ; n ++ )
{
if( n%10 == 0 )
continue;
cpp_int idx = 1;
for( cpp_int jdx = 1; jdx <= 100; jdx ++ )
{
idx *= n;
size_t power_sum = digit_sum(idx);
if( power_sum > max_digit_sum )
{
max_digit_sum = power_sum;
}
}
}
return max_digit_sum;
}
}
|
df1977c17bb15bc7e83281b44f97eb1ccbb5e30a
|
39ae10a864e7031accd6788f45ea9f989259ac2d
|
/DataStructuresToy/linked_list.h
|
fa008cb25e5416d8b69b68d5684a330ee60221d7
|
[
"MIT"
] |
permissive
|
vihoc/toy
|
006b6133f17d1049ce4e42cbf7aff952f47f2569
|
c358eccaccc3692ace80a13bf201f5d2e6a2a4c9
|
refs/heads/main
| 2023-04-28T22:22:01.495595
| 2021-05-13T15:56:36
| 2021-05-13T15:56:36
| 357,206,411
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 10,600
|
h
|
linked_list.h
|
/**
基于C++1單鏈表 , 支持std方式编程.
author: vihoc
*/
#ifndef _VIHO_STRUCTURES_LINKED_LIST_H
#define _VIHO_STRUCTURES_LINKED_LIST_H
#include <tchar.h>
//#define new new(_T(__FILE__), __LINE__)
#include <cstdint>
#include <stdexcept>
#include <traits.h>
namespace VihoStructures {
/**
* @單鏈表數據結構實現
* @每個元素存儲一個指針,鏈表尾部next指向nullptr
*
*
* @模板參數T為保存的數據中類型
*/
template <typename T, class A = std::allocator<T>>
class LinkedList {
struct Node;
public:
typedef std::allocator_traits<A> allocator_type;
typedef typename allocator_type::value_type value_type;
//typedef typename std::allocator_traits<A>::reference reference;
// typedef typename std::allocator_traits<A>::const_reference const_reference;
typedef typename allocator_type::difference_type difference_type;
typedef typename allocator_type::size_type size_type;
public:
using iterator = forward_iterator<Node>;
using const_iterator = const_forward_iterator<const Node>;
using reverse_iterator = std::reverse_iterator<iterator>;
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
public:
LinkedList() = default;
/**
* @构造函数
* @允许使用初始化列表构造链表
*/
LinkedList(std::initializer_list <T>&& other)
{
for (auto& e : other)
{
push_back(e);
}
}
LinkedList(const LinkedList<T>& other)
: head{copy_list(other.head)}, size_{other.size_} {}
LinkedList(LinkedList<T>&& other) : head{other.head}, size_{other.size_} {
other.head = nullptr;
other.size_ = 0;
}
LinkedList<T>& operator=(const LinkedList<T>& other) {
LinkedList<T> copy{other};
std::swap(head, copy.head);
std::swap(size_, copy.size_);
return *this;
}
LinkedList<T>& operator=(LinkedList<T>&& other) {
LinkedList<T> copy{std::move(other)};
std::swap(head, copy.head);
std::swap(size_, copy.size_);
return *this;
}
virtual ~LinkedList() { clear(); }
/**
* @清空列表
*/
void clear() {
//std::cout << "==============delete=====" <<std::endl;
while (!empty())
pop_front();
//std::cout << "==============delete finish=====" << std::endl;
}
/**
* @向鏈表尾部添加對象
*
* @參數:'data' 會被添加到鏈表尾部
*/
void push_back(const T& data) { insert(data, size_); }
/**
* @向鏈表添加元素
*
* @參數'data'為要加入鏈表的數據
*/
void push_front(const T& data) {
head = new Node(data, head, this);
++size_;
}
/**
* @向指定位置插入數據
*
* @參數:'data' 為要插入鏈表的對象
* @參數:'index'為data要插入的位置
*/
void insert(const T& data, std::size_t index) {
if (index == 0) {
return push_front(data);
} else if (index > size_) {
throw std::out_of_range("Invalid index");
} else {
Node* it = head;
for (std::size_t i = 0; i < index - 1; ++i) {
it = it->next;
}
it->next = new Node(data, it->next, this);
++size_;
}
}
/**
* @向已排序的數據的數組插入數據
*
* @參數'data'會被按數據已有順序插入
*/
void insert_sorted(const T& data) {
if (empty() || data <= head->data) {
return push_front(data);
} else {
Node* it = head;
while (it->next != nullptr && data > it->next->data) {
it = it->next;
}
it->next = new Node(data, it->next, this);
++size_;
}
}
/**
* @提供下表訪問鏈表
* @參數:'index' 為被訪問的下表
*
* @返回index位置存儲的值.
*/
T& at(std::size_t index) {
return const_cast<T&>(static_cast<const LinkedList*>(this)->at(index));
}
const T& at(std::size_t index) const {
if (index >= size_) {
throw std::out_of_range("Index out of bounds");
} else {
Node* it = head;
for (std::size_t i = 0; i < index; i++) {
it = it->next;
}
return it->data;
}
}
/**
* @從鏈表中移除元素
*
* @參數:'index'為被刪除的元素
*
* @返回值:被刪除的元素
*/
T erase(std::size_t index) {
if (index >= size_) {
throw std::out_of_range("Index out of bounds");
} else if (index == 0) {
return pop_front();
} else {
Node* it = head;
for (std::size_t i = 0; i < index - 1; ++i) {
it = it->next;
}
T removed = it->next->data;
Node* p_removed = it->next;
it->next = it->next->next;
--size_;
delete p_removed;
return removed;
}
}
/***
*
* iterator版earse
*/
iterator earse(iterator iter)
{
difference_type diff = distance(begin(), iter);
if (diff >= size_)
{
throw std::out_of_range("Index out of bounds(iterator erase)");
}
erase(diff);
auto newIter = begin();
advance(newIter, diff);
return newIter;
}
/**
* @彈出列表尾部節點(被刪除)
*
* @返回值: 返回被刪除的元素
*/
T pop_back() { return erase(size_ - 1); }
/**
* @刪除列表頭部節點
*返回被刪除的節點值
*/
T pop_front() {
if (empty()) {
throw std::out_of_range("List is empty");
} else {
T removed = head->data;
Node* old_head = head;
head = head->next;
delete old_head;
--size_;
//std::cout << "=====delete" << size_ + 1 << std::endl;
return removed;
}
}
/**
* @刪除鏈表中元素,
*
* @參數:'data'返回被刪除的值
*/
void remove(const T& data) {
if (head->data == data) {
pop_front();
return;
} else {
Node* it;
for (it = head; it->next->data != data; it = it->next) {
if (it->next == nullptr)
return;
}
Node* p_removed = it->next;
it->next = it->next->next;
delete p_removed;
--size_;
}
}
/**
* @檢查鏈表是否為空
*
* @爲空返回true
*/
bool empty() const { return size_ == 0; }
/**
* @查找是否有某元素
*
* @參數:'data'是需要查找的值
*
* @如果找到返回true
*/
bool contains(const T& data) const { return find(data) != size_; }
/**
* @查找元素,返回其在鏈表中的位置
*
* @參數:'data'被查找的元素
*
* @返回其在鏈表中的位置
*/
std::size_t find(const T& data) const {
std::size_t index = 0;
for (Node* it = head; it != nullptr; it = it->next) {
if (it->data == data)
break;
++index;
}
return index;
}
/**
* @獲取鏈表長度
*
* @返回值:長度
*/
std::size_t size() const { return size_; }
T& front() { return head->data; }
const T& front() const { return head->data; }
T& back() {
Node* it = head;
for (std::size_t i = 1; i < size_; ++i) {
it = it->next;
}
return it->data;
}
const T& back() const {
Node* it = head;
for (std::size_t i = 1; i < size_; ++i) {
it = it->next;
}
return it->data;
}
public:
/**
* @stl风格容器支持,与stl相同.故不写注释
*
*/
iterator begin() noexcept { return iterator(head); }
iterator end() noexcept { return iterator(nullptr); }
const_iterator begin() const { return iterator(head); }
const_iterator end() const { return iterator(nullptr); }
const_iterator cbegin() const { return const_iterator(head); }
const_iterator cend() const { return const_iterator(nullptr); }
reverse_iterator rbegin() { iterator iter = begin(); std::advance(iter, size_ - 1); return reverse_iterator(iter); }
reverse_iterator rend() { return reverse_iterator(iterator(nullptr)); }
reverse_iterator rcbegin() const { iterator iter = begin(); std::advance(iter, size_ - 1); return const_reverse_iterator(iter); }
reverse_iterator rcend() const { return const_reverse_iterator(const_iterator(nullptr)); }
const_reverse_iterator crbegin() const { iterator iter = begin(); std::advance(iter, size_ - 1); return const_reverse_iterator(iter); }
const_reverse_iterator crend() const { return const_reverse_iterator(const_iterator(nullptr)); }
private:
using List = LinkedList<T>;
struct Node {
explicit Node(const T& data) : data{ data }, list{nullptr} {}
Node(const T& data, List* listref) : data{ data }, list{ listref } {}
Node(const T& data, Node* next, List* listref) : data{ data }, next{ next }, list{listref}{}
~Node() { list = nullptr; };
/*
* 臨時解決方式,存放鏈表指針獲取begin
* stl實現是保存了prev_,因爲我已經實現了雙向鏈表.故使用此方式
* 除了創建節點請不要再任何地方修改,也不能加上const(菜)
*/
/*const*/List* list;
T data;
Node* next{nullptr};
public:
Node* operator--() { difference_type diff = std::distance(list->begin(), iterator(this)); iterator iter = list->begin(); iter = advance(iter, diff - 1); return const_cast<Node*>(iter->getPtr());; }/*return const_cast<Node*>(iter.getiterptr()); */
Node* operator--(int junk) { difference_type diff = std::distance(list->begin(), iterator(this)); iterator iter = list->begin(); iter = advance(iter, diff - 1); return const_cast<Node*>(iter->getPtr());; }
Node* operator--() const { difference_type diff = std::distance(list->begin(), const_iterator(&this)); const_iterator iter = list->begin(); iter = advance(iter, diff - 1); return const_cast<Node*>(iter.getPtr()); }
Node* operator--(int junk) const { difference_type diff = std::distance(list->begin(), const_iterator(&this)); const_iterator iter = list->begin(); iter = advance(iter, diff - 1); return const_cast<Node*>(iter.getPtr()); }
Node* operator++() { return this->next; }
Node* operator++(int junk) { return this->next; }
Node* operator++() const { return this->next; }
Node* operator++(int junk) const { return this->next; }
const T& operator*() const { return this->data; }
Node* operator->() const { return this; }
public:
typedef T value_type;
typedef value_type& reference;
private:
Node* getPtr() { return this; }
iterator advance(iterator iter, difference_type diff) { if (diff < 0) return iterator(nullptr); std::advance(iter, diff); return iter; }
const_iterator advance(const_iterator iter, difference_type diff) { if (diff < 0) return const_iterator(nullptr); std::advance(iter, diff); return iter; }
};
static Node* copy_list(const Node* other_head) {
auto new_tail = new Node(other_head->data);
auto new_head = new_tail;
auto it = other_head->next;
while (it != nullptr) {
new_tail->next = new Node(it->data);
new_tail = new_tail->next;
it = it->next;
}
return new_head;
}
Node* head{nullptr};
std::size_t size_{0u};
};
} // namespace VihoStructures
/* list trait */
template <>
const bool traits::is_list<VihoStructures::LinkedList>::value = true;
/* name trait */
template <>
const std::string traits::type<VihoStructures::LinkedList>::name = "LinkedList";
#endif
|
014d3d08161905d39c97704194f16870b936fe31
|
9310f0f5d5108612ef79a5f3d501b29cb8676202
|
/main.cpp
|
fb448776912eff4e76fc93a51bd6c2742d97667d
|
[] |
no_license
|
Sciencethebird/Cpp_Note
|
b4ef30a49702d44390a13c72b1a788f198e4133b
|
5f32569f7d04001862c3edeba125c0b7c9d1ee2b
|
refs/heads/main
| 2023-03-07T12:03:06.069862
| 2021-02-20T09:45:50
| 2021-02-20T09:45:50
| 339,992,719
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 687
|
cpp
|
main.cpp
|
#include<array>
#include<iostream>
#include<string>
/**
* std::array is the C++ way of using static array (i.e. fixed sized array)
* it's basically C array (same properties, speed, ..), but it helps you keep track of array size
*/
template<class TYPE, std::size_t SIZE>
void print_array(std::array<TYPE, SIZE>& arr) {
for(auto& e : arr) {
std::cout << e << " ";
}
std::cout << std::endl;
}
int main(){
// basic usage of std::array
std::array<std::string, 3> a = {"a", "ab", "abc"};
std::cout << "element 1 of a" << a[1] << std::endl;
std::cout << "size of a " << a.size() << std::endl;
// how to pass a std:::array into function
print_array(a);
return 0;
}
|
d73130cccb2dcca8a5b7772a90dcb949dd146ce7
|
744c38647f9ad6ef13da1c1be711491cfdc4effe
|
/pessoa7.hpp
|
9b1d8201aba1f680edd7d99b84796e86a5a9604e
|
[] |
no_license
|
pauloatavila/estrutura_dados_II
|
e041a29431d8ba03bbc9c2f6804d508663fa4856
|
97f79548618120cf062343425f65a1b94c19b15c
|
refs/heads/master
| 2019-05-16T13:48:55.304533
| 2016-06-16T00:44:20
| 2016-06-16T00:44:20
| 55,104,997
| 0
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 11,893
|
hpp
|
pessoa7.hpp
|
#include <iostream>
#include <string>
using namespace std;
// class PessoaTeste {
// protected:
// int variavel;
// public:
// PessoaTeste();
// void Aula();
// };
//
// PessoaTeste *raiz_teste = NULL;
//
// void PessoaTeste::Aula()
// {
// raiz_teste = NULL;
//
// };
class Pessoa {
public:
string nome;
int idade;
Pessoa *filhoEsquerda;
Pessoa *filhoDireita;
Pessoa *pai;
int balancD;
int balancE;
public:
Pessoa(){
nome = "NULL";
idade = 0;
};
Pessoa(string name, int age){
nome = name;
idade = age;
filhoDireita = NULL;
filhoEsquerda = NULL;
balancD = 0;
balancE = 0;
};
~Pessoa(){
cout << "IML sendo acionado..." << endl;
};
void inserirFilho(Pessoa *novo, Pessoa** raiz){
if (novo->idade > this->idade){
if (this->filhoDireita == NULL){
this->filhoDireita = novo;
novo->pai = this;
(*raiz)->profundidadeNos();
(*raiz)->verificardDesbalanceamento(raiz);
} else {
this->filhoDireita->inserirFilho(novo, raiz);
}
} else {
if (this->filhoEsquerda == NULL){
this->filhoEsquerda = novo;
novo->pai = this;
(*raiz)->profundidadeNos();
(*raiz)->verificardDesbalanceamento(raiz);
} else {
this->filhoEsquerda->inserirFilho(novo, raiz);
}
}
}
void caminhoPreOrdem (){
cout << " " << this->nome << endl << "BalE: "<< this->balancE << " BalD: "<< this->balancD << " Valor: " << this->balancD-this->balancE << endl;
if (filhoEsquerda != NULL){
this->filhoEsquerda->caminhoPreOrdem();
}
if (filhoDireita != NULL){
this->filhoDireita->caminhoPreOrdem();
}
}
void caminhoOrdem (){
if (filhoEsquerda != NULL){
this->filhoEsquerda->caminhoOrdem();
}
cout << " " << this->nome;
if (filhoDireita != NULL){
this->filhoDireita->caminhoOrdem();
}
}
void caminhoPosOrdem (){
if (filhoEsquerda != NULL){
this->filhoEsquerda->caminhoPosOrdem();
}
if (filhoDireita != NULL){
this->filhoDireita->caminhoPosOrdem();
}
cout << " " << this->nome;
}
void caminhoPosOrdemDelete (){
if (filhoEsquerda != NULL){
this->filhoEsquerda->caminhoPosOrdemDelete();
}
if (filhoDireita != NULL){
this->filhoDireita->caminhoPosOrdemDelete();
}
delete this;
}
void deleteEscolhido (Pessoa ** apagar, Pessoa ** raiz)
{
if (filhoDireita == NULL && filhoEsquerda == NULL) deleteNoFolha(apagar, raiz);
else if (filhoDireita == NULL) delete1FilhoD(apagar, raiz);
else if (filhoEsquerda == NULL) delete1FilhoE(apagar, raiz);
else delete2Filhos(apagar, raiz);
}
void deleteNoFolha (Pessoa ** apagar, Pessoa ** raiz){
if ((*apagar)->pai != NULL)
{
if ((*apagar)->pai->filhoDireita == (*apagar))
{
(*apagar)->pai->filhoDireita = NULL;
delete (*apagar);
}
else
{
(*apagar)->pai->filhoEsquerda = NULL;
delete (*apagar);
}
}
else { //caso não tenha pai
delete (*apagar);
(*raiz) = NULL;
}
}
void delete1FilhoD (Pessoa ** apagar, Pessoa ** raiz){
if ((*apagar) != (*raiz)){
if ((*apagar)->pai->filhoDireita == (*apagar))
{
(*apagar)->pai->filhoDireita = (*apagar)->filhoEsquerda;
(*apagar)->filhoEsquerda->pai = (*apagar)->pai;
delete (*apagar);
}
else
{
(*apagar)->pai->filhoEsquerda = (*apagar)->filhoEsquerda;
(*apagar)->filhoEsquerda->pai = (*apagar)->pai;
delete (*apagar);
}
} else {
(*raiz) = (*apagar)->filhoEsquerda;
(*apagar)->filhoEsquerda->pai = NULL;
delete (*apagar);
}
}
void delete1FilhoE (Pessoa ** apagar, Pessoa ** raiz){
if ((*apagar) != (*raiz)){
if ((*apagar)->pai->filhoDireita == (*apagar))
{
(*apagar)->pai->filhoDireita = (*apagar)->filhoDireita;
(*apagar)->filhoDireita->pai = (*apagar)->pai;
delete (*apagar);
}
else
{
(*apagar)->pai->filhoEsquerda = (*apagar)->filhoDireita;
(*apagar)->filhoDireita->pai = (*apagar)->pai;
delete (*apagar);
}
} else {
(*raiz) = (*apagar)->filhoDireita;
(*apagar)->filhoDireita->pai = NULL;
delete (*apagar);
}
}
void delete2Filhos (Pessoa ** apagar, Pessoa ** raiz){
Pessoa *aux;
if ((*apagar) != (*raiz)){
aux = (*apagar)->filhoDireita;
if ((*apagar)->pai->filhoEsquerda == (*apagar)){
while (aux->filhoEsquerda != NULL){
aux = aux->filhoEsquerda;
}
if (aux == (*apagar)->filhoDireita) aux->pai->filhoDireita = aux->filhoDireita;
else aux->pai->filhoEsquerda = aux->filhoDireita;
if (aux->filhoDireita != NULL){
aux->filhoDireita->pai = aux->pai;
}
aux->pai = (*apagar)->pai;
(*apagar)->pai->filhoEsquerda = aux;
aux->filhoDireita = (*apagar)->filhoDireita;
aux->filhoEsquerda = (*apagar)->filhoEsquerda;
(*apagar)->filhoDireita->pai = aux;
(*apagar)->filhoEsquerda->pai = aux;
delete (*apagar);
} else {
while (aux->filhoEsquerda != NULL){
aux = aux->filhoEsquerda;
}
if (aux == (*apagar)->filhoDireita) aux->pai->filhoDireita = aux->filhoDireita;
else aux->pai->filhoEsquerda = aux->filhoDireita;
if (aux->filhoDireita != NULL){
aux->filhoDireita->pai = aux->pai;
}
aux->pai = (*apagar)->pai;
(*apagar)->pai->filhoDireita = aux;
aux->filhoDireita = (*apagar)->filhoDireita;
aux->filhoEsquerda = (*apagar)->filhoEsquerda;
(*apagar)->filhoDireita->pai = aux;
(*apagar)->filhoEsquerda->pai = aux;
delete (*apagar);
}
} else {
aux = (*raiz)->filhoDireita;
while (aux->filhoEsquerda != NULL){
aux = aux->filhoEsquerda;
}
if (aux == (*apagar)->filhoDireita) aux->pai->filhoDireita = aux->filhoDireita;
else aux->pai->filhoEsquerda = aux->filhoDireita;
if (aux->filhoDireita != NULL){
aux->filhoDireita->pai = aux->pai;
}
(*raiz) = aux;
(*raiz)->pai = NULL;
(*raiz)->filhoDireita = (*apagar)->filhoDireita;
(*raiz)->filhoEsquerda = (*apagar)->filhoEsquerda;
(*apagar)->filhoDireita->pai = aux;
(*apagar)->filhoEsquerda->pai = aux;
delete (*apagar);
}
}
Pessoa * buscar (int idade){
if (idade == this->idade) return this;
else {
if (idade > this->idade && filhoDireita != NULL) this->filhoDireita->buscar(idade);
else {
if (idade < this->idade && filhoEsquerda != NULL) this->filhoEsquerda->buscar(idade);
else return NULL;
}
}
}
int profundidadeNos(){
balancE = 0;
balancD = 0;
if (filhoEsquerda != NULL) {
balancE = filhoEsquerda->profundidadeNos()+1;
}
if (filhoDireita != NULL) {
balancD = filhoDireita->profundidadeNos()+1;
}
return (balancE > balancD) ? balancE : balancD;
}
void verificardDesbalanceamento(Pessoa** raiz){
int a;
a = this->balancD - this->balancE;
if(a < -1 || a > 1){
cout << "Desbalanceada: " << this->idade << endl;
chamarBalanceamento(a, this, raiz);
return;
}
if(filhoEsquerda != NULL){
this->filhoEsquerda->verificardDesbalanceamento(raiz);
}
if(filhoDireita != NULL){
this->filhoDireita->verificardDesbalanceamento(raiz);
}
}
void chamarBalanceamento(int t, Pessoa *pessoa, Pessoa** raiz){
int tipoFilho;
if(t < 0){
tipoFilho = pessoa->filhoEsquerda->balancD - pessoa->filhoEsquerda->balancE;
if(tipoFilho <= 0){
rotaDireita(pessoa, raiz);
}else{
rotaDuplaEsquerda(pessoa, raiz);
}
}else{
tipoFilho = pessoa->filhoDireita->balancD - pessoa->filhoDireita->balancE;
if(tipofilho >= 0){
rotaEsquerda(pessoa, raiz);
}else{
rotaDuplaDireita(pessoa, raiz);
}
}
(*raiz)->profundidadeNos();
}
void rotaDireita(Pessoa* pessoa, Pessoa** raiz){
if(pessoa->pai == NULL){
(*raiz) = pessoa->filhoEsquerda;
pessoa->filhoEsquerda = (*raiz)->filhoDireita;
(*raiz)->filhoDireita = pessoa;
(*raiz)->pai = NULL;
pessoa->pai = (*raiz);
if(pessoa->filhoEsquerda != NULL){
pessoa->filhoEsquerda->pai = pessoa;
}
}else{
Pessoa* pai2 = pessoa->pai;
Pessoa* aux = pessoa->filhoEsquerda;
if(pai2->filhoEsquerda == pessoa){
pai2->filhoEsquerda = aux;
}else{
pai2->filhoDireita = aux;
}
aux->pai = pai2;
pessoa->filhoEsquerda = aux->filhoDireita;
aux->filhoDireita = pessoa;
pessoa->pai = aux;
if(pessoa->filhoEsquerda != NULL){
pessoa->filhoEsquerda->pai = pessoa;
}
}
}
void rotaEsquerda(Pessoa* pessoa, Pessoa** raiz){
if(pessoa->pai == NULL){
(*raiz) = pessoa->filhoDireita;
pessoa->filhoDireita = (*raiz)->filhoEsquerda;
(*raiz)->filhoEsquerda = pessoa;
(*raiz)->pai = NULL;
pessoa->pai = (*raiz);
if(pessoa->filhoDireita != NULL){
pessoa->filhoDireita->pai = pessoa;
}
}else{
Pessoa* pai2 = pessoa->pai;
Pessoa* aux = pessoa->filhoDireita;;
if(pai2->filhoEsquerda == pessoa){
pai2->filhoEsquerda = aux;
}else{
pai2->filhoDireita = aux;
}
aux->pai = pai2;
pessoa->filhoDireita = aux->filhoEsquerda;
aux->filhoEsquerda = pessoa;
pessoa->pai = aux;
if(pessoa->filhoDireita != NULL){
pessoa->filhoDireita->pai = pessoa;
}
}
}
void rotaDuplaDireita(Pessoa* pessoa, Pessoa** raiz){
rotaDireita(pessoa->filhoDireita, raiz);
rotaEsquerda(pessoa, raiz);
}
void rotaDuplaEsquerda(Pessoa* pessoa, Pessoa** raiz){
rotaEsquerda(pessoa->filhoEsquerda, raiz);
rotaDireita(pessoa, raiz);
}
string getNome(){
return nome;
};
void setNome(string name){
nome = name;
};
int getIdade(){
return idade;
};
void setIdade(int ida){
idade = ida;
};
void setPai(){
pai = NULL;
};
};
class PessoaFisica: public Pessoa {
private:
string cpf;
public:
PessoaFisica(){
cpf = "NULL";
};
PessoaFisica(string cadastroF){
cpf = cadastroF;
};
~PessoaFisica(){
cout << "Cadastro Fisico sendo excluido" << endl << endl;
};
string getCPF(){
return cpf;
};
void setCPF(string cadastroF){
cpf = cadastroF;
};
};
class PessoaJuridica: public Pessoa {
private:
string cnpj;
public:
PessoaJuridica(){
cnpj = "NULL";
};
PessoaJuridica(string cadastroJ){
cnpj = cadastroJ;
};
~PessoaJuridica(){
cout << "Cadastro Juridico sendo excluido" << endl << endl;
};
string getCPF(){
return cnpj;
};
void setCPF(string cadastroJ){
cnpj = cadastroJ;
};
};
|
cfa6c887774f5ad472a7fb66015671d909f0c5b3
|
307a9400a57d2e6a4812b4ce5f86cb63dc864459
|
/Minimum_wskazniki/main.cpp
|
929cb2272a3c323ea945e1d4e9b9879aa5cd52a3
|
[] |
no_license
|
Fr3di/CppApps
|
01befba9f9518b8ff4ee5ed8eb901c7b4c408ec4
|
b25e96ae956b9728b5dea6c8218c97a6757de613
|
refs/heads/master
| 2021-01-10T17:25:25.260266
| 2016-02-21T12:54:02
| 2016-02-21T12:54:02
| 52,206,440
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 549
|
cpp
|
main.cpp
|
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
int rozm;
cout << "Podaj rozmiar tablicy: ";
cin >> rozm;
double tab[rozm];
for(double *wsktab = tab; wsktab < tab + rozm ; wsktab++)
{
*wsktab = (double) rand() / RAND_MAX;
}
double *min = tab;
for(double *wsk = tab+1; wsk < tab + rozm; wsk++)
{
cout << wsk << " " << *wsk << endl;
if( *wsk < *min) min = wsk;
}
cout << endl << endl << *min;
return 0;
}
|
ecb169ef32dcdd6204141eded9e78eb7b803a7ab
|
7844d2b9027bd706f95c9539e9029916a4f7681d
|
/LAB2/_1_m/_1_m.ino
|
8693a4b7f23f75111a02b9ff1e0a9b8ea2aed0a9
|
[] |
no_license
|
mingzz/UW_EE299
|
f8035d014c99f27232b34eced676ec5231c51711
|
6661cfe1180c191441869d67ff5ad775db479d37
|
refs/heads/master
| 2021-01-09T20:14:02.786353
| 2016-08-04T11:28:52
| 2016-08-04T11:28:52
| 62,349,829
| 0
| 1
| null | 2016-07-14T23:11:06
| 2016-07-01T00:08:52
|
Arduino
|
UTF-8
|
C++
| false
| false
| 2,283
|
ino
|
_1_m.ino
|
#include <Wire.h>
// working variables
//-----------------------------------------------------------------
int inByte = 0;
char b[5]; // index 0 is on the lhs
int x = 0;
int y = 0;
char op;
void setup()
{
Wire.begin(); // join i2c bus (address optional for master)
// start serial port at 9600 bps and wait for port to open:
Serial.begin(9600);
while (!Serial)
{
; // wait for serial port to connect. Needed for Leonardo only
}
establishContact(); // send a byte to establish contact until receiver responds
}
void loop()
{
// if we get a valid byte, read and display stuff:
if (Serial.available() > 0)
{
// read up to 3 characters - put them into array b
Serial.readBytesUntil('\n', b, 4);
// convert char to int
x = b[0]-'0';
// print operand 1
Serial.print(x);
op = b[1];
// print operator
Serial.print(op);
// convert char to int
y = b[2]-'0';
// print operand 2
Serial.println(y);
// calculate
int result = Calc(x,y,op);
// print
Serial.print("The result is : ");
Serial.println(result);
// i2c transmission
Trans(x,y,op,result);
delay(100);
}
}
// calculate integar data
int Calc(const int x, const int y, const char op)
{
if (op == '+')
return x+y;
else if(op == '-')
return x-y;
else if(op == '*')
return x*y;
else if(op == '/')
return x/y;
}
// establish serial contact
void establishContact() {
while (Serial.available() <= 0) {
Serial.println("0,0,0"); // send an initial string
delay(300);
}
}
// tansmit data to the slave
int Trans(const int x,const int y,const char op,const int result){
// sign bit is needed to inform the slave
int x_signal=0;
int y_signal=0;
Wire.beginTransmission(4); // transmit to device #4
// set sign bit
if(x<0)
{
x_signal=1;
}
if(y<0)
{
y_signal=1;
}
int result_signal = (result<0) ? 1 : 0;
Wire.write(x);
Wire.write(y);
Wire.write(result);
//signal of x, 1 means negative
Wire.write(x_signal);
//signal of y
Wire.write(y_signal);
//signal of result
Wire.write(result_signal);
Wire.write(op);
Wire.endTransmission(); // stop transmitting
}
|
991688d3460ebcc505d873ad65f710c3178e6724
|
7b988ce291294f6627bb7362a3bffa2fafedd9f7
|
/ReadMpuDev.cpp
|
3a459bb6246b97fdb1985038c6194c4c68902b00
|
[] |
no_license
|
MiaoDX/ReadMpuDev_with_RTIMULib
|
2d4f08d192a821c62beb70fa3dd8069bee1a2990
|
9b1ef699c4b1e396942bed26ed548a78d78345a3
|
refs/heads/master
| 2021-01-01T03:47:26.123706
| 2019-01-19T16:22:26
| 2019-01-19T16:22:26
| 58,058,239
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 3,473
|
cpp
|
ReadMpuDev.cpp
|
#include "ReadMpuDev.h"
//class mpuDev
int mpuDev::mpuDevInit(){
// Using RTIMULib here allows it to use the .ini file generated by RTIMULibDemo.
// Or, you can create the .ini in some other directory by using:
// RTIMUSettings *settings = new RTIMUSettings("<directory path>", "RTIMULib");
// where <directory path> is the path to where the .ini file is to be loaded/saved
settings = new RTIMUSettings("RTIMULib");
imu = RTIMU::createIMU(settings);
if ((imu == NULL) || (imu->IMUType() == RTIMU_TYPE_NULL)) {
printf("No IMU found\n");
return -1;
}
// This is an opportunity to manually override any settings before the call IMUInit
// set up IMU
if (!imu->IMUInit()) { //失败
cerr << "init imu failed" << endl;
return -2;
}
// this is a convenient place to change fusion parameters
imu->setSlerpPower(0.02);
imu->setGyroEnable(true);
imu->setAccelEnable(true);
imu->setCompassEnable(true);
return 0;
}
void mpuDev::mpuDevReadForever(){
int sampleCount = 0;
int sampleRate = 0;
uint64_t rateTimer;
uint64_t displayTimer;
uint64_t now;
// set up for rate timer
rateTimer = displayTimer = RTMath::currentUSecsSinceEpoch();
// now just process data
while (true) {
// poll at the rate recommended by the IMU
usleep(imu->IMUGetPollInterval() * 1000); //mpuDev 建议是 4ms 取一次数据,也就是 250 次每秒,我们的程序要求每秒钟 100 个数据是可以达到的
while (imu->IMURead()) {
RTIMU_DATA imuData = imu->getIMUData();
sampleCount++;
now = RTMath::currentUSecsSinceEpoch();
// update 400 times per second 也就是间隔 2.5*1000 us 读一次
if ((now - displayTimer) > 2500) {
//printf("Sample rate %d: %s\r", sampleRate, RTMath::displayDegrees("", imuData.fusionPose));
//cout << imuData.fusionPose.z() * RTMATH_RAD_TO_DEGREE << endl;
//fflush(stdout);
mpuAngle.mpuDevAngleBufferUpdate(RTVector3_T<RTFLOAT>(imuData.fusionPose.x() * RTMATH_RAD_TO_DEGREE, imuData.fusionPose.y() * RTMATH_RAD_TO_DEGREE, imuData.fusionPose.z() * RTMATH_RAD_TO_DEGREE));
displayTimer = now;
}
// update rate every second
if ((now - rateTimer) > 1000000) {
sampleRate = sampleCount;
sampleCount = 0;
rateTimer = now;
}
}
}
}
void mpuDev::mpuDevrun(){ //开启轮询,将其 detach 以保证会不停更新 fifo,且可以继续进行其他操作
std::thread t2(&mpuDev::mpuDevReadForever, this);
t2.detach();
}
//class mpuDevAngle
int mpuDevAngle::mpuDevAngleInit(int _bufferSize /*= 20*/) {
bufferSize = _bufferSize;
mpubuffer.resize(bufferSize);
return 0;
}
void mpuDevAngle::mpuDevAngleBufferUpdate(RTVector3_T<RTFLOAT> newAngle) {
lock_guard<mutex> lock(accessBufferMutex);
mpubuffer.pop_front();
mpubuffer.push_back(newAngle);
}
;
inline RTVector3_T<RTFLOAT> mpuDevAngle::CalculateAvg(list<RTVector3_T<RTFLOAT>> &callist)
{
RTVector3_T<RTFLOAT> avg(0,0,0);
list<RTVector3_T<RTFLOAT>>::iterator it;
for (it = callist.begin(); it != callist.end(); it++) {
avg += *it;
//cout << " " << *it ;
}
avg.setX(avg.x() / callist.size());
avg.setY(avg.y() / callist.size());
avg.setZ(avg.z() / callist.size());
return avg;
}
//当前值:按 yaw 进行排序, sort(CompZ())
int mpuDevAngle::mpuDevAnglePresentUpdate() {
lock_guard<mutex> lock(accessBufferMutex);
presentAngle = CalculateAvg(mpubuffer);
return 0;
}
RTVector3_T<RTFLOAT> mpuDevAngle::getAnglePresent() {
return presentAngle;
}
|
32ef094b36ef1ab6c5ddcb491510a5b2d27e6a8b
|
13a697e6d41e10ec18f5a1ff0e2d25e386e748f7
|
/transformation.h
|
a42101f91c41d47f7725464900e29a52ab215fa5
|
[] |
no_license
|
ZitingShen/Raytracer
|
587259b8856154229d9b61f111d2f21565086ab1
|
b23696dde9e95348c5c3f61b2d6309eb0b57e914
|
refs/heads/master
| 2021-01-20T07:02:11.934759
| 2016-12-16T12:17:42
| 2016-12-16T12:17:42
| 75,427,640
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 341
|
h
|
transformation.h
|
#ifndef TRANSFORMATION_H
#define TRANSFORMATION_H
#include <glm/glm.hpp>
typedef enum _transformation_type{SCALE, TRANSLATE} Transformation_type;
class Transformation{
public:
int id;
Transformation_type type;
glm::vec3 description;
Transformation(Transformation_type type, float x, float y, float z, int id);
};
#endif
|
c6e162ae7933cc3bfca9f7dbebcb83116eeca452
|
38810b445108b40d04551e2d8d3cf1ee7c119333
|
/SubgraphIsomorphism/triangle/code/cpp/code/utils/mmUtil.h
|
2aae3bb0ee9c3de5d0a9e57c0a7dc6406f78d4a6
|
[
"BSD-2-Clause",
"MIT"
] |
permissive
|
ffrankies/GraphChallenge
|
2c7bce64a6e2903481ab2e460794f551d5327979
|
d98365f90cca4741e2a66d3cbdcb2dae3d123697
|
refs/heads/master
| 2023-07-08T02:54:11.986630
| 2020-06-23T19:52:10
| 2020-06-23T19:52:10
| 170,616,919
| 0
| 2
|
MIT
| 2020-06-23T19:52:13
| 2019-02-14T02:54:41
|
Jupyter Notebook
|
UTF-8
|
C++
| false
| false
| 2,585
|
h
|
mmUtil.h
|
//////////////////////////////////////////////////////////////////////////////
// //
// File: util.h //
// Project: miniTri //
// Author: Michael Wolf //
// //
// Description: //
// Header file for utilities. //
//////////////////////////////////////////////////////////////////////////////
#ifndef SUTIL_H
#define SUTIL_H
#include <fstream>
#include <iostream>
#include "mmio.h"
#include "miniTriDefs.h"
//////////////////////////////////////////////////////////////////////////////
// Writes the matrix market banner to a file
//////////////////////////////////////////////////////////////////////////////
void writeMMBanner(std::ofstream &ofs, int m, int n, int nnz);
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
void buildEdgeListFromMM(const char *fname, int &numVerts, int &numEdges,
std::vector<edge_t> &edgeList);
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
void buildDistEdgeListFromMM(const char *fname, int worldsize, int myrank,
int &numGlobVerts, int &numLocVerts, int &startVert,
std::vector<edge_t> &edgeList);
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
void partitionMatrix(int gNumRows,int P, int rank, int &locNumRows,
int &startrow);
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
void checkMatrixType(const MM_typecode &matcode);
//////////////////////////////////////////////////////////////////////////////
#endif
|
8784924eb4581edc8a038ac207187c8181dfff4f
|
fc140464f8e6e7df89201fb80a8a79c59f419dcd
|
/include/AST/ASTNodes/BaseNodes/BasicBlockNode.h
|
3cac8c59466ad071974a8f830ccb49ad5306a3e4
|
[] |
no_license
|
iali17/gazprea-ourapplestory
|
fccdda460677da7ef213624ef4098546cb7cb26c
|
63eec221734e4e45f2f1b526c262b5c9d70560d0
|
refs/heads/master
| 2020-04-16T21:21:56.383552
| 2018-12-07T20:49:18
| 2018-12-07T20:49:18
| 165,922,836
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 389
|
h
|
BasicBlockNode.h
|
//
// Created by kyle on 22/10/18.
//
#ifndef GAZPREABASE_BASICBLOCKNODE_H
#define GAZPREABASE_BASICBLOCKNODE_H
#include "ASTNode.h"
#include <vector>
class BasicBlockNode : public ASTNode {
public:
std::vector<ASTNode *> *nodes;
explicit BasicBlockNode(int line);
explicit BasicBlockNode(std::vector<ASTNode *> *nodes, int line);
};
#endif //GAZPREABASE_BASICBLOCKNODE_H
|
56cc98af5ea7f81b18dc9414fe7c81699f19101d
|
1a20961af3b03b46c109b09812143a7ef95c6caa
|
/Book/Windows Graphics Programming Win32 GDI and DirectDraw/Src/include/listview.h
|
5ac10672fe32f176abcb9d22e77447b20c81d9af
|
[] |
no_license
|
JetAr/ZNginx
|
eff4ae2457b7b28115787d6af7a3098c121e8368
|
698b40085585d4190cf983f61b803ad23468cdef
|
refs/heads/master
| 2021-07-16T13:29:57.438175
| 2017-10-23T02:05:43
| 2017-10-23T02:05:43
| 26,522,265
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,278
|
h
|
listview.h
|
#pragma once
//-----------------------------------------------------------------------------------//
// Windows Graphics Programming: Win32 GDI and DirectDraw //
// ISBN 0-13-086985-6 //
// //
// Written by Yuan, Feng www.fengyuan.com //
// Copyright (c) 2000 by Hewlett-Packard Company www.hp.com //
// Published by Prentice Hall PTR, Prentice-Hall, Inc. www.phptr.com //
// //
// FileName : listview.h //
// Description: List view wrapper //
// Version : 1.00.000, May 31, 2000 //
//-----------------------------------------------------------------------------------//
#include <commctrl.h>
// List View
class KListView
{
HWND m_hWnd;
HIMAGELIST hImage_Normal, hImage_Small, hImage_State;
int nRow;
public:
HWND GetHWND(void) const
{
return m_hWnd;
}
KListView()
{
m_hWnd = NULL;
hImage_Normal = NULL;
hImage_Small = NULL;
hImage_State = NULL;
nRow = -1;
}
void DeleteAll(void)
{
nRow = -1;
ListView_DeleteAllItems(m_hWnd);
}
void FromDlgItem(HWND hWnd, int id);
void AddIcon(int iImageList, HINSTANCE hInst, int iIcon);
void AddColumn(int col, int width, const TCHAR *title, BOOL left=TRUE);
void AddItem(int col, const TCHAR *text, int iImage=-1);
void AddItem(int col, int value, int iImage=-1);
int GetNextItem(int from, int option)
{
return ListView_GetNextItem(m_hWnd, from, option);
}
void GetItemText(int item, int subitem, TCHAR *rslt, int maxlen)
{
ListView_GetItemText(m_hWnd, item, subitem, rslt, maxlen);
}
void SetItem(int row, int col, int value);
HWND Create(HWND hParent, int id, int left, int top, int width, int height, HINSTANCE hInst);
};
|
38cde1ae65a0f1de511ce4f22ebba6b118f65546
|
decf767e0a6580c09d6a26c224ec5be8cf4d3eb2
|
/Utunes-Final-Project-Phase3/src/Session.cpp
|
a7b94d1231576428bd0aca1bb100fc484423aecc
|
[] |
no_license
|
daniel-saeedi/AdvancedProgrammingUT
|
d3dffe108d22e252bf06e292b6aae58d6a29351a
|
8c146fe1cd77b7b545659a0ba21a2d7f15e1d4c7
|
refs/heads/master
| 2023-03-12T02:34:11.129714
| 2021-02-20T21:42:27
| 2021-02-20T21:42:27
| 301,691,001
| 2
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,062
|
cpp
|
Session.cpp
|
#include <algorithm>
#include "Session.hpp"
#include "Exception/EmptyException.hpp"
bool song_compare_by_id(Song *song1,Song *song2)
{
return song1->get_id() < song2->get_id();
}
Session::Session(User *_user)
{
user = _user;
songs_filter_status = false;
for(int i = 0;i < FILTERS_SIZE;i++)
{
filters.push_back(nullptr);
}
}
Session::~Session()
{
for(int i = 0;i < filters.size();i++)
delete filters[i];
}
bool Session::is_songs_filtered()
{
return songs_filter_status;
}
void Session::show_songs(std::vector<Song*> songs)
{
AndCriteria *and_criteria = new AndCriteria(filters);
std::vector<Song*> filtered_songs = and_criteria->meet_criteria(songs);
delete and_criteria;
sort(filtered_songs.begin(),filtered_songs.end(),song_compare_by_id);
if(filtered_songs.size() == 0) throw EmptyException();
for(int i = 0;i < filtered_songs.size();i++)
{
filtered_songs[i]->print_info();
}
}
std::vector<Song*> Session::get_filtered_songs(std::vector<Song*> songs)
{
AndCriteria *and_criteria = new AndCriteria(filters);
std::vector<Song*> filtered_songs = and_criteria->meet_criteria(songs);
delete and_criteria;
if(filters.size() == 0)
return songs;
else
return filtered_songs;
}
void Session::add_artist_filter(std::string artist)
{
songs_filter_status = true;
remove_filter(ARTIST_INDEX);
filters[ARTIST_INDEX] = new ArtistCriteria(artist);
}
void Session::add_public_year_filter(int min,int max)
{
songs_filter_status = true;
if(min <= max) remove_filter(PUBLISH_YEAR_INDEX);
filters[PUBLISH_YEAR_INDEX] = new PublishYearCriteria(min,max);
}
void Session::add_likes_filter(int min,int max)
{
songs_filter_status = true;
if(min <= max ) remove_filter(PUBLISH_YEAR_INDEX);
filters[LIKE_INDEX] = new LikesCriteria(min,max);
}
void Session::remove_filter(int index)
{
if(filters[index] != nullptr)
{
Criteria *previous = filters[index];
filters[index] = nullptr;
delete previous;
}
}
void Session::delete_filters()
{
songs_filter_status = false;
for(int i = 0;i < filters.size();i++)
{
remove_filter(i);
}
}
|
1b078ed84cfc31446760ce5e8acee26434fd71b7
|
f2709cb67d6c2f46a6e6e536fd2e1749365511bf
|
/compiler.cpp
|
2ad3e0c26ddfbf3ff1fbd279e8608aadbc011e40
|
[] |
no_license
|
gilm501/PcodeCompiler
|
3eec271a777c0ceff62dbb3f493eb6c1667b08f6
|
0eb04758870f759a13111306d1547505bf3a6393
|
refs/heads/master
| 2021-09-01T23:32:28.507873
| 2017-12-29T07:01:36
| 2017-12-29T07:01:36
| 113,087,333
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 35,305
|
cpp
|
compiler.cpp
|
#include <iostream>
#include <algorithm>
#include <string>
#include <fstream>
#include <vector>
#include <stack>
#include <stdio.h>
using namespace std;
// Abstract Syntax Tree
class AST
{
string _value;
AST* _left; // can be null
AST* _right; // can be null
public:
AST(string value, AST* right, AST* left) {
_value = value;
_left = left;
_right = right;
}
//getters
AST* getRight() {
return this->_right;
}
AST* getLeft() {
return this->_left;
}
string getVal() {
return this->_value;
}
//create tree
static AST* createAST(ifstream& input) {
if (!(input))
return nullptr;
string line;
getline(input, line);
if (line == "~")
return nullptr;
AST* left = createAST(input);
AST* right = createAST(input);
return new AST(line, right, left);
}
};
class Range {
public:
int from;
int to;
Range(int _from, int _to) {
from = _from;
to = _to;
}
};
//variable class
class Variable {
public:
//basic
string name;
string type;
int size = -1;
//address
string recType = "-";
int nd = 0;
int offset = 0;
Variable* parentFunc;
//suppor function reference
Variable* funcReference = nullptr;
//support functions
int paramsSize = 0;
int localVarSize = 0;
vector<Variable*> params;
//pointer support
string pointerTo;
//array support
vector<Range> arrayRanges;
int subPart = 0;
int g = 0;
//record support
int numSubData = 0;
};
//symbol table
class SymbolTable {
private:
//current address free
vector<Variable*> varsSymboleTable; // vectore of all current variables
int currentOffset = 5;
public:
static SymbolTable* returnSymbolTable() {
static SymbolTable* allSymbolsTable;
if(allSymbolsTable == nullptr) {
allSymbolsTable = new SymbolTable();
}
return allSymbolsTable;
}
//return vaaiable
Variable* returnVar(string name,Variable* currentSearch) {
if (currentSearch == nullptr) { //support "program" level
for (int i = 0; i < varsSymboleTable.size(); i++) {
if (varsSymboleTable[i]->name == name) // if they have the same father
return varsSymboleTable[i];
}
return nullptr;
}
for (int i = 0; i < varsSymboleTable.size(); i++) {
if (varsSymboleTable[i]->name == name && varsSymboleTable[i]->parentFunc != nullptr && varsSymboleTable[i]->parentFunc->name == currentSearch->name && varsSymboleTable[i]->parentFunc->nd == currentSearch->nd) // if they have the same father
return varsSymboleTable[i];
}
return returnVar(name,currentSearch->parentFunc);
}
//addes array ranges
static void addRangesToArray(Variable* currrentVar,AST* rangeList) {
if (rangeList == nullptr)
return;
SymbolTable::addRangesToArray(currrentVar,rangeList->getLeft());
if(rangeList->getVal() == "range") {
Range current(stoi(rangeList->getLeft()->getLeft()->getVal()),stoi(rangeList->getRight()->getLeft()->getVal()));
currrentVar->arrayRanges.push_back(current);
}
if((rangeList->getRight() != nullptr && rangeList->getRight()->getVal() == "range")) {
SymbolTable::addRangesToArray(currrentVar,rangeList->getRight());
}
}
//starts from d1,d2,d3..
static int returnD(int dNum,Variable* currArray) {
return currArray->arrayRanges[dNum-1].to - currArray->arrayRanges[dNum-1].from +1;
}
//returns mul of all d
static int returnDMulFrom(int fromD,Variable* currArray ) {
int mul = 1;
for(int i = fromD-1;i<currArray->arrayRanges.size();i++) {
mul *= SymbolTable::returnD(i + 1,currArray);
}
return mul;
}
//returns the usb part of array
static int returnSubPart(Variable* currArray) {
int subPart = 0;
for(int i = 0;i<currArray->arrayRanges.size();i++) {
subPart += currArray->arrayRanges[i].from * SymbolTable::returnDMulFrom(i+2,currArray);
}
subPart *= currArray->g;
return subPart;
}
int returnRecordOffeset(string name) {
int offset = 0;
bool found = false;
for(int i = this->varsSymboleTable.size()-1;i>=0;i--) {
if(found == true && this->varsSymboleTable[i]->type == "record")
break;
if(found)
offset += this->varsSymboleTable[i]->size;
if(this->varsSymboleTable[i]->name == name)
found = true;
}
return offset;
}
int returnSizeOf(string name) {
for (int i = 0; i < varsSymboleTable.size() ;i++) {
Variable* currentVar = varsSymboleTable[i];
if(currentVar->name == name)
return currentVar->size;
}
return 1;
}
int sumSizes(int from, int to) {
int sum =0;
for (int i = from; i <= to ;i++) {
Variable* currentVar = varsSymboleTable[i];
//skip records
if(currentVar->type == "record") {
continue;
}
sum += currentVar->size;
to -= currentVar->numSubData;
}
return sum;
}
int returnNumChilren(AST* node) {
if (node == nullptr)
return 0;
if(node->getVal() == "declarationsList")
return 1 + this->returnNumChilren(node->getLeft()) + this->returnNumChilren(node->getRight());
return this->returnNumChilren(node->getLeft()) + this->returnNumChilren(node->getRight());
}
static void generateSymbolTableHelper(AST* tree,Variable* parentFunc) {
SymbolTable* generalSymbolTabel = returnSymbolTable();
//cout << "current tree : -" << tree->getVal() << "- good" << endl;
//if reached the end
if (tree == nullptr) {
return;
}
//function/procudure/main
if (tree->getVal() == "procedure" || tree->getVal() == "program" || tree->getVal() == "function") {
generalSymbolTabel->currentOffset = 5;
string currentType = tree->getVal();
Variable* currentVar = new Variable();
//default data
currentVar->name = tree->getLeft()->getLeft()->getLeft()->getVal();
currentVar->type = currentType;
currentVar->offset = 0;
currentVar->parentFunc = parentFunc;
//set nd to 0 for program
if(tree->getVal() == "program")
currentVar->nd =0;
else
currentVar->nd = currentVar->parentFunc->nd+1;
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
int currentIndex = generalSymbolTabel->varsSymboleTable.size();
//SUPORT PARAMETERS
generateSymbolTableHelper(tree->getLeft()->getRight(),currentVar); //paramters
generalSymbolTabel->varsSymboleTable[currentIndex-1]->paramsSize= generalSymbolTabel->sumSizes((currentIndex),generalSymbolTabel->varsSymboleTable.size()-1);
//add parameters to vector
for(int i = currentIndex;i<generalSymbolTabel->varsSymboleTable.size();i++){
generalSymbolTabel->varsSymboleTable[currentIndex-1]->params.push_back(generalSymbolTabel->varsSymboleTable[i]);
}
//SUPPORT LOCAL CARS
int sumLocalVarsFrom = generalSymbolTabel->varsSymboleTable.size();
if (tree->getRight()->getLeft() != nullptr)
generateSymbolTableHelper(tree->getRight()->getLeft()->getLeft(),currentVar); //local vars
generalSymbolTabel->varsSymboleTable[currentIndex-1]->localVarSize = generalSymbolTabel->sumSizes((sumLocalVarsFrom),generalSymbolTabel->varsSymboleTable.size()-1);
//call inherited function
if (tree->getRight()->getLeft() != nullptr && tree->getRight()->getLeft()->getRight() != nullptr)
generateSymbolTableHelper(tree->getRight()->getLeft()->getRight(),currentVar);
return;
}
//get recursive left first, then handle from bottom to up
generateSymbolTableHelper(tree->getLeft(),parentFunc);
//run on all functions
if(tree->getVal() == "functionsList") {
generateSymbolTableHelper(tree->getRight(),parentFunc);
return;
}
//check if declartion list
if (tree->getVal() == "declarationsList" || tree->getVal() == "parametersList") {
string recType = "-";
if(tree->getVal() == "parametersList")
recType = tree->getRight()->getVal();
string currentType = tree->getRight()->getRight()->getVal();
Variable* currentVar = new Variable();
currentVar->recType = recType;
//default data
currentVar->name = tree->getRight()->getLeft()->getLeft()->getVal();
currentVar->type = currentType;
currentVar->offset = generalSymbolTabel->currentOffset;
currentVar->parentFunc = parentFunc;
currentVar->nd = currentVar->parentFunc->nd +1;
//function type / pointer
if (tree->getRight()->getLeft() != nullptr && tree->getRight()->getRight() != nullptr && tree->getRight()->getRight()->getVal() == "identifier") {
Variable* pointTo = generalSymbolTabel->returnVar(tree->getRight()->getRight()->getLeft()->getVal(),nullptr);
//if function
if(pointTo != nullptr && (pointTo->type == "function" || pointTo->type == "procedure")){
currentType = "functionReference";
currentVar->type = currentType;
currentVar->funcReference = pointTo;
} else { //if reference
if(currentVar->recType == "byValue") {
currentType = "byValreference";
}else
currentType = "pointer";
}
}
if(currentType == "array") {
//add coordinates
SymbolTable::addRangesToArray(currentVar,tree->getRight()->getRight()->getLeft());
if(tree->getRight()->getRight()->getRight()->getVal() == "identifier") {
currentVar->g = generalSymbolTabel->returnSizeOf(tree->getRight()->getRight()->getRight()->getLeft()->getVal());
currentVar->pointerTo = tree->getRight()->getRight()->getRight()->getLeft()->getVal();
}else
currentVar->g = 1;
currentVar->subPart = generalSymbolTabel->returnSubPart(currentVar);
currentVar->size = generalSymbolTabel->returnDMulFrom(1,currentVar) * currentVar->g; // d0*d1*****g
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
} else if (currentType == "record") {
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
int currentIndex = generalSymbolTabel->varsSymboleTable.size();
generateSymbolTableHelper(tree->getRight()->getRight()->getLeft(),parentFunc);
generalSymbolTabel->varsSymboleTable[currentIndex-1]->numSubData = generalSymbolTabel->returnNumChilren(tree->getRight()->getRight()->getLeft());
generalSymbolTabel->varsSymboleTable[currentIndex-1]->size = generalSymbolTabel->sumSizes((currentIndex),currentIndex+generalSymbolTabel->varsSymboleTable[currentIndex-1]->numSubData-1);
}else if (currentType == "pointer" || currentType == "byValreference") {
currentVar->size = 1;
if(currentVar->recType == "byReference") { //if reference to
currentVar->type = "pointer";
currentVar->pointerTo = tree->getRight()->getRight()->getLeft()->getVal();
} else if (currentVar->recType == "byValue") { //if by value reference
currentVar->type = "byValReference";
currentVar->pointerTo = tree->getRight()->getRight()->getLeft()->getVal();
Variable* pointTo = generalSymbolTabel->returnVar(currentVar->pointerTo,currentVar->parentFunc);
currentVar->size = pointTo->size;
} else {
currentVar->pointerTo = tree->getRight()->getRight()->getLeft()->getLeft()->getVal();
}
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
} else if (currentType == "functionReference") {
currentVar->size = 2;
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
}else {
currentVar->size = 1;
generalSymbolTabel->varsSymboleTable.push_back(currentVar);
}
if(currentVar->type != "record")
generalSymbolTabel->currentOffset += currentVar->size;
}
}
//create the symbol table
static SymbolTable generateSymbolTable(AST* tree) {
generateSymbolTableHelper(tree,nullptr);
SymbolTable* generalSymbolTabel = SymbolTable::returnSymbolTable();
return *generalSymbolTabel;
}
//print data
void print() {
cout << endl << "Symbol Table: " << endl;
for (int i = 0; i < varsSymboleTable.size() ;i++) {
Variable* currentVar = varsSymboleTable[i];
cout << "name:" <<currentVar->name << " type:" << currentVar->type << " size:" << currentVar->size << " sub : " << currentVar->numSubData ;
cout << " nd:"<<currentVar->nd << " offset : "<<currentVar->offset << " currRec:" << currentVar->recType;
if (currentVar->parentFunc != nullptr)
cout << " parentFunc : "<<currentVar->parentFunc->name << " ";
if(currentVar->type == "array") {
cout << " g:" << currentVar->g << " , subpart:" << currentVar->subPart;
}else if(currentVar->type == "functionReference") {
cout << " functionReference:" << currentVar->funcReference->name;
}else if (currentVar->type == "program" || currentVar->type == "procedure" || currentVar->type == "function"){
cout << "paramSize:" << currentVar->paramsSize << " localVarsSize:"<<currentVar->localVarSize << " numParams:" << currentVar->params.size() << "Params : " ;
for (int j=0; j< currentVar->params.size();j++) {
cout << "- " << currentVar->params[j]->name << " ";
}
}
cout << endl;
cout << endl;
}
cout << endl;
}
};
//methods for genereate p code
void codeL(AST* ast, SymbolTable symbolTable, Variable* currFunction);
void codeR(AST* ast, SymbolTable symbolTable, Variable* currFunction);
void codeM(AST* ast, SymbolTable SymbolTable, Variable* currFunction);
int codeI(AST* ast,Variable* currentVar, SymbolTable symbolTable, Variable* currFunction);
void code(AST* ast, SymbolTable symbolTable,string currentEndLabel,string cameFrom, Variable* currFunction);
void generatePCode(AST* ast, SymbolTable symbolTable);
string returnType(AST* ast, SymbolTable symbolTable);
int currentLabel = 0;
//support sep
int currentStackSize = 0;
int currentMaxSize = 0;
//returns current sub tree in actual value
void codeR(AST* ast, SymbolTable symbolTable, Variable* currFunction) {
if (ast->getVal() == "constInt" || ast->getVal() == "constReal") {
cout << "ldc " << ast->getLeft()->getVal() << endl;
currentStackSize+=1;
}
else if(ast->getVal() == "array") {
codeL(ast,symbolTable,currFunction);
cout << "ind" << endl;
}
else if (ast->getVal() == "plus") {
codeR(ast->getLeft(),symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "add" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "minus") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "sub" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "identifier") {
codeL(ast,symbolTable,currFunction);
cout << "ind" << endl;
}
else if (ast->getVal() == "record") {
codeL(ast,symbolTable,currFunction);
cout << "ind" << endl;
}
else if (ast->getVal() == "true") {
cout << "ldc 1" << endl;
currentStackSize+=1;
}
else if (ast->getVal() == "false") {
cout << "ldc 0" << endl;
currentStackSize+=1;
}
else if (ast->getVal() == "multiply") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "mul" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "divide") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "div" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "lessThan") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "les" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "greaterThan") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "grt" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "or") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "or" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "and") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "and" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "equals") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "equ" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "lessOrEquals") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "leq" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "greaterOrEquals") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "geq" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "notEquals") {
codeR(ast->getLeft(), symbolTable,currFunction);
codeR(ast->getRight(), symbolTable,currFunction);
cout << "neq" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
}
else if (ast->getVal() == "not") {
codeR(ast->getLeft(), symbolTable,currFunction);
cout << "not" << endl;
}
else if (ast->getVal() == "negative") {
codeR(ast->getLeft(), symbolTable,currFunction);
cout << "neg" << endl;
}
else if (ast->getVal() == "pointer") {
codeL(ast, symbolTable,currFunction);
cout << "ind" << endl;
} else if (ast->getVal() == "call") {
//call function
code(ast,symbolTable,"","",currFunction);
//get return value
}
}
void codeM(AST* ast, SymbolTable SymbolTable, Variable* currFunction) {
if (ast->getVal() == "pointer") {
cout << "ind" << endl;
}
if (ast->getVal() == "record") {
codeL(ast->getLeft(),SymbolTable,currFunction);
int getOffset = SymbolTable.returnRecordOffeset(ast->getRight()->getLeft()->getVal());
cout << "inc " << getOffset << endl;
}
}
int codeI(AST* ast,Variable* currentVar, SymbolTable symbolTable, Variable* currFunction) {
if (ast == nullptr)
return 1;
int startFrom = codeI(ast->getLeft(),currentVar,symbolTable,currFunction);
if(ast->getRight() != nullptr) {
codeR(ast->getRight(),symbolTable,currFunction);
cout << "ixa " << symbolTable.returnDMulFrom(startFrom+1,currentVar)*(currentVar->g) << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize-=1;
return startFrom + 1;
}
}
string returnType(AST* ast, SymbolTable symbolTable,Variable* currFunction){
if(ast == nullptr)
return nullptr;
if(ast->getVal() == "identifier") {
return ast->getLeft()->getVal();
}
if(ast->getVal() == "pointer") {
Variable* currentVar = symbolTable.returnVar(returnType(ast->getLeft(),symbolTable,currFunction),currFunction);
return currentVar->pointerTo;
}
if(ast->getVal() == "record") {
return returnType(ast->getRight(),symbolTable,currFunction);
}
if(ast->getVal() == "array"){
Variable* currentVar = symbolTable.returnVar(returnType(ast->getLeft(),symbolTable,currFunction),currFunction);
return currentVar->pointerTo;
}
}
//return current sub tree in adress
void codeL(AST* ast, SymbolTable symbolTable, Variable* currFunction) {
if (ast->getVal() == "identifier") {
Variable* inFunction = currFunction;
Variable* currentVar = symbolTable.returnVar(ast->getLeft()->getVal(),currFunction);
//cout << "start:I am : "<<currentVar->name << " in : " << currFunction->name << endl;
int mst = inFunction->nd + 1 - currentVar->nd;
if(inFunction->name == currentVar->name)
mst = 0;
cout << "lda " << mst << " "<<currentVar->offset << endl;
currentStackSize+=1;
if(currentVar->recType == "byReference")
cout << "ind" << endl;
} else if (ast->getVal() == "array") {
Variable* currentVar = symbolTable.returnVar(returnType(ast->getLeft(),symbolTable,currFunction),currFunction);
codeL(ast->getLeft(),symbolTable,currFunction);
codeI(ast->getRight(),currentVar, symbolTable,currFunction);
cout << "dec " <<currentVar->subPart << endl;
}else if (ast->getVal() == "record") {
codeM(ast,symbolTable,currFunction);
}
else if (ast->getVal() == "pointer") {
codeL(ast->getLeft(), symbolTable,currFunction);
cout << "ind" << endl;
}
else {
codeL(ast->getLeft(),symbolTable,currFunction);
codeM(ast,symbolTable,currFunction);
}
}
void codec(AST* ast,int endOfLoop, stack<int>& endOfLabels, SymbolTable symbolTable, Variable* currentFunction) {
if(ast == nullptr)
return;
codec(ast->getLeft(),endOfLoop,endOfLabels,symbolTable,currentFunction);
if(ast->getVal() == "case") {
int L0 = stoi(ast->getLeft()->getLeft()->getVal());
endOfLabels.push(L0);
cout << "case_"<<endOfLoop << "_"<<L0<<":"<<endl;
string endOfLoopString = "L" + to_string(endOfLoop);
code(ast->getRight(),symbolTable,endOfLoopString,"switch",currentFunction);
cout << "ujp switch_end_"<<endOfLoop << ""<<endl;
}else if (ast->getRight() != nullptr && ast->getRight()->getVal() == "case") {
codec(ast->getRight(),endOfLoop,endOfLabels,symbolTable,currentFunction);
}
}
//handle function parameters
void codeEA(AST* ast, SymbolTable symbolTable,Variable* sendingToFunc, Variable* currFunction,int index) {
if (ast == nullptr)
return;
codeEA(ast->getLeft(),symbolTable,sendingToFunc,currFunction,index-1);
if(ast->getVal() == "argumentList") { //if found parameter
Variable* passingFrom = symbolTable.returnVar(ast->getRight()->getLeft()->getVal(),currFunction);
Variable* passingTo = sendingToFunc->params[index];
//if passing by reference
if(ast->getRight()->getVal() == "identifier") { // By reference -> XXX
//cout << "Identifier, passing to var: " << passingTo->name << " in index "<<index<<", from func"<<sendingToFunc->name << endl;
Variable* inFunction = currFunction;
int mst = inFunction->nd + 1 - passingFrom->nd;
if(inFunction->name == passingFrom->name)
mst = 0;
if(passingTo->recType == "byValue") { // reference -> Value
//cout << "reference->value" << endl;
//value -> value
if(passingFrom->type == "int" || passingFrom->type == "real" || passingFrom->type == "pointer" || passingFrom->type == "byValreference") {
cout << "lda " << (mst) << " "<<passingFrom->offset << endl;
cout << "ind" << endl;
currentStackSize+=1;
}
else if(passingFrom->type == "function" || passingFrom->type == "procedure") {
cout << "ldc " << (char)toupper(passingFrom->name[0]) << endl;
cout << "lda " << (mst) << " "<<passingFrom->offset << endl;
currentStackSize+=2;
}else { // reference -> value
cout << "lda " << (mst) << " "<<passingFrom->offset << endl;
cout << "movs " << passingFrom->size << endl;
currentStackSize+= passingFrom->size;
}
} else { // reference -> reference
//cout << "reference->reference" << endl;
codeL(ast->getRight(),symbolTable,currFunction);
//cout << "lod " << (mst) << " "<<passingFrom->offset << endl;
}
}else { // by value -> XXX
//cout << "value->Value" << endl;
//if(passingTo->recType == "byValue")
codeR(ast->getRight(),symbolTable,currFunction);
}
}
}
//return sep
int returnSEP(AST* ast, SymbolTable symbolTable, Variable* currFunction) {
const string fileName = "output.txt";
//analize sep
currentStackSize = 0;
currentMaxSize = 0;
int tempLabel = currentLabel;
//redirect out stream
ofstream out(fileName);
streambuf *coutBuf = cout.rdbuf();
cout.rdbuf(out.rdbuf());
code(ast->getRight()->getRight(),symbolTable,"","",currFunction); //main program
//redirect back
cout.rdbuf(coutBuf);
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
//if (currFunction->name == "g")
// exit(EXIT_FAILURE);
//remove file
std::remove(fileName.c_str());
currentLabel = tempLabel;
return currentMaxSize;
}
//returns the actual pcode
void code(AST* ast, SymbolTable symbolTable,string currentEndLabel,string cameFrom, Variable* currFunction) {
if (ast == nullptr)
return;
//make the functions start from bottom to up
if(ast->getVal() == "program" || ast->getVal() == "procedure" || ast->getVal() == "function") {
string currentSectionName = ast->getLeft()->getLeft()->getLeft()->getVal();
Variable* currentVar = symbolTable.returnVar(currentSectionName,currFunction);
cout << (char)toupper(currentSectionName[0]) << ":" <<endl;
cout << "ssp " << (currentVar->paramsSize + currentVar->localVarSize + 5) << endl;
cout << "sep " << returnSEP(ast,symbolTable,currentVar) << endl;
cout << "ujp "<< (char)toupper(currentSectionName[0]) <<"_begin" << endl;
//if has function
if(ast->getRight()->getLeft() != nullptr && ast->getRight()->getLeft()->getRight() != nullptr)
code(ast->getRight()->getLeft()->getRight(),symbolTable,"","",currentVar); //init functions
cout << (char)toupper(currentSectionName[0]) << "_begin:" << endl;
code(ast->getRight()->getRight(),symbolTable,"","",currentVar); //main program
//end section
if (ast->getVal() == "procedure")
cout << "retp"<<endl;
else if (ast->getVal() == "function")
cout << "retf"<<endl;
else
cout << "stp" << endl;
return;
} else if(ast->getVal() == "functionsList") {
code(ast->getLeft(),symbolTable,"","",currFunction);
code(ast->getRight(),symbolTable,"","",currFunction);
} else if(ast->getVal() == "call") {
Variable* calledFunc = symbolTable.returnVar(ast->getLeft()->getLeft()->getVal(),currFunction);
Variable* callingFrom = currFunction;
int mst = callingFrom->nd + 1 - calledFunc->nd;
//cout << "calling from: " << callingFrom->name << " called func: " << calledFunc->name << endl;
currentStackSize += 5;
//handling function calles
if(calledFunc->type == "functionReference") {
int offset = calledFunc->offset;
cout << "mstf "<< mst << " " << offset << endl;
//support reference
calledFunc = calledFunc->funcReference;
codeEA(ast->getRight(),symbolTable,calledFunc,currFunction,calledFunc->params.size()-1);
cout << "smp "<<calledFunc->paramsSize<<endl;
cout << "cupi " << mst << " " << offset << endl;
//handling regular
} else {
cout << "mst "<<mst<<endl;
codeEA(ast->getRight(),symbolTable,calledFunc,currFunction,calledFunc->params.size()-1);
cout << "cup " << calledFunc->paramsSize << " " << (char)toupper(ast->getLeft()->getLeft()->getVal()[0]) << endl;
}
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=(5 + calledFunc->paramsSize);
//save 1 for return value
if(calledFunc->type == "function") {
currentStackSize += 1;
}
}
//check what operation it is
else if (ast->getVal() == "print") {
codeR(ast->getLeft(),symbolTable,currFunction);
cout << "print" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=1;
}
else if (ast->getVal() == "assignment" ) {
//cout <<" stack size :" << currentStackSize << " - " << endl;
codeL(ast->getLeft(),symbolTable,currFunction);
codeR(ast->getRight(),symbolTable,currFunction);
cout << "sto" << endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=2;
}
else if (ast->getVal() == "if") {
codeR(ast->getLeft(),symbolTable,currFunction);
cout << "fjp L" << currentLabel << endl;
int oldLabelVal = currentLabel;
currentLabel++;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=1;
if (ast->getRight()->getVal() == "else") { //if it is if - else
int newLabelVal = currentLabel;
currentLabel++;
code(ast->getRight()->getLeft(), symbolTable,currentEndLabel,cameFrom,currFunction);
cout << "ujp L" << newLabelVal << endl;
cout << "L" << oldLabelVal << ":" << endl;
code(ast->getRight()->getRight(), symbolTable,currentEndLabel,cameFrom,currFunction);
cout << "L" << newLabelVal << ":" << endl;
}
else { //if only if
code(ast->getRight(), symbolTable,currentEndLabel,cameFrom,currFunction);
cout << "L" << oldLabelVal << ":" << endl;
}
}
else if (ast->getVal() == "while") {
int L0 = currentLabel;
currentLabel++;
int L1 = currentLabel;
currentLabel++;
cout << "L" << L0 << ":" << endl;
codeR(ast->getLeft(),symbolTable,currFunction);
cout << "fjp L" << L1 << endl; //if false
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=1;
code(ast->getRight(),symbolTable,to_string(L1),"while",currFunction);
cout << "ujp L" << L0 << endl;
cout << "L" << L1 << ":" << endl; //end of loop
} else if(ast->getVal() == "break") {
if(cameFrom == "while")
cout << "ujp L" << currentEndLabel << endl; //if false
else if(cameFrom == "switch")
cout << "ujp L"<<currentEndLabel << ""<<endl;
} else if(ast->getVal() == "switch") {
stack<int> switchLabels;
int L0 = currentLabel;
currentLabel++;
codeR(ast->getLeft(),symbolTable,currFunction);
cout << "neg" <<endl;
cout << "ixj switch_end_" <<L0 <<endl;
//sep support
if(currentStackSize > currentMaxSize)
currentMaxSize = currentStackSize;
currentStackSize -=1;
codec(ast->getRight(),L0,switchLabels,symbolTable,currFunction);
while(switchLabels.size() != 0) {
int current = switchLabels.top();
cout << "ujp switch_end_"<<L0 << "_"<<current<<endl;
switchLabels.pop();
}
cout << "switch_end_"<<L0 << ":"<<endl;
}
else { //recurse first to left, then to right
code(ast->getLeft(), symbolTable,currentEndLabel,cameFrom,currFunction);
code(ast->getRight(), symbolTable,currentEndLabel,cameFrom,currFunction);
}
}
//call code recursivly
void generatePCode(AST* ast, SymbolTable symbolTable) {
code(ast, symbolTable,"","",nullptr);
}
/*
int main()
{
AST* ast;
ifstream myfile("C:\\Users\\Gil\ Maman\\Desktop\\hw2\\TestsHw2\\tree11.txt");
//ifstream myfile("C:\\Users\\Gil Maman\\Desktop\\hw3\\TestsHw3\\tree13.txt");
if (myfile.is_open())
{
ast = AST::createAST(myfile);
myfile.close();
SymbolTable symbolTable = SymbolTable::generateSymbolTable(ast);
//symbolTable.print();
generatePCode(ast, symbolTable);
}
else cout << "Unable to open file";
getchar();
return 0;
}
*/
|
d04b829a7ce98176eaee102b8619882acff9a671
|
53b898fe40133488b5bffe9996146efd1e06df51
|
/dji_robomaster_ep_driver/src/joystick_teleop_node_main.ros2.cpp
|
dec4987825ca84d81fa77cc8bea1473cbee94d26
|
[] |
no_license
|
calderpg-tri/tri_hardware_drivers
|
63412dfbc82472572b9ad291519b2db9b5ebd259
|
c6f97989a26d879538fbb224dd9e638e0609a149
|
refs/heads/master
| 2023-07-08T06:42:29.052239
| 2022-08-06T04:11:26
| 2022-08-06T04:11:26
| 232,660,009
| 0
| 0
| null | 2020-01-27T19:07:07
| 2020-01-08T21:07:40
|
C++
|
UTF-8
|
C++
| false
| false
| 324
|
cpp
|
joystick_teleop_node_main.ros2.cpp
|
#include <memory>
#include <rclcpp/rclcpp.hpp>
#include "joystick_teleop_node.ros2.hpp"
int main(int argc, char** argv)
{
rclcpp::init(argc, argv);
using dji_robomaster_ep_driver::ControllerTeleopNode;
rclcpp::spin(std::make_shared<ControllerTeleopNode>(rclcpp::NodeOptions()));
rclcpp::shutdown();
return 0;
}
|
046411aec1bcee0d267efc0a3e26ac20d481ea7b
|
d82c8e0968ac3ba3ca0e924291a737b6b953e14e
|
/tracker/source/getBodyThreshold.cpp
|
a99fc17eb7dd5965ea40bca4b28a8ed7473db915
|
[] |
no_license
|
Dicksonlab/MateBook
|
57d90a1bd5f40793f6bdeea528d08e355cca0343
|
22142bc7ebdd7f8cb3f3da17c4bba1df04486e1b
|
refs/heads/master
| 2021-03-27T10:44:46.961783
| 2019-06-21T16:38:31
| 2019-06-21T16:38:31
| 101,189,573
| 6
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,725
|
cpp
|
getBodyThreshold.cpp
|
#include "getBodyThreshold.hpp"
#include <stdexcept>
#include <vector>
#include <iostream>
unsigned char getBodyThreshold(cv::Mat foreground, boost::shared_ptr<std::ofstream> smoothHistogramFile)
{
int hist[256] = {};
for (cv::MatIterator_<uchar> iter = foreground.begin<uchar>(); iter != foreground.end<uchar>(); ++iter) {
++hist[*iter];
}
// moving average filter, clipping the kernel at the borders
// (note that moving average filters can be implemented more efficiently by adjusting the old average using only the border values when moving to the next element)
int windowLength = 25;
int halfWindowLength = windowLength / 2;
float smoothedHist[256] = {};
for (int i = 0; i != 256; ++i) {
int beginJ = cv::max(0, i - halfWindowLength);
int endJ = cv::min(256, i + halfWindowLength + 1);
float sum = 0;
for (int j = beginJ; j != endJ; ++j) {
sum += hist[j];
}
smoothedHist[i] = sum / (endJ - beginJ);
}
if (smoothHistogramFile) {
smoothHistogramFile->write((char*)&smoothedHist[0], 256 * sizeof(float));
}
// find the first gray value where counts are increasing (after skipping the first 25 + 30, the latter being the typical difference between interior and exterior background)
int slopeStart = 55;
for (int i = slopeStart; i != 255; ++i) {
if (smoothedHist[i + 1] > smoothedHist[i]) {
slopeStart = i;
break;
}
}
// find maximum after slopeStart
float* maxElementPointer = std::max_element(smoothedHist + slopeStart, smoothedHist + 256);
float* threshPointer = std::min_element(smoothedHist + slopeStart, maxElementPointer);
unsigned char thresh = static_cast<unsigned char>(threshPointer - smoothedHist);
return thresh;
}
|
3438cf12fec6efb9903aa7856fde1ab4851a7b9e
|
7a4e060297e7d2b2613deec8dda5da713657c8a1
|
/cpp_d14m_2019/ex00/test/Banana.cpp
|
dbe4c3f8e18d993e4788fc053b654bf315c62337
|
[] |
no_license
|
ylevygithub/CPP-Pool
|
3309f14e61e3ddb6943b6e33598ef6549e152566
|
0ce3eec010842f8babeac0c189f6669c27981030
|
refs/heads/master
| 2022-07-06T13:06:23.225297
| 2020-05-19T17:45:16
| 2020-05-19T17:45:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 297
|
cpp
|
Banana.cpp
|
//
// EPITECH PROJECT, 2020
// c++pool
// File description:
// Banana.cpp
//
#include "Banana.hpp"
Banana::Banana() :
Fruit(5, "banana") {
}
Banana::~Banana() {
}
std::string const &Banana::getName() const {
return _name;
}
int const &Banana::getVitamins() const {
return _vitamins;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.